diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index b48136d2081..4aca50e70c7 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1,8 +1,8 @@
# This list auto requests reviews from the specified org members
# when a PR that modifies the file in question is opened
-# This list is alphabetized by User -> Filename KEEP IT THAT WAY
-# In the event that multiple org members are to be informed of changes
-# to the same file or dir, add them to the end under Multiple Owners
+# This list is alphabetized by User -> Filename and separated into sections for Maintainers/Contributors KEEP IT THAT WAY
+# In the event that people are to be informed of changes
+# to the same file or dir, add them to the end of under Multiple Owners
# EspeciallyStrange
code/modules/projectiles/ @projectkepler-ru
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 10e6ea35b7f..f140c48a335 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -98,13 +98,13 @@ Our team is entirely voluntary, as such we extend our thanks to maintainers, iss
## Development Guides
-#### Writing readable code
+#### Writing readable code
[Style guide](./guides/STYLE.md)
-#### Writing sane code
+#### Writing sane code
[Code standards](./guides/STANDARDS.md)
-#### Writing understandable code
+#### Writing understandable code
[Autodocumenting code](./guides/AUTODOC.md)
#### Misc
@@ -136,8 +136,6 @@ There is no strict process when it comes to merging pull requests. Pull requests
* If your pull request is accepted, the code you add no longer belongs exclusively to you but to everyone; everyone is free to work on it, but you are also free to support or object to any changes being made, which will likely hold more weight, as you're the one who added the feature. It is a shame this has to be explicitly said, but there have been cases where this would've saved some trouble.
-* Please explain why you are submitting the pull request, and how you think your change will be beneficial to the game. Failure to do so will be grounds for rejecting the PR.
-
* If your pull request is not finished, you may open it as a draft for potential review. If you open it as a full-fledged PR make sure it is at least testable in a live environment. Pull requests that do not at least meet this requirement will be closed. You may request a maintainer reopen the pull request when you're ready, or make a new one.
* While we have no issue helping contributors (and especially new contributors) bring reasonably sized contributions up to standards via the pull request review process, larger contributions are expected to pass a higher bar of completeness and code quality *before* you open a pull request. Maintainers may close such pull requests that are deemed to be substantially flawed. You should take some time to discuss with maintainers or other contributors on how to improve the changes.
@@ -145,6 +143,22 @@ There is no strict process when it comes to merging pull requests. Pull requests
* After leaving reviews on an open pull request, maintainers may convert it to a draft. Once you have addressed all their comments to the best of your ability, feel free to mark the pull as `Ready for Review` again.
* **Pull requests that include sprites must have in-game screenshots that were taken on your own test-server in the PR body.** For instance, if you're adding new clothes, a screenshot of those clothes being worn is expected in the PR body. Not every single direction needs to be displayed, but each icon that's actually being used in-game should be showcased.
+## Justifying Your Changes
+
+You must explain why you are submitting the pull request in the "Why It's Good For The Game" section of your pull request, and how you think your change will be beneficial to the game. Failure to do so will be grounds for rejecting your pull request wholesale, or requiring that you fix it before your pull request is merged. A reasonable justification for your changes is a requirement.
+
+Your "How This Contributes To The Skyrat Roleplay Experience" section must make a good faith and reasonable attempt to:
+* Assert and argue that the current state of affairs in the game is not good, and needs changing.
+* Assert and argue that your pull request will either fix or help fix the problems you described.
+* Assert and argue that any downsides introduced by your solution as a matter of design, if any, are worth it, and why they are worth it.
+
+More controversial changes have higher standards for justification to be considered reasonable. A bugfix for example does not typically require any effort at all in justification as its value to the game is usually self evident, however a major feature overhaul or balance change may require significant explanation to adequately justify its supposed benefit to the game.
+
+This is still a requirement if your pull request is supported and/or requested by maintainers before it is opened. This is still a requirement if your pull request is supported and/or requested by head coders before it is opened. The purpose of arguing for your changes is not to convince just the maintainer team of its merits, it is to document the "why" behind your changes to the game to a necessary level of detail. The reason behind a change must exist as it is the purpose of this codebase to improve the game, thus said reasoning must be adequately stated and explained.
+
+This is also still a requirement if your pull request has a corresponding design document that justifies your changes inside it. You must always properly justify changes (those that actually need justification) within the pull request, even if you also do it elsewhere. This is to ensure that:
+1. All reviewers can easily see the reasoning behind your changes on the pull request itself, no reliance on other sites required.
+2. The actual, manifested implementation of the idea behind the design document is being justified after said implementation is actually realized. This is in contrast to any reasoning put on the design document itself, which very well may have been made before any work was done on it, possibly even by an author different from the author of the pull request. Any idea in the design document may have had compromises put into it due to complications not seen in the original vision, thus the current state of the implementation (the pull request as it stands) must be defended, explained, and ultimately justified in and of itself. Of course, you should still list the design document the pull request is implementing, and may even use arguments from the design document if said arguments are applicable to the current reality of your proposed changes.
## Good Boy Points
@@ -158,7 +172,7 @@ Negative GBP increases the likelihood of a maintainer closing your PR. With that
There is no benefit to having a higher positive GBP score, since GBP only comes into consideration when it is negative.
-You can see each tag and their GBP values [Here](https://github.com/tgstation/tgstation/blob/master/.github/gbp.toml).
+You can see each tag and their GBP values [Here](https://github.com/tgstation/tgstation/blob/master/.github/gbp.toml).
## Porting features/sprites/sounds/tools from other codebases
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 472bd39a977..84504848a1d 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -16,7 +16,7 @@
Screenshots/Videos
-
+
## Changelog
diff --git a/.github/gbp.toml b/.github/gbp.toml
index fe086e79b55..fd52ca827a1 100644
--- a/.github/gbp.toml
+++ b/.github/gbp.toml
@@ -23,3 +23,4 @@ reset_label = "GBP: Reset"
"Sound" = 3
"Sprites" = 3
"Unit Tests" = 6
+"Wallening Revert Recovery" = 10
diff --git a/.github/guides/RUNNING_A_SERVER.md b/.github/guides/RUNNING_A_SERVER.md
index 095c33d2071..a1b43e2bb2a 100644
--- a/.github/guides/RUNNING_A_SERVER.md
+++ b/.github/guides/RUNNING_A_SERVER.md
@@ -4,7 +4,7 @@ BYOND installed. You can get it from https://www.byond.com/download. Once you've
that, extract the game files to wherever you want to keep them. This is a
sourcecode-only release, so the next step is to compile the server files.
-Double-click `BUILD.bat` in the root directory of the source code. This'll take
+Double-click `BUILD.cmd` in the root directory of the source code. This'll take
a little while, and if everything's done right you'll get a message like this:
```
diff --git a/.github/guides/STYLE.md b/.github/guides/STYLE.md
index c9b284bd338..349933f38bf 100644
--- a/.github/guides/STYLE.md
+++ b/.github/guides/STYLE.md
@@ -27,23 +27,6 @@ Do not use tabs/spaces for indentation in the middle of a code line. Not only is
#define SPECIES_FELINID "felinid"
```
-### Comments
-
-You mustn't use box comments as headers for code, nor for anything else.
-While it may be slightly more aesthetically pleasing, it can cause problems with auto-documentation and makes it far harder to add anything after the fact.
-It's much easier to stick down a new line than have to balance a bunch of whitespaces and forward slashes.
-
-```dm
-//////////////////////////////////
-// BAD. DON'T DO THIS. STOP IT. //
-//////////////////////////////////
-
-/*
-* GOOD!
-* CONTINUE TO DO THIS
-*/
-```
-
### Control statements
(if, while, for, etc)
@@ -457,7 +440,7 @@ Pop-quiz, what does this do?
give_pizza(TRUE, 2)
```
-Well, obviously the `TRUE` makes the pizza hot, and `2` is the number of toppings.
+Well, obviously the `TRUE` makes the pizza hot, and `2` is the number of toppings.
Code like this can be very difficult to read, especially since our LSP does not show argument names at this time. Because of this, you should prefer to use named arguments where the meaning is not otherwise obvious.
@@ -607,7 +590,7 @@ This is [a real bug that tends to come up](https://github.com/tgstation/tgstatio
The same goes for arguments passed to a macro...
```
-// Guarantee
+// Guarantee
#define CALCULATE_TEMPERATURE(base) (T20C + (##base))
```
diff --git a/.github/guides/VISUALS.md b/.github/guides/VISUALS.md
index a56d9f17677..69194004d4c 100644
--- a/.github/guides/VISUALS.md
+++ b/.github/guides/VISUALS.md
@@ -367,6 +367,8 @@ You can actually force it to use a particular mob's sight to avoid aspects of th
- [Table of Contents](#table-of-contents)
- [Reference Entry](https://www.byond.com/docs/ref/#/mob/var/see_in_dark)
+`/mob/var/see_in_dark` sets the radius of a square around the mob that cuts out BYOND darkness.
+
This is why when you stand in darkness you can see yourself, and why you can see a line of objects appear when you use mesons (horrible effect btw).
It's quite simple, but worth describing.
diff --git a/.github/workflows/autowiki.yml b/.github/workflows/autowiki.yml
index 82d164e0c7c..740b5d7d9eb 100644
--- a/.github/workflows/autowiki.yml
+++ b/.github/workflows/autowiki.yml
@@ -26,7 +26,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/BYOND
- key: ${{ runner.os }}-byond-${{ secrets.CACHE_PURGE_KEY }}
+ key: ${{ runner.os }}-byond-${{ hashFiles('dependencies.sh') }}
- name: Install rust-g
if: steps.secrets_set.outputs.SECRETS_ENABLED
run: |
diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml
index 6463ccb4c2c..fcf44d00558 100644
--- a/.github/workflows/ci_suite.yml
+++ b/.github/workflows/ci_suite.yml
@@ -13,21 +13,35 @@ on:
merge_group:
branches:
- master
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
jobs:
- run_linters:
+ start_gate:
if: ( !contains(github.event.head_commit.message, '[ci skip]') )
+ name: Start Gate
+ runs-on: ubuntu-latest
+ steps:
+ - name: Mandatory Empty Step
+ run: exit 0
+
+ run_linters:
name: Run Linters
+ needs: start_gate
runs-on: ubuntu-22.04
- concurrency:
- group: run_linters-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
+ timeout-minutes: 5
+
steps:
- uses: actions/checkout@v4
- name: Restore SpacemanDMM cache
uses: actions/cache@v4
with:
path: ~/SpacemanDMM
- key: ${{ runner.os }}-spacemandmm
+ key: ${{ runner.os }}-spacemandmm-${{ hashFiles('dependencies.sh') }}
+ restore-keys: |
+ ${{ runner.os }}-spacemandmm-
- name: Restore Yarn cache
uses: actions/cache@v4
with:
@@ -53,33 +67,39 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cargo
- key: ${{ runner.os }}-rust
+ key: ${{ runner.os }}-rust-${{ hashFiles('tools/ci/ci_dependencies.sh')}}
+ restore-keys: |
+ ${{ runner.os }}-rust-
- name: Restore Cutter cache
uses: actions/cache@v4
with:
path: tools/icon_cutter/cache
key: ${{ runner.os }}-cutter-${{ hashFiles('dependencies.sh') }}
+ - name: Install OpenDream
+ uses: robinraju/release-downloader@v1.9
+ with:
+ repository: "OpenDreamProject/OpenDream"
+ tag: "latest"
+ fileName: "DMCompiler_linux-x64.tar.gz"
+ extract: true
- name: Install Tools
run: |
pip3 install setuptools
bash tools/ci/install_node.sh
bash tools/ci/install_spaceman_dmm.sh dreamchecker
- cargo install ripgrep --features pcre2
+ bash tools/ci/install_ripgrep.sh
tools/bootstrap/python -c ''
- name: Give Linters A Go
id: linter-setup
run: ':'
- name: Run Grep Checks
if: steps.linter-setup.conclusion == 'success' && !cancelled()
- run: |
- bash tools/ci/check_grep.sh
- bash skyrat/tools/skyrat_check_grep.sh # SKYRAT EDIT ADDITION - checking modular_skyrat code
+ run: bash tools/ci/check_grep.sh
- name: Ticked File Enforcement
if: steps.linter-setup.conclusion == 'success' && !cancelled()
run: |
tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/tgstation_dme.json
tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/unit_tests.json
- tools/bootstrap/python tools/ticked_file_enforcement/ticked_file_enforcement.py < tools/ticked_file_enforcement/schemas/modular_skyrat.json # SKYRAT EDIT ADDITION - modular tick enforcement
- name: Check Define Sanity
if: steps.linter-setup.conclusion == 'success' && !cancelled()
run: tools/bootstrap/python -m define_sanity.check
@@ -90,6 +110,9 @@ jobs:
if: steps.linter-setup.conclusion == 'success' && !cancelled()
shell: bash
run: ~/dreamchecker 2>&1 | bash tools/ci/annotate_dm.sh
+ - name: Run OpenDream
+ if: steps.linter-setup.conclusion == 'success' && !cancelled()
+ run: ./DMCompiler_linux-x64/DMCompiler tgstation.dme --suppress-unimplemented --define=CIBUILDING | bash tools/ci/annotate_od.sh
- name: Run Map Checks
if: steps.linter-setup.conclusion == 'success' && !cancelled()
run: |
@@ -115,20 +138,18 @@ jobs:
run: tools/build/build --ci lint tgui-test
compile_all_maps:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') )
name: Compile Maps
- needs: [collect_data]
+ needs: collect_data
runs-on: ubuntu-22.04
- concurrency:
- group: compile_all_maps-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
+ timeout-minutes: 5
+
steps:
- uses: actions/checkout@v4
- name: Restore BYOND cache
uses: actions/cache@v4
with:
path: ~/BYOND
- key: ${{ runner.os }}-byond
+ key: ${{ runner.os }}-byond-${{ hashFiles('dependencies.sh') }}
- name: Compile All Maps
run: |
bash tools/ci/install_byond.sh
@@ -141,16 +162,15 @@ jobs:
max-required-client-version: ${{needs.collect_data.outputs.max_required_byond_client}}
collect_data:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') )
name: Collect data for other tasks
+ needs: start_gate
runs-on: ubuntu-22.04
+ timeout-minutes: 5
outputs:
maps: ${{ steps.map_finder.outputs.maps }}
alternate_tests: ${{ steps.alternate_test_finder.outputs.alternate_tests }}
max_required_byond_client: ${{ steps.max_required_byond_client.outputs.max_required_byond_client }}
- concurrency:
- group: find_all_maps-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
+
steps:
- uses: actions/checkout@v4
- name: Find Maps
@@ -172,32 +192,28 @@ jobs:
echo "max_required_byond_client=$(grep -Ev '^[[:blank:]]{0,}#{1,}|^[[:blank:]]{0,}$' .github/max_required_byond_client.txt | tail -n1)" >> $GITHUB_OUTPUT
run_all_tests:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') )
name: Integration Tests
- needs: [collect_data]
+ needs: collect_data
+
strategy:
fail-fast: false
matrix:
map: ${{ fromJSON(needs.collect_data.outputs.maps).paths }}
- concurrency:
- group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.map }}
- cancel-in-progress: true
+
uses: ./.github/workflows/run_integration_tests.yml
with:
map: ${{ matrix.map }}
max_required_byond_client: ${{needs.collect_data.outputs.max_required_byond_client}}
run_alternate_tests:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]' )
+ if: needs.collect_data.outputs.alternate_tests != '[]'
name: Alternate Tests
- needs: [collect_data]
+ needs: collect_data
strategy:
fail-fast: false
matrix:
setup: ${{ fromJSON(needs.collect_data.outputs.alternate_tests) }}
- concurrency:
- group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.setup.major }}.${{ matrix.setup.minor }}-${{ matrix.setup.map }}
- cancel-in-progress: true
+
uses: ./.github/workflows/run_integration_tests.yml
with:
map: ${{ matrix.setup.map }}
@@ -205,18 +221,11 @@ jobs:
minor: ${{ matrix.setup.minor }}
max_required_byond_client: ${{needs.collect_data.outputs.max_required_byond_client}}
- check_alternate_tests:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]' )
- name: Check Alternate Tests
- needs: [run_alternate_tests]
- runs-on: ubuntu-22.04
- steps:
- - run: echo Alternate tests passed.
-
compare_screenshots:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') && (success() || failure()) )
- needs: [run_all_tests, run_alternate_tests]
+ if: needs.collect_data.outputs.alternate_tests == '[]' || needs.run_alternate_tests.result == 'success'
+ needs: [ collect_data, run_all_tests, run_alternate_tests ]
name: Compare Screenshot Tests
+ timeout-minutes: 15
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
@@ -251,13 +260,11 @@ jobs:
path: artifacts/screenshot_comparisons
test_windows:
- if: ( !contains(github.event.head_commit.message, '[ci skip]') )
name: Windows Build
needs: [collect_data]
runs-on: windows-latest
- concurrency:
- group: test_windows-${{ github.head_ref || github.run_id }}
- cancel-in-progress: true
+ timeout-minutes: 5
+
steps:
- uses: actions/checkout@v4
- name: Restore Yarn cache
@@ -276,3 +283,11 @@ jobs:
with:
dmb-location: tgstation.dmb
max-required-client-version: ${{needs.collect_data.outputs.max_required_byond_client}}
+
+ completion_gate: # Serves as a non-moving target for branch rulesets
+ name: Completion Gate
+ needs: [ test_windows, compare_screenshots, compile_all_maps, run_linters ]
+ runs-on: ubuntu-latest
+ steps:
+ - name: Mandatory Empty Step
+ run: exit 0
diff --git a/.github/workflows/codeowner_reviews.yml b/.github/workflows/codeowner_reviews.yml
index a9e78b35136..e6cfb980279 100644
--- a/.github/workflows/codeowner_reviews.yml
+++ b/.github/workflows/codeowner_reviews.yml
@@ -1,19 +1,23 @@
name: Codeowner Reviews
# Controls when the workflow will run
-on: pull_request_target
+on:
+ pull_request_target:
+ types: [opened, synchronize, reopened, ready_for_review]
jobs:
assign-users:
runs-on: ubuntu-latest
+ timeout-minutes: 5
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so the job can access it
- uses: actions/checkout@v4
- #Parse the Codeowner file
+ #Parse the Codeowner file on non draft PRs
- name: CodeOwnersParser
+ if: github.event.pull_request.draft == false
id: CodeOwnersParser
uses: tgstation/CodeOwnersParser@v1
diff --git a/.github/workflows/docker_publish.yml b/.github/workflows/docker_publish.yml
index daf078d2d4c..6daec1ded10 100644
--- a/.github/workflows/docker_publish.yml
+++ b/.github/workflows/docker_publish.yml
@@ -1,10 +1,8 @@
name: Docker Build
-
on:
- push:
- branches:
- - master
-
+ schedule:
+ - cron: "19 1 * * *"
+ workflow_dispatch:
jobs:
publish:
if: ( !contains(github.event.head_commit.message, '[ci skip]') )
diff --git a/.github/workflows/generate_documentation.yml b/.github/workflows/generate_documentation.yml
index e2234ca7ee0..2ffef722183 100644
--- a/.github/workflows/generate_documentation.yml
+++ b/.github/workflows/generate_documentation.yml
@@ -1,11 +1,10 @@
name: Generate documentation
on:
- push:
- branches:
- - master
+ schedule:
+ - cron: "44 */6 * * *"
+ workflow_dispatch:
permissions:
contents: read
-
jobs:
generate_documentation:
permissions:
diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml
index 368430162d3..3485b90d474 100644
--- a/.github/workflows/run_integration_tests.yml
+++ b/.github/workflows/run_integration_tests.yml
@@ -16,9 +16,11 @@ on:
max_required_byond_client:
required: true
type: string
+
jobs:
run_integration_tests:
runs-on: ubuntu-latest
+ timeout-minutes: 15
services:
mysql:
image: mysql:latest
@@ -33,7 +35,7 @@ jobs:
uses: actions/cache@v4
with:
path: ~/BYOND
- key: ${{ runner.os }}-byond-${{ secrets.CACHE_PURGE_KEY }}
+ key: ${{ runner.os }}-byond-${{ hashFiles('dependencies.sh') }}
- name: Setup database
run: |
sudo systemctl start mysql
@@ -44,9 +46,9 @@ jobs:
- name: Install rust-g
run: |
bash tools/ci/install_rust_g.sh
- - name: Install auxlua
+ - name: Install dreamluau
run: |
- bash tools/ci/install_auxlua.sh
+ bash tools/ci/install_dreamluau.sh
- name: Configure version
run: |
echo "BYOND_MAJOR=${{ inputs.major }}" >> $GITHUB_ENV
@@ -57,7 +59,7 @@ jobs:
run: |
bash tools/ci/install_byond.sh
source $HOME/BYOND/byond/bin/byondsetup
- tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -WError -NWTG0001
+ tools/build/build --ci dm -DCIBUILDING -DANSICOLORS -Werror -ITG0001 -I"loop_checks"
- name: Run Tests
run: |
source $HOME/BYOND/byond/bin/byondsetup
diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml
index 15d45b7935f..232c02c0ecb 100644
--- a/.github/workflows/update_tgs_dmapi.yml
+++ b/.github/workflows/update_tgs_dmapi.yml
@@ -21,6 +21,7 @@ jobs:
- name: Apply DMAPI update
uses: tgstation/tgs-dmapi-updater@v2
+ id: dmapi-update
with:
header-path: 'code/__DEFINES/tgs.dm'
library-path: 'code/modules/tgs'
@@ -28,8 +29,8 @@ jobs:
- name: Commit and Push
continue-on-error: true
run: |
- git config user.name tgstation-server
- git config user.email tgstation-server@users.noreply.github.com
+ git config user.name "tgstation-server-ci[bot]"
+ git config user.email "161980869+tgstation-server-ci[bot]@users.noreply.github.com"
git add .
git commit -m 'Update TGS DMAPI'
git push -f -u origin tgs-dmapi-update
@@ -41,7 +42,7 @@ jobs:
source_branch: "tgs-dmapi-update"
destination_branch: "master"
pr_title: "Automatic TGS DMAPI Update"
- pr_body: "This pull request updates the TGS DMAPI to the latest version. Please note any changes that may be breaking or unimplemented in your codebase by checking what changes are in the definitions file: code/__DEFINES/tgs.dm before merging."
+ pr_body: "This pull request updates the TGS DMAPI to the latest version. Please note any changes that may be breaking or unimplemented in your codebase by checking what changes are in the definitions file: code/__DEFINES/tgs.dm before merging.\n\n${{ steps.dmapi-update.outputs.release-notes }}"
pr_label: "Tools"
pr_allow_empty: false
github_token: ${{ secrets.COMFY_ORANGE_PAT }}
diff --git a/.gitignore b/.gitignore
index 7889e8a6cf7..f4771f2ef16 100644
--- a/.gitignore
+++ b/.gitignore
@@ -211,16 +211,13 @@ Temporary Items
/tools/tgs_test/bin/*
/tools/tgs_test/obj/*
-# Autowiki
-/tools/autowiki/node_modules
-
# TGUI bundles - SKYRAT EDIT
/tgui/public/tgui-common.bundle.js
# Built auxtools libraries and intermediate files
aux*.dll
libaux*.so
-aux*.pdb
+*.pdb
# byond-tracy, we intentionally do not ship this and do not want to maintain it
# https://github.com/mafemergency/byond-tracy/
@@ -248,6 +245,7 @@ define_sanity_output.txt
/db/
/config/ezdb.txt
<<<<<<< HEAD
+<<<<<<< HEAD
=======
# Running OpenDream locally
@@ -257,3 +255,8 @@ tgstation.json
>>>>>>> 5d81843b3302 (Raptor faction fix (#85792))
=======
>>>>>>> 8fa9db8869f0 (Reverts accidental .gitignore changes (#86114))
+=======
+
+# Running OpenDream locally
+tgstation.json
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/Dockerfile b/Dockerfile
index 0ae4f82be80..a27c64574f1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,5 @@
# base = ubuntu + full apt update
FROM ubuntu:xenial AS base
-
RUN dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get upgrade -y \
diff --git a/README.md b/README.md
index cf0f39bdcda..7a4a4f6d307 100644
--- a/README.md
+++ b/README.md
@@ -5,6 +5,7 @@
[](https://isitmaintained.com/project/Skyrat-SS13/Skyrat-tg "Average time to resolve an issue")

+[](.github/images/comics/131-bug-free.png) [](.github/images/comics/106-tech-debt-modified.png) [](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a)
[](.github/images/comics/131-bug-free.png) [](.github/images/comics/106-tech-debt-modified.png) [](https://www.reddit.com/r/SS13/comments/5oplxp/what_is_the_main_problem_with_byond_as_an_engine/dclbu1a)
| Website | Link |
@@ -44,6 +45,7 @@ You are responsible for the testing of your content and providing proof of such
[Running on the server](.github/guides/RUNNING_A_SERVER.md)
+[Maps and Away Missions](.github/guides/MAPS_AND_AWAY_MISSIONS.md)
[Maps and Away Missions](.github/guides/MAPS_AND_AWAY_MISSIONS.md)
## Compilation
@@ -73,6 +75,7 @@ All code before [commit 333c566b88108de218d882840e61928a9b759d8f on 2014/31/12 a
See LICENSE and GPLv3.txt for more details.
+The TGS DMAPI is licensed as a subproject under the MIT license.
The TGS DMAPI is licensed as a subproject under the MIT license.
See the footer of [code/__DEFINES/tgs.dm](./code/__DEFINES/tgs.dm) and [code/modules/tgs/LICENSE](./code/modules/tgs/LICENSE) for the MIT license.
diff --git a/SQL/database_changelog.md b/SQL/database_changelog.md
index bad8912ce93..7c6a6ece2b7 100644
--- a/SQL/database_changelog.md
+++ b/SQL/database_changelog.md
@@ -2,20 +2,35 @@ Any time you make a change to the schema files, remember to increment the databa
Make sure to also update `DB_MAJOR_VERSION` and `DB_MINOR_VERSION`, which can be found in `code/__DEFINES/subsystem.dm`.
+<<<<<<< HEAD
The latest database version is 5.30 (5.27 for /tg/); The query to update the schema revision table is:
```sql
INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 30);
+=======
+The latest database version is 5.27; The query to update the schema revision table is:
+
+```sql
+INSERT INTO `schema_revision` (`major`, `minor`) VALUES (5, 27);
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
```
or
```sql
+<<<<<<< HEAD
INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 30);
+=======
+INSERT INTO `SS13_schema_revision` (`major`, `minor`) VALUES (5, 27);
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
```
In any query remember to add a prefix to the table names if you use one.
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.30, 26 April 2024, by zephyrtfa
+=======
+Version 5.27, 26 April 2024, by zephyrtfa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Add the ip intel whitelist table
```sql
DROP TABLE IF EXISTS `ipintel_whitelist`;
@@ -29,6 +44,7 @@ CREATE TABLE `ipintel_whitelist` (
/*!40101 SET character_set_client = @saved_cs_client */;
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.29, 08 January 2024, by Useroth
Add a new table for age-checking purposes. Optional if you don't ever intend to use the age prompt.
@@ -43,20 +59,31 @@ CREATE TABLE `player_dob` (
-----------------------------------------------------
Version 5.28, 03 December 2023, by distributivgesetz
+=======
+Version 5.26, 03 December 2023, by distributivgesetz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Set the default value of cloneloss to 0, as it's obsolete and it won't be set by blackbox anymore.
```sql
ALTER TABLE `death` MODIFY COLUMN `cloneloss` SMALLINT(5) UNSIGNED DEFAULT '0';
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.27, 27 September 2023, by Jimmyl
+=======
+Version 5.25, 27 September 2023, by Jimmyl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Removes the text_adventures table because it is no longer used
```sql
DROP TABLE IF EXISTS `text_adventures`;
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.26, 17 May 2023, by LemonInTheDark
+=======
+Version 5.24, 17 May 2023, by LemonInTheDark
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Modified the library action table to fit ckeys properly, and to properly store ips.
```sql
ALTER TABLE `library_action` MODIFY COLUMN `ckey` varchar(32) NOT NULL;
@@ -64,7 +91,11 @@ Modified the library action table to fit ckeys properly, and to properly store i
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.25, 28 December 2022, by Mothblocks
+=======
+Version 5.23, 28 December 2022, by Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Added `tutorial_completions` to mark what ckeys have completed contextual tutorials.
```sql
@@ -77,7 +108,11 @@ CREATE TABLE `tutorial_completions` (
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.24, 22 December 2021, by Mothblocks
+=======
+Version 5.22, 22 December 2021, by Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Fixes a bug in `telemetry_connections` that limited the range of IPs.
```sql
@@ -85,7 +120,11 @@ ALTER TABLE `telemetry_connections` MODIFY COLUMN `address` INT(10) UNSIGNED NOT
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.23, 15 December 2021, by Mothblocks
+=======
+Version 5.21, 15 December 2021, by Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Adds `telemetry_connections` table for tracking tgui telemetry.
```sql
@@ -103,7 +142,11 @@ CREATE TABLE `telemetry_connections` (
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.22, 11 November 2021, by Mothblocks
+=======
+Version 5.20, 11 November 2021, by Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Adds `admin_ckey` field to the `known_alts` table to track who added what.
```sql
@@ -112,7 +155,11 @@ ADD COLUMN `admin_ckey` VARCHAR(32) NOT NULL DEFAULT '*no key*' AFTER `ckey2`;
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.21, 10 November 2021, by WalterMeldron
+=======
+Version 5.19, 10 November 2021, by WalterMeldron
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Adds an urgent column to tickets for ahelps marked as urgent.
```sql
@@ -120,7 +167,11 @@ ALTER TABLE `ticket` ADD COLUMN `urgent` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.20, 1 November 2021, by Mothblocks
+=======
+Version 5.18, 1 November 2021, by Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Added `known_alts` table for tracking who not to create suspicious logins for.
```sql
@@ -134,7 +185,11 @@ CREATE TABLE `known_alts` (
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.19, 8 October 2021, by MrStonedOne + Mothblocks
+=======
+Version 5.17, 8 October 2021, by MrStonedOne + Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Changes any table that requrired a NOT NULL round ID to now accept NULL. In the BSQL past, these were handled as 0, but in the move to rust-g this behavior was lost.
```sql
@@ -153,6 +208,7 @@ ALTER TABLE `ticket` CHANGE `round_id` `round_id` INT(11) UNSIGNED NULL;
```
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.18, 23 August 2021, by GoldenAlpharex
Added `discord_report` column to the `ban table`
@@ -162,6 +218,9 @@ Added `discord_report` column to the `ban table`
-----------------------------------------------------
Version 5.17, 31 July 2021, by Atlanta-Ned
+=======
+Version 5.16, 31 July 2021, by Atlanta-Ned
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Added `library_action` table for tracking reported library books and actions taken on them.
```sql
@@ -180,7 +239,11 @@ CREATE TABLE `library_action` (
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.16, 2 June 2021, by Mothblocks
+=======
+Version 5.15, 2 June 2021, by Mothblocks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Added verified admin connection log used for 2FA
```sql
@@ -197,7 +260,11 @@ CREATE TABLE `admin_connections` (
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.15, xx May 2021, by Anturke
+=======
+Version 5.14, xx May 2021, by Anturke
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Added exploration drone adventure table
```sql
@@ -214,7 +281,11 @@ CREATE TABLE `text_adventures` (
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.14, 30 April 2021, by Atlanta Ned
+=======
+Version 5.13, 30 April 2021, by Atlanta Ned
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Added the `citation` table for tracking security citations in the database.
```sql
@@ -243,6 +314,7 @@ AUTO_INCREMENT=1
-----------------------------------------------------
+<<<<<<< HEAD
Version 5.13, 9 March, 2021, by Useroth
Implemented some features to help with running multiple servers on the same database and easily differentiate
@@ -283,6 +355,12 @@ Modified table `messages`, adding column `playtime` to show the user's playtime
```sql
ALTER TABLE `messages` ADD `playtime` INT(11) NULL DEFAULT(NULL) AFTER `severity`
```
+=======
+Version 5.12, 29 December 2020, by Missfox
+Modified table `messages`, adding column `playtime` to show the user's playtime when the note was created.
+
+ALTER TABLE `messages` ADD `playtime` INT(11) NULL DEFAULT(NULL) AFTER `severity`
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
-----------------------------------------------------
diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql
index fba7edfcb7a..1d875b61a0c 100644
--- a/SQL/tgstation_schema.sql
+++ b/SQL/tgstation_schema.sql
@@ -660,6 +660,7 @@ CREATE TABLE `discord_links` (
) ENGINE=InnoDB;
--
+<<<<<<< HEAD
-- Table structure for table `game_log`
--
DROP TABLE IF EXISTS `game_log`;
@@ -675,6 +676,8 @@ CREATE TABLE `game_log` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
-- Table structure for table `admin_connections`
--
DROP TABLE IF EXISTS `admin_connections`;
diff --git a/__odlint.dm b/__odlint.dm
new file mode 100644
index 00000000000..b7c120514a1
--- /dev/null
+++ b/__odlint.dm
@@ -0,0 +1,10 @@
+// This file is included right at the start of the DME.
+// Its purpose is to enable multiple lints (pragmas) that are supported by OpenDream to better validate the codebase
+// These are essentially nitpicks the DM compiler should pick up on but doesnt
+
+#if !defined(SPACEMAN_DMM) && defined(OPENDREAM)
+// This is in a separate file as a hack to avoid SpacemanDMM
+// evaluating the #pragma lines, even if its outside a block it cares about
+// (Also so people can code-own it. Shoutout to AA)
+#include "tools/ci/od_lints.dm"
+#endif
diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm
index 0e78558d6f3..121f9e4ea45 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_surface_pizza.dmm
@@ -300,7 +300,6 @@
/area/ruin/pizzeria)
"kr" = (
/obj/structure/table,
-/obj/item/trash/waffles,
/obj/effect/turf_decal/tile/blue/opposingcorners{
dir = 1
},
diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_smoking_room.dmm b/_maps/RandomRuins/IceRuins/icemoon_surface_smoking_room.dmm
index e910474b12c..e1acbbf4f28 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_surface_smoking_room.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_surface_smoking_room.dmm
@@ -2,7 +2,11 @@
"a" = (
/turf/closed/mineral/random/snow,
/area/icemoon/surface/outdoors/nospawn)
+<<<<<<< HEAD
"c" = (
+=======
+"b" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/circuitboard/machine/space_heater,
/obj/item/stack/cable_coil/five,
/obj/structure/frame/machine,
@@ -173,6 +177,23 @@
/obj/effect/decal/cleanable/ash,
/turf/open/floor/carpet/blue,
/area/ruin/smoking_room/room)
+<<<<<<< HEAD
+=======
+"E" = (
+/obj/item/trash/shrimp_chips,
+/obj/item/cigarette/rollie/trippy{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/cigarette/rollie/trippy{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/effect/spawner/random/trash/bin,
+/obj/effect/spawner/random/special_lighter,
+/turf/open/floor/wood,
+/area/ruin/smoking_room/house)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"F" = (
/obj/structure/table/wood/fancy/black,
/obj/item/storage/fancy/cigarettes/cigars/cohiba,
@@ -258,6 +279,7 @@
},
/turf/open/floor/wood,
/area/ruin/smoking_room/house)
+<<<<<<< HEAD
"U" = (
/obj/item/trash/shrimp_chips,
/obj/item/cigarette/rollie/trippy{
@@ -272,6 +294,8 @@
/obj/effect/spawner/random/special_lighter,
/turf/open/floor/wood,
/area/ruin/smoking_room/house)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"V" = (
/obj/structure/fireplace,
/obj/effect/turf_decal/siding/wood,
@@ -373,7 +397,11 @@ x
B
r
S
+<<<<<<< HEAD
c
+=======
+b
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
I
Q
Q
@@ -471,7 +499,11 @@ a
a
a
I
+<<<<<<< HEAD
U
+=======
+E
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
u
y
L
diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm
index ff3417fefce..d5c344e9cd3 100644
--- a/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm
+++ b/_maps/RandomRuins/IceRuins/icemoon_underground_comms_agent.dmm
@@ -451,12 +451,8 @@
/area/ruin/comms_agent)
"xq" = (
/obj/effect/decal/cleanable/dirt,
-/obj/item/radio/intercom{
- pixel_x = 31;
- syndie = 1;
- freerange = 1;
- name = "syndicate radio intercom";
- desc = "A custom-made Syndicate-issue intercom used to transmit on all Nanotrasen frequencies. Particularly expensive."
+/obj/item/radio/intercom/syndicate/freerange{
+ pixel_x = 31
},
/obj/structure/table/reinforced,
/obj/machinery/fax{
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
index c2ea8382e46..83f08dce288 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm
@@ -406,6 +406,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
/turf/open/floor/plating,
/area/ruin/powered/beach)
+<<<<<<< HEAD
+=======
+"mv" = (
+/obj/effect/spawner/message_in_a_bottle/low_prob,
+/turf/open/misc/beach/coast,
+/area/ruin/powered/beach)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mw" = (
/obj/structure/flora/coconuts,
/turf/open/misc/beach/sand,
@@ -548,6 +555,7 @@
/obj/item/toy/beach_ball,
/turf/open/misc/beach/sand,
/area/ruin/powered/beach)
+<<<<<<< HEAD
"sa" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/obj/structure/chair/stool/bar/directional/south,
@@ -560,6 +568,9 @@
/turf/closed/wall/mineral/wood/nonmetal,
/area/ruin/powered/beach)
"sz" = (
+=======
+"rU" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/reagent_containers/condiment/enzyme,
/obj/item/reagent_containers/cup/beaker{
pixel_x = 5
@@ -567,10 +578,28 @@
/obj/structure/table,
/turf/open/floor/wood,
/area/ruin/powered/beach)
+<<<<<<< HEAD
"sA" = (
/mob/living/basic/crab{
name = "Jon"
},
+=======
+"sa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/structure/chair/stool/bar/directional/south,
+/turf/open/floor/wood,
+/area/ruin/powered/beach)
+"sl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/closed/wall/mineral/wood/nonmetal,
+/area/ruin/powered/beach)
+"sA" = (
+/mob/living/basic/crab{
+ name = "Jon"
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/beach/sand,
/area/ruin/powered/beach)
"sV" = (
@@ -867,6 +896,7 @@
/area/ruin/powered/beach)
"Fa" = (
/obj/structure/chair/stool/bar/directional/south,
+<<<<<<< HEAD
/turf/open/floor/wood,
/area/ruin/powered/beach)
"Fj" = (
@@ -876,6 +906,8 @@
/obj/item/storage/backpack/duffelbag,
/obj/item/clothing/under/shorts/red,
/obj/item/clothing/glasses/sunglasses,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/wood,
/area/ruin/powered/beach)
"Fr" = (
@@ -919,6 +951,22 @@
/obj/item/book/manual/wiki/cooking_to_serve_man,
/obj/item/clothing/suit/apron/chef,
/obj/item/clothing/head/utility/chefhat,
+<<<<<<< HEAD
+=======
+/turf/open/floor/wood,
+/area/ruin/powered/beach)
+"Gf" = (
+/obj/structure/sign/poster/contraband/space_cola/directional/north,
+/turf/open/misc/beach/sand,
+/area/ruin/powered/beach)
+"GA" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/chair/stool/directional/south,
+/obj/item/storage/backpack/duffelbag,
+/obj/item/clothing/under/shorts/red,
+/obj/item/clothing/glasses/sunglasses,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/wood,
/area/ruin/powered/beach)
"Gf" = (
@@ -985,6 +1033,10 @@
dir = 1
},
/obj/machinery/light/directional/south,
+<<<<<<< HEAD
+=======
+/obj/effect/spawner/message_in_a_bottle/low_prob,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/beach/coast/corner{
dir = 8
},
@@ -1990,7 +2042,11 @@ bG
bL
VI
VI
+<<<<<<< HEAD
yT
+=======
+mv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pz
Eu
pz
@@ -2017,7 +2073,11 @@ Lm
Lm
rv
VI
+<<<<<<< HEAD
Fj
+=======
+GA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bH
bM
VI
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index b99f9df9681..6df974f9ea2 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -4034,34 +4034,6 @@
/obj/effect/mapping_helpers/airalarm/syndicate_access,
/turf/open/floor/iron,
/area/ruin/syndicate_lava_base/main)
-"TM" = (
-/obj/effect/turf_decal/bot,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/turf_decal/tile/red/half/contrasted{
- dir = 4
- },
-/obj/item/turbine_parts/rotor{
- current_tier = 3
- },
-/obj/item/turbine_parts/stator{
- current_tier = 2
- },
-/obj/item/turbine_parts/compressor{
- current_tier = 3
- },
-/obj/item/pipe_dispenser,
-/obj/structure/closet/crate/engineering,
-/obj/item/stack/sheet/mineral/plastitanium{
- amount = 30
- },
-/obj/item/stack/sheet/plastitaniumglass{
- amount = 15
- },
-/obj/item/holosign_creator/atmos,
-/obj/item/circuitboard/machine/thermomachine,
-/obj/item/circuitboard/machine/thermomachine,
-/turf/open/floor/iron,
-/area/ruin/syndicate_lava_base/engineering)
"TN" = (
/obj/structure/table/wood,
/obj/machinery/light/small/directional/east,
@@ -4431,6 +4403,34 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/ruin/syndicate_lava_base/engineering)
+"YJ" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/turbine_parts/rotor{
+ current_tier = 3
+ },
+/obj/item/turbine_parts/stator{
+ current_tier = 2
+ },
+/obj/item/turbine_parts/compressor{
+ current_tier = 3
+ },
+/obj/item/pipe_dispenser,
+/obj/structure/closet/crate/engineering,
+/obj/item/stack/sheet/mineral/plastitanium{
+ amount = 30
+ },
+/obj/item/stack/sheet/plastitaniumglass{
+ amount = 15
+ },
+/obj/item/holosign_creator/atmos,
+/obj/item/circuitboard/machine/thermomachine,
+/obj/item/circuitboard/machine/thermomachine,
+/turf/open/floor/iron,
+/area/ruin/syndicate_lava_base/engineering)
"YP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
@@ -6614,7 +6614,7 @@ ju
ju
TO
JE
-TM
+YJ
ta
vB
LW
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm
index 4b4daf0586b..9dfb448cffe 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1/mistake_feasible.dmm
@@ -17,6 +17,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"ad" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs,
+/obj/item/taperecorder,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
"ae" = (
/obj/machinery/firealarm/directional/south,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -25,6 +33,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"af" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
"ag" = (
/obj/structure/table/reinforced,
/obj/item/restraints/handcuffs,
@@ -46,6 +67,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"aj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
"ak" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt,
@@ -56,6 +83,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"al" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
"am" = (
/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
/obj/machinery/door/firedoor,
@@ -87,6 +122,35 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"aq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
+"ar" = (
+/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "lavalandsyndi";
+ name = "Syndicate Research Experimentation Shutters"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
+/turf/open/floor/plating,
+/area/ruin/syndicate_lava_base/testlab)
+"as" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
"at" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -110,6 +174,43 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"aw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/mapping_helpers/airalarm/syndicate_access,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
+"ax" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
+"ay" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
+"az" = (
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
"aA" = (
/obj/structure/bed/medical/emergency,
/obj/machinery/iv_drip,
@@ -139,6 +240,12 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"aC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
"aD" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/ruin/syndicate_lava_base/testlab)
@@ -155,6 +262,27 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"aF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/door/airlock/hatch{
+ name = "Experimentation Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/structure/cable,
+/obj/modular_map_connector,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
+"aG" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/table/reinforced,
+/obj/item/storage/box/monkeycubes/syndicate,
+/obj/item/storage/box/monkeycubes/syndicate,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
"aH" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/engine,
@@ -172,6 +300,11 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/ruin/syndicate_lava_base/testlab)
+"aK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
"aL" = (
/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
/turf/open/floor/plating,
@@ -207,6 +340,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/engine,
/area/ruin/syndicate_lava_base/testlab)
+"aR" = (
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/ruin/syndicate_lava_base/testlab)
"aS" = (
/obj/machinery/light/small/directional/east,
/turf/open/floor/engine,
@@ -222,6 +365,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/ruin/syndicate_lava_base/testlab)
+"aU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
+"aV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/ruin/syndicate_lava_base/testlab)
"aW" = (
/obj/machinery/light/small/directional/north,
/turf/open/floor/engine,
diff --git a/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm b/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm
index 449122260ef..32329cf4a5c 100644
--- a/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm
+++ b/_maps/RandomRuins/SpaceRuins/allamericandiner.dmm
@@ -243,6 +243,12 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/ruin/space/has_grav/allamericandiner)
+"nq" = (
+/obj/machinery/shower/directional/east,
+/obj/structure/fluff/shower_drain,
+/obj/item/soap,
+/turf/open/floor/iron/freezer,
+/area/ruin/space/has_grav/allamericandiner)
"nr" = (
/obj/structure/table/wood,
/obj/item/paper_bin{
@@ -597,6 +603,12 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/iron/freezer,
/area/ruin/space/has_grav/allamericandiner)
+"CF" = (
+/obj/machinery/shower/directional/west,
+/obj/structure/fluff/shower_drain,
+/obj/item/soap,
+/turf/open/floor/iron/freezer,
+/area/ruin/space/has_grav/allamericandiner)
"Du" = (
/obj/structure/table/reinforced,
/obj/item/reagent_containers/condiment/peppermill{
@@ -612,12 +624,6 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/ruin/space/has_grav/allamericandiner)
-"DD" = (
-/obj/machinery/shower/directional/east,
-/obj/structure/fluff/shower_drain,
-/obj/item/soap,
-/turf/open/floor/iron/freezer,
-/area/ruin/space/has_grav/allamericandiner)
"DQ" = (
/obj/structure/chair/sofa/right/maroon,
/obj/effect/decal/cleanable/dirt,
@@ -952,12 +958,6 @@
/obj/item/storage/dice,
/turf/open/floor/iron,
/area/ruin/space/has_grav/allamericandiner)
-"OJ" = (
-/obj/machinery/shower/directional/west,
-/obj/structure/fluff/shower_drain,
-/obj/item/soap,
-/turf/open/floor/iron/freezer,
-/area/ruin/space/has_grav/allamericandiner)
"Ph" = (
/obj/structure/chair/sofa/left/maroon{
dir = 4
@@ -2083,7 +2083,7 @@ Kp
jx
Kp
Lp
-OJ
+CF
EK
oN
oN
@@ -2157,7 +2157,7 @@ YX
Im
YX
bE
-DD
+nq
EK
oN
oN
diff --git a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
index a7eac1fe1a8..adbc2cb5353 100644
--- a/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
+++ b/_maps/RandomRuins/SpaceRuins/dangerous_research.dmm
@@ -1062,7 +1062,11 @@
/turf/open/floor/iron/dark,
/area/ruin/space/has_grav/dangerous_research/lab)
"oJ" = (
+<<<<<<< HEAD
/obj/structure/closet/crate/medical,
+=======
+/obj/structure/closet/crate/secure/interdyne,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/stack/medical/suture/emergency,
/obj/item/stack/medical/gauze/twelve,
/obj/item/reagent_containers/hypospray/medipen/blood_loss,
@@ -2155,7 +2159,11 @@
/turf/open/floor/iron/dark,
/area/ruin/space/has_grav/dangerous_research/lab)
"BG" = (
+<<<<<<< HEAD
/obj/structure/closet/crate,
+=======
+/obj/structure/closet/crate/secure/interdyne,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/stack/sheet/mineral/plasma/thirty,
/obj/item/stack/sheet/mineral/wood/fifty,
/obj/item/stack/sheet/iron/fifty,
@@ -3658,7 +3666,11 @@
/turf/open/floor/iron/dark,
/area/ruin/space/has_grav/dangerous_research)
"VQ" = (
+<<<<<<< HEAD
/obj/structure/closet/crate,
+=======
+/obj/structure/closet/crate/secure/interdyne,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/reagent_containers/cup/glass/waterbottle/large,
/obj/item/reagent_containers/cup/glass/waterbottle/large,
/obj/item/reagent_containers/cup/glass/waterbottle/large,
diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm
index 62cc4e2930d..2d7c9429777 100644
--- a/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm
+++ b/_maps/RandomRuins/SpaceRuins/garbagetruck1.dmm
@@ -253,6 +253,7 @@
/obj/structure/closet/secure_closet/freezer/empty,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+<<<<<<< HEAD
"jy" = (
/obj/structure/closet/cardboard,
/obj/item/toy/plush/snakeplushie,
@@ -260,6 +261,8 @@
/obj/item/cigarette/cigar/havana,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ki" = (
/obj/effect/spawner/random/trash/food_packaging,
/obj/item/shard,
@@ -480,6 +483,16 @@
},
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+<<<<<<< HEAD
+=======
+"wv" = (
+/obj/structure/closet/cardboard,
+/obj/item/toy/plush/snakeplushie,
+/obj/item/clothing/glasses/eyepatch,
+/obj/item/cigarette/cigar/havana,
+/turf/open/floor/plating/dumpsterair,
+/area/ruin/space/has_grav/garbagetruck/foodwaste)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wR" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/item/food/badrecipe/moldy/bacteria{
@@ -491,9 +504,12 @@
/area/ruin/space/has_grav/garbagetruck/foodwaste)
"xf" = (
/obj/item/trash/tray,
+<<<<<<< HEAD
/obj/item/trash/waffles,
/obj/item/trash/waffles,
/obj/item/trash/waffles,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/food/grown/mushroom/plumphelmet,
/obj/structure/closet/crate/trashcart,
/mob/living/basic/mouse/rat,
@@ -751,6 +767,15 @@
/obj/item/food/cornchips/random,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+<<<<<<< HEAD
+=======
+"Fz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/lead,
+/turf/open/floor/iron/smooth,
+/area/ruin/space/has_grav/garbagetruck/foodwaste)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"FL" = (
/obj/structure/closet/cardboard,
/obj/item/pen/blue,
@@ -867,12 +892,15 @@
},
/turf/open/floor/iron/smooth,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+<<<<<<< HEAD
"Ji" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
/obj/item/stock_parts/power_store/cell/lead,
/turf/open/floor/iron/smooth,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"JH" = (
/obj/item/petri_dish/random,
/obj/item/petri_dish/random,
@@ -888,6 +916,7 @@
/obj/effect/spawner/random/medical/surgery_tool,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+<<<<<<< HEAD
"Kj" = (
/obj/item/clothing/head/cone{
pixel_x = 8;
@@ -902,6 +931,8 @@
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"KD" = (
/obj/structure/closet/crate/critter,
/obj/item/dog_bone{
@@ -1077,6 +1108,23 @@
/obj/effect/decal/cleanable/food/tomato_smudge,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/foodwaste)
+<<<<<<< HEAD
+=======
+"PU" = (
+/obj/item/clothing/head/cone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/machinery/light/warm,
+/obj/machinery/power/apc{
+ locked = 0;
+ pixel_y = -25;
+ start_charge = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/ruin/space/has_grav/garbagetruck/foodwaste)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Qi" = (
/obj/item/book/bible,
/obj/structure/closet/crate/cardboard,
@@ -1282,7 +1330,11 @@ Sa
XY
Od
kJ
+<<<<<<< HEAD
Ji
+=======
+Fz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gI
OD
Sa
@@ -1291,7 +1343,11 @@ rL
HC
YB
iH
+<<<<<<< HEAD
jy
+=======
+wv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
KD
wR
nS
@@ -1415,7 +1471,11 @@ XY
Od
fI
bF
+<<<<<<< HEAD
Kj
+=======
+PU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
OD
Sa
Qi
diff --git a/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm b/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm
index 3e842bd1979..03a9b87ff4e 100644
--- a/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm
+++ b/_maps/RandomRuins/SpaceRuins/garbagetruck3.dmm
@@ -140,13 +140,13 @@
},
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"iC" = (
+"ih" = (
+/obj/item/bedsheet/purple,
+/obj/item/cigarette/space_cigarette,
+/obj/structure/bed/maint,
+/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/fuel_pool,
-/obj/effect/decal/cleanable/molten_object/large,
-/obj/structure/broken_flooring/pile,
-/obj/item/food/deadmouse/moldy,
-/obj/item/stock_parts/water_recycler,
-/obj/item/stock_parts/power_store/cell/lead,
+/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
"iU" = (
@@ -154,14 +154,6 @@
/obj/effect/decal/cleanable/fuel_pool,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"ja" = (
-/obj/item/food/deadmouse,
-/obj/item/clothing/shoes/sneakers/red,
-/obj/item/cigarette/carp,
-/obj/item/extinguisher/mini,
-/obj/effect/decal/cleanable/fuel_pool,
-/turf/open/floor/plating/dumpsterair,
-/area/ruin/space/has_grav/garbagetruck/squat)
"jl" = (
/obj/structure/table/reinforced,
/obj/item/gps/spaceruin{
@@ -193,6 +185,13 @@
/obj/structure/fans/tiny,
/turf/open/floor/plating,
/area/ruin/space/has_grav/garbagetruck/squat)
+"kb" = (
+/obj/effect/decal/cleanable/fuel_pool,
+/obj/item/stock_parts/power_store/cell/crap/empty,
+/obj/effect/decal/cleanable/plastic,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating/dumpsterair,
+/area/ruin/space/has_grav/garbagetruck/squat)
"kR" = (
/obj/structure/closet/crate/preopen,
/obj/effect/decal/cleanable/shreds,
@@ -318,15 +317,6 @@
/mob/living/basic/cockroach,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"ra" = (
-/obj/item/bedsheet/purple,
-/obj/item/cigarette/space_cigarette,
-/obj/structure/bed/maint,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/decal/cleanable/fuel_pool,
-/obj/effect/decal/cleanable/dirt/dust,
-/turf/open/floor/plating/dumpsterair,
-/area/ruin/space/has_grav/garbagetruck/squat)
"rq" = (
/obj/effect/decal/cleanable/fuel_pool,
/obj/effect/decal/cleanable/dirt,
@@ -367,12 +357,6 @@
},
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"so" = (
-/obj/structure/table/reinforced,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/power_store/cell/lead,
-/turf/open/floor/iron/smooth,
-/area/ruin/space/has_grav/garbagetruck/squat)
"sF" = (
/obj/structure/table/reinforced,
/obj/item/storage/box/gloves{
@@ -388,6 +372,14 @@
},
/turf/open/floor/iron/smooth,
/area/ruin/space/has_grav/garbagetruck/squat)
+"tu" = (
+/obj/item/cigarette/robust,
+/obj/structure/closet/emcloset,
+/obj/item/clothing/suit/utility/fire/heavy,
+/obj/item/clothing/head/utility/hardhat/welding/atmos,
+/obj/item/survivalcapsule/bathroom,
+/turf/open/floor/plating/dumpsterair,
+/area/ruin/space/has_grav/garbagetruck/squat)
"tL" = (
/obj/structure/reagent_dispensers/fueltank/large,
/obj/effect/decal/cleanable/fuel_pool,
@@ -449,20 +441,21 @@
/obj/effect/decal/cleanable/fuel_pool,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
+"vJ" = (
+/obj/effect/decal/cleanable/fuel_pool,
+/obj/effect/decal/cleanable/molten_object/large,
+/obj/structure/broken_flooring/pile,
+/obj/item/food/deadmouse/moldy,
+/obj/item/stock_parts/water_recycler,
+/obj/item/stock_parts/power_store/cell/lead,
+/turf/open/floor/plating/dumpsterair,
+/area/ruin/space/has_grav/garbagetruck/squat)
"vW" = (
/obj/effect/spawner/random/engineering/material_cheap,
/obj/structure/girder/displaced,
/obj/item/stock_parts/scanning_module,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"wk" = (
-/obj/item/cigarette/robust,
-/obj/structure/closet/emcloset,
-/obj/item/clothing/suit/utility/fire/heavy,
-/obj/item/clothing/head/utility/hardhat/welding/atmos,
-/obj/item/survivalcapsule/bathroom,
-/turf/open/floor/plating/dumpsterair,
-/area/ruin/space/has_grav/garbagetruck/squat)
"xg" = (
/obj/structure/chair/office,
/obj/item/reagent_containers/cup/mortar,
@@ -470,6 +463,20 @@
/obj/effect/decal/cleanable/fuel_pool,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
+"yo" = (
+/obj/item/clothing/head/cone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/machinery/light/warm,
+/obj/machinery/power/apc{
+ locked = 0;
+ pixel_y = -25;
+ start_charge = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/ruin/space/has_grav/garbagetruck/squat)
"yF" = (
/obj/item/trash/spacers_sidekick,
/obj/item/trash/flare,
@@ -530,33 +537,6 @@
/obj/structure/reagent_dispensers/fueltank/large,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"Cc" = (
-/obj/item/stock_parts/power_store/cell/crap/empty{
- pixel_x = -4;
- pixel_y = 10
- },
-/obj/item/cigarette/space_cigarette{
- pixel_x = -5;
- pixel_y = 7
- },
-/obj/effect/decal/cleanable/fuel_pool,
-/obj/item/crowbar/hammer{
- desc = "A large claw hammer. It's been heavily used, as evidenced by the dents and scratches covering its head.";
- name = "claw hammer"
- },
-/obj/item/storage/fancy/cigarettes/cigpack_cannabis{
- pixel_x = 6;
- pixel_y = -2
- },
-/turf/open/floor/plating/dumpsterair,
-/area/ruin/space/has_grav/garbagetruck/squat)
-"Ci" = (
-/obj/effect/decal/cleanable/fuel_pool,
-/obj/item/stock_parts/power_store/cell/crap/empty,
-/obj/effect/decal/cleanable/plastic,
-/obj/effect/spawner/random/maintenance/two,
-/turf/open/floor/plating/dumpsterair,
-/area/ruin/space/has_grav/garbagetruck/squat)
"Cm" = (
/obj/effect/decal/cleanable/fuel_pool,
/obj/item/mod/module/jetpack{
@@ -685,6 +665,12 @@
/obj/item/organ/internal/tongue/robot,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
+"HN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/lead,
+/turf/open/floor/iron/smooth,
+/area/ruin/space/has_grav/garbagetruck/squat)
"HZ" = (
/turf/closed/wall/mineral/titanium,
/area/ruin/space/has_grav/garbagetruck/squat)
@@ -767,6 +753,26 @@
/obj/item/crowbar/large/emergency,
/turf/open/space/basic,
/area/ruin/space/has_grav/garbagetruck/squat)
+"MQ" = (
+/obj/item/stock_parts/power_store/cell/crap/empty{
+ pixel_x = -4;
+ pixel_y = 10
+ },
+/obj/item/cigarette/space_cigarette{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/effect/decal/cleanable/fuel_pool,
+/obj/item/crowbar/hammer{
+ desc = "A large claw hammer. It's been heavily used, as evidenced by the dents and scratches covering its head.";
+ name = "claw hammer"
+ },
+/obj/item/storage/fancy/cigarettes/cigpack_cannabis{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/plating/dumpsterair,
+/area/ruin/space/has_grav/garbagetruck/squat)
"Nd" = (
/obj/item/binoculars,
/obj/item/crowbar/large/old,
@@ -800,20 +806,6 @@
/obj/item/food/drug/moon_rock,
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
-"Qs" = (
-/obj/item/clothing/head/cone{
- pixel_x = 8;
- pixel_y = 8
- },
-/obj/machinery/light/warm,
-/obj/machinery/power/apc{
- locked = 0;
- pixel_y = -25;
- start_charge = 0
- },
-/obj/structure/cable,
-/turf/open/floor/catwalk_floor/iron,
-/area/ruin/space/has_grav/garbagetruck/squat)
"Rw" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/fuel_pool,
@@ -910,6 +902,14 @@
"Xt" = (
/turf/open/floor/plating/dumpsterair,
/area/ruin/space/has_grav/garbagetruck/squat)
+"Xv" = (
+/obj/item/food/deadmouse,
+/obj/item/clothing/shoes/sneakers/red,
+/obj/item/cigarette/carp,
+/obj/item/extinguisher/mini,
+/obj/effect/decal/cleanable/fuel_pool,
+/turf/open/floor/plating/dumpsterair,
+/area/ruin/space/has_grav/garbagetruck/squat)
"XS" = (
/obj/effect/decal/cleanable/fuel_pool,
/obj/structure/firelock_frame,
@@ -981,19 +981,19 @@ mV
la
gq
sF
-so
+HN
dC
HZ
mV
bR
-ra
+ih
un
aI
rq
Fe
lv
pM
-wk
+tu
hm
pC
fF
@@ -1016,7 +1016,7 @@ za
aG
zo
HD
-Cc
+MQ
qF
Cm
mV
@@ -1039,7 +1039,7 @@ uW
XS
nX
BN
-iC
+vJ
vW
mV
"}
@@ -1061,7 +1061,7 @@ Hk
vq
zY
Hn
-Ci
+kb
le
mV
"}
@@ -1114,7 +1114,7 @@ la
gq
Gn
dF
-Qs
+yo
HZ
mV
ui
@@ -1150,7 +1150,7 @@ Dq
yF
Nd
Er
-ja
+Xv
Pz
"}
(11,1,1) = {"
diff --git a/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm b/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm
index a6da6eb66a9..fb6172ff2f3 100644
--- a/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm
+++ b/_maps/RandomRuins/SpaceRuins/hilbertresearchfacility.dmm
@@ -43,6 +43,21 @@
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"bi" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/syringe/bluespace{
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/syringe/bluespace{
+ pixel_y = 8
+ },
+/obj/structure/window/reinforced/survival_pod/spawner/directional/east,
+/obj/machinery/door/window/survival_pod/left/directional/south,
+/turf/open/floor/mineral/plastitanium/red,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bE" = (
/turf/open/floor/iron/stairs,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
@@ -240,6 +255,17 @@
/obj/structure/railing/corner,
/turf/open/floor/glass,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"hB" = (
+/obj/machinery/door/window/survival_pod/left/directional/east,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 5
+ },
+/obj/item/stack/cable_coil/cut,
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hL" = (
/obj/effect/turf_decal/stripes/corner,
/obj/effect/turf_decal/siding/thinplating_new/light{
@@ -474,6 +500,7 @@
/obj/item/transfer_valve,
/turf/open/floor/plating/airless,
/area/ruin/space)
+<<<<<<< HEAD
"mz" = (
/obj/structure/rack,
/obj/item/clothing/suit/bio_suit/cmo,
@@ -482,6 +509,8 @@
/obj/machinery/door/window/survival_pod/left/directional/south,
/turf/open/floor/mineral/plastitanium/red,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mC" = (
/obj/machinery/chem_mass_spec,
/turf/open/floor/mineral/titanium/tiled/blue,
@@ -524,6 +553,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"nv" = (
/obj/structure/rack,
/obj/item/reagent_containers/syringe/bluespace{
@@ -536,6 +566,8 @@
/obj/machinery/door/window/survival_pod/left/directional/south,
/turf/open/floor/mineral/plastitanium/red,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nx" = (
/obj/machinery/door/window/left/directional/south,
/obj/effect/decal/cleanable/dirt,
@@ -551,12 +583,15 @@
},
/turf/open/floor/mineral/plastitanium,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"nK" = (
/obj/structure/rack,
/obj/item/gun/syringe,
/obj/machinery/door/window/survival_pod/left/directional/west,
/turf/open/floor/mineral/plastitanium/red,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nM" = (
/obj/structure/lattice,
/turf/template_noop,
@@ -580,6 +615,7 @@
/obj/item/assembly/signaler,
/turf/open/floor/plating/airless,
/area/ruin/space)
+<<<<<<< HEAD
"nY" = (
/obj/machinery/door/window/survival_pod/left/directional/east,
/obj/effect/turf_decal/siding/wideplating_new/dark{
@@ -588,6 +624,8 @@
/obj/item/stack/cable_coil/cut,
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"og" = (
/obj/item/slime_extract/bluespace,
/obj/effect/decal/cleanable/dirt,
@@ -664,6 +702,7 @@
},
/turf/open/floor/iron/grimy,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"qj" = (
/obj/machinery/door/window/survival_pod/left/directional/west,
/obj/effect/turf_decal/siding/wideplating_new/dark{
@@ -672,6 +711,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qC" = (
/obj/machinery/transport/tram_controller/hilbert,
/turf/closed/indestructible/riveted/plastinum/nodiagonal,
@@ -756,6 +797,15 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/mineral/plastitanium/red,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"th" = (
+/obj/structure/rack,
+/obj/item/gun/syringe,
+/obj/machinery/door/window/survival_pod/left/directional/west,
+/turf/open/floor/mineral/plastitanium/red,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ty" = (
/obj/structure/table/reinforced/plastitaniumglass,
/obj/item/stock_parts/matter_bin/bluespace{
@@ -804,6 +854,16 @@
/obj/effect/turf_decal/trimline/neutral/mid_joiner,
/turf/open/floor/mineral/plastitanium,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"us" = (
+/obj/machinery/door/window/survival_pod/left/directional/west,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 10
+ },
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uV" = (
/obj/effect/turf_decal/siding/thinplating_new/light{
dir = 5
@@ -831,6 +891,17 @@
},
/turf/open/floor/mineral/plastitanium,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"vz" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/bio_suit/cmo,
+/obj/item/clothing/head/bio_hood/cmo,
+/obj/structure/window/reinforced/survival_pod/spawner/directional/west,
+/obj/machinery/door/window/survival_pod/left/directional/south,
+/turf/open/floor/mineral/plastitanium/red,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vG" = (
/obj/structure/fluff/tram_rail/end{
dir = 8
@@ -971,6 +1042,17 @@
/obj/item/grown/bananapeel/mimanapeel,
/turf/open/floor/glass,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"yK" = (
+/obj/machinery/door/window/survival_pod/left/directional/west,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yO" = (
/obj/structure/door_assembly/door_assembly_shuttle,
/turf/open/floor/mineral/titanium/blue,
@@ -1151,6 +1233,16 @@
/obj/effect/landmark/transport/nav_beacon/tram/nav/immovable_rod,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"BF" = (
+/obj/machinery/door/window/survival_pod/left/directional/west,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 9
+ },
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BH" = (
/obj/item/kirbyplants/photosynthetic,
/obj/effect/turf_decal/stripes/red/line,
@@ -1216,6 +1308,7 @@
},
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"CB" = (
/obj/machinery/door/window/survival_pod/left/directional/west,
/obj/effect/turf_decal/siding/wideplating_new/dark{
@@ -1223,6 +1316,8 @@
},
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"CO" = (
/turf/open/floor/glass,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
@@ -1257,6 +1352,17 @@
},
/turf/open/floor/engine,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"DO" = (
+/obj/machinery/door/window/survival_pod/left/directional/east,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"DR" = (
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
@@ -1353,6 +1459,7 @@
/obj/item/paper_bin,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"Fy" = (
/obj/machinery/door/window/survival_pod/left/directional/west,
/obj/effect/turf_decal/siding/wideplating_new/dark{
@@ -1360,6 +1467,8 @@
},
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"FB" = (
/obj/structure/table/wood,
/obj/item/lighter,
@@ -1386,6 +1495,7 @@
/obj/structure/table/reinforced,
/turf/open/floor/wood,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"Gr" = (
/obj/machinery/door/window/survival_pod/left/directional/west,
/obj/effect/turf_decal/siding/wideplating_new/dark{
@@ -1395,6 +1505,8 @@
/mob/living/basic/slime/hilbert,
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Gs" = (
/obj/effect/turf_decal/stripes/red/line{
dir = 8
@@ -1590,6 +1702,7 @@
/obj/item/flashlight/lamp/green,
/turf/open/floor/carpet/black,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"JW" = (
/obj/effect/decal/remains/human,
/obj/machinery/door/window/survival_pod/left/directional/east,
@@ -1598,6 +1711,8 @@
},
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Kd" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/barricade/wooden,
@@ -1723,6 +1838,17 @@
/obj/structure/girder,
/turf/open/floor/plating,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"NJ" = (
+/obj/effect/decal/remains/human,
+/obj/machinery/door/window/survival_pod/left/directional/east,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 6
+ },
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"NU" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 4
@@ -1991,6 +2117,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
"SL" = (
/obj/machinery/door/window/survival_pod/left/directional/east,
/obj/effect/turf_decal/siding/wideplating_new/dark{
@@ -1999,6 +2126,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/mineral/titanium/tiled/purple,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"SR" = (
/obj/structure/railing{
dir = 4
@@ -2166,6 +2295,18 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+<<<<<<< HEAD
+=======
+"WC" = (
+/obj/machinery/door/window/survival_pod/left/directional/west,
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/mob/living/basic/slime/hilbert,
+/turf/open/floor/mineral/titanium/tiled/purple,
+/area/ruin/space/has_grav/powered/hilbertresearchfacility)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"WI" = (
/obj/structure/table/wood,
/obj/item/food/cornchips/blue,
@@ -3139,7 +3280,11 @@ Bo
Bo
Bo
Bo
+<<<<<<< HEAD
nv
+=======
+bi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sz
Bo
Dk
@@ -3178,7 +3323,11 @@ Dk
Dk
Dk
Bo
+<<<<<<< HEAD
mz
+=======
+vz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
te
Bo
Dk
@@ -3218,7 +3367,11 @@ Dk
Dk
Bo
Ok
+<<<<<<< HEAD
nK
+=======
+th
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Bo
Dk
Dk
@@ -3581,11 +3734,19 @@ Bo
Bk
Bk
Bo
+<<<<<<< HEAD
nY
JW
Bo
SL
JW
+=======
+hB
+NJ
+Bo
+DO
+NJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Bo
Dk
Dk
@@ -3893,11 +4054,19 @@ Bo
Dk
Dk
Bo
+<<<<<<< HEAD
qj
CB
Bo
Fy
Gr
+=======
+yK
+us
+Bo
+BF
+WC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Bo
Dk
Dk
diff --git a/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm b/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm
index f8904976f72..b0a604d132d 100644
--- a/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm
+++ b/_maps/RandomRuins/SpaceRuins/infested_frigate.dmm
@@ -557,6 +557,18 @@
/obj/item/kirbyplants/random,
/turf/open/floor/mineral/titanium/tiled/white,
/area/ruin/space/has_grav/infested_frigate)
+<<<<<<< HEAD
+=======
+"hX" = (
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/all_access,
+/obj/machinery/icecream_vat{
+ desc = "Waffle Corp. actually ordered these guys to steal one of these just to be sure."
+ },
+/turf/open/floor/plating,
+/area/ruin/space/has_grav/infested_frigate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ie" = (
/obj/structure/showcase/machinery{
icon_state = "autolathe";
@@ -2475,6 +2487,7 @@
/obj/machinery/computer/operating,
/turf/open/floor/pod/dark,
/area/ruin/space/has_grav/infested_frigate)
+<<<<<<< HEAD
"NW" = (
/obj/structure/cable,
/obj/machinery/airalarm/directional/north,
@@ -2484,6 +2497,8 @@
},
/turf/open/floor/plating,
/area/ruin/space/has_grav/infested_frigate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"NX" = (
/obj/structure/table/glass,
/obj/effect/decal/cleanable/glass,
@@ -3373,7 +3388,11 @@ fl
wP
EQ
wP
+<<<<<<< HEAD
NW
+=======
+hX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SM
ME
KT
diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
index ec4126fafe5..3162898f725 100644
--- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm
+++ b/_maps/RandomRuins/SpaceRuins/oldstation.dmm
@@ -45,6 +45,7 @@
"ak" = (
/turf/closed/wall/rust,
/area/ruin/space/ancientstation/charlie/bridge)
+<<<<<<< HEAD
"al" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/computer/monitor,
@@ -54,6 +55,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ao" = (
/obj/structure/alien/weeds,
/mob/living/basic/alien/drone,
@@ -341,6 +344,7 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/beta/mining)
+<<<<<<< HEAD
"bH" = (
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line{
@@ -355,6 +359,8 @@
},
/turf/open/floor/plating,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bJ" = (
/turf/closed/wall,
/area/ruin/space/ancientstation/beta/atmos)
@@ -431,6 +437,21 @@
/obj/structure/sign/poster/official/science,
/turf/closed/wall/rust,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
+=======
+"cd" = (
+/obj/machinery/door/airlock/command{
+ name = "Beta Station Access"
+ },
+/obj/machinery/door/poddoor{
+ id = "ancient"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ce" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/rack,
@@ -730,6 +751,7 @@
/obj/structure/alien/weeds,
/turf/open/floor/iron/dark,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
"dg" = (
/obj/machinery/door/airlock/science{
name = "Biolab"
@@ -746,10 +768,25 @@
/obj/effect/mapping_helpers/airlock/access/all/away/general,
/turf/open/floor/iron/white/textured_large,
/area/ruin/space/ancientstation/delta/biolab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
+=======
+"dj" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/beta/mining)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dk" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -917,6 +954,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
"dW" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/light_switch/directional/west{
@@ -925,6 +963,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/engine/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dX" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -981,11 +1021,34 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/bridge)
+<<<<<<< HEAD
+=======
+"el" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"em" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+<<<<<<< HEAD
+=======
+"en" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eo" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
@@ -1292,12 +1355,15 @@
/obj/machinery/light/small/broken/directional/east,
/turf/open/floor/iron/dark,
/area/ruin/space/ancientstation/delta/ai)
+<<<<<<< HEAD
"fy" = (
/obj/machinery/atmospherics/components/unary/airlock_pump{
dir = 1
},
/turf/open/floor/iron/dark/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fE" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -1718,6 +1784,14 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/hydro)
+<<<<<<< HEAD
+=======
+"hJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hM" = (
/obj/structure/sign/departments/science,
/turf/closed/wall,
@@ -1739,6 +1813,7 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+<<<<<<< HEAD
"hR" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm/directional/south,
@@ -1750,6 +1825,10 @@
/area/ruin/space/ancientstation/beta/supermatter)
"hS" = (
/obj/effect/decal/cleanable/dirt,
+=======
+"hS" = (
+/obj/effect/decal/cleanable/dirt,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
/turf/open/floor/iron/white,
/area/ruin/space/ancientstation/delta/rnd)
@@ -1799,6 +1878,30 @@
/obj/machinery/duct,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/hall)
+<<<<<<< HEAD
+=======
+"ib" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/command{
+ name = "Delta Station Access"
+ },
+/obj/machinery/door/poddoor{
+ id = "ancient"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ic" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/transit_tube_pod{
@@ -2040,6 +2143,7 @@
},
/turf/open/floor/iron/airless,
/area/ruin/space/ancientstation/beta/hall)
+<<<<<<< HEAD
"iS" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
@@ -2048,6 +2152,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/engine/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iU" = (
/obj/machinery/power/terminal{
dir = 4
@@ -2076,6 +2182,13 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/rnd)
+<<<<<<< HEAD
+=======
+"iY" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jc" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -2166,6 +2279,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/hall)
+<<<<<<< HEAD
"jy" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small/directional/east,
@@ -2184,6 +2298,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jB" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -2904,6 +3020,22 @@
},
/turf/open/floor/plating,
/area/ruin/space/ancientstation/beta/mining)
+<<<<<<< HEAD
+=======
+"mB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/mining)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mC" = (
/turf/closed/wall/rust,
/area/ruin/space/ancientstation/charlie/storage)
@@ -2961,6 +3093,14 @@
/obj/machinery/mineral/processing_unit_console,
/turf/closed/wall,
/area/ruin/space/ancientstation/beta/mining)
+<<<<<<< HEAD
+=======
+"mP" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/dark/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -3034,6 +3174,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/beta/hall)
+<<<<<<< HEAD
"nc" = (
/obj/structure/cable,
/obj/effect/decal/cleanable/dirt,
@@ -4372,6 +4513,9 @@
/area/ruin/space/ancientstation/charlie/hall)
"wi" = (
/obj/effect/decal/cleanable/dirt,
+=======
+"nb" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/airlock/command{
name = "Charlie Station Access"
},
@@ -4740,6 +4884,7 @@
"zf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
+<<<<<<< HEAD
/turf/open/floor/iron/white,
/area/ruin/space/ancientstation/delta/rnd)
"zi" = (
@@ -4764,6 +4909,1919 @@
/turf/open/floor/plating,
/area/ruin/space/ancientstation/beta/atmos)
"zn" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Gravity Generator"
+ },
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+<<<<<<< HEAD
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"zp" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"zr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random/dead,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"zt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"zw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"zy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"zA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"zC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"zI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white/textured_corner{
+ dir = 8
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"zJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"zL" = (
+/turf/closed/mineral/random,
+/area/ruin/space/ancientstation/delta/hall)
+"zS" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/template_noop,
+/area/space/nearstation)
+"zU" = (
+=======
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"nc" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"nd" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/command{
+ name = "Delta Station Access"
+ },
+/obj/machinery/door/poddoor{
+ id = "ancient"
+ },
+/obj/effect/decal/cleanable/dirt,
+<<<<<<< HEAD
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"Aa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"Ab" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"Ac" = (
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"Ae" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"Af" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"Al" = (
+/turf/closed/mineral/iron,
+/area/space/nearstation)
+"Ao" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"Ar" = (
+/obj/structure/transit_tube_pod{
+ dir = 4;
+ anchored = 0
+ },
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/template_noop,
+/area/space/nearstation)
+"Au" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+=======
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"nf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"nk" = (
+/turf/closed/wall,
+/area/ruin/space/ancientstation/charlie/dorms)
+"np" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"nr" = (
+/obj/item/stack/rods,
+/turf/template_noop,
+/area/template_noop)
+"ns" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"ny" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"nz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"nA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/trinary/mixer/airmix{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"nB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"nD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/optable,
+/obj/machinery/light_switch/directional/east,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/airless,
+/area/ruin/space/ancientstation/beta/medbay)
+"nG" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/table,
+/obj/machinery/door/window/brigdoor/right/directional/east,
+/obj/item/computer_disk,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/ai)
+"nI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/science,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/closed,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"nJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Backup Generator Room"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/storage)
+"nK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"nL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/alien/weeds,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/hall)
+"nN" = (
+/obj/effect/decal/cleanable/dirt,
+/mob/living/basic/alien/drone,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"nO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/bridge)
+"nP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"nS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"nT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/pipedispenser,
+/turf/open/floor/iron/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"nU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"nX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/xenoblood,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"ob" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/photosynthetic,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"oc" = (
+/obj/machinery/door/airlock/science,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/closed,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"oe" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"of" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical/old,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"og" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"oh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/washing_machine,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"ok" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"ol" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/closed,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"oq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/xenoblood/xgibs/larva/body,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"ou" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/xenoblood/xgibs/up,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"oy" = (
+/obj/structure/table,
+/obj/item/tank/internals/oxygen,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/tank/internals/oxygen,
+/obj/item/clothing/mask/breath,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"oz" = (
+/obj/machinery/light/small/directional/east,
+/obj/item/kirbyplants/random/dead,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hydro)
+"oB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/iron/airless,
+/area/ruin/space/ancientstation/beta/medbay)
+"oD" = (
+/obj/effect/decal/cleanable/xenoblood/xgibs/core,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"oE" = (
+/obj/item/stack/rods,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/airless,
+/area/ruin/space/ancientstation/beta/medbay)
+"oF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/airless,
+/area/ruin/space/ancientstation/beta/medbay)
+"oH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/xenoblood/xgibs/core,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"oL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"oM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/item/stack/rods,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"oP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"oQ" = (
+/obj/structure/cable,
+/obj/item/shard{
+ icon_state = "small"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"oR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"oS" = (
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"oU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/xenoblood/xgibs/up,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"oV" = (
+/obj/item/stack/rods,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"oX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random/dead,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"oZ" = (
+/obj/item/shard{
+ icon_state = "small"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"pc" = (
+/obj/item/kirbyplants/random/dead,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"pi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"pj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/rods,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"pk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"pn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"pp" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"pq" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"pD" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"pF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"pI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer/apc_control/away,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"pK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/textured_edge{
+ dir = 4
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"pP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/south,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/tank_holder/oxygen/yellow,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/mining)
+"pR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"pV" = (
+/obj/machinery/light/broken/directional/south,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/ruin/space/ancientstation/delta/rnd)
+"pW" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/alien/weeds,
+/obj/machinery/light/small/broken/directional/west,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/ai)
+"qc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hydro)
+"qf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/proto)
+"qh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/mining)
+"ql" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"qo" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"qr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/soap/nanotrasen,
+/obj/item/coin,
+/obj/item/coin,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/bridge)
+"qt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"qx" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"qF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/ruin/space/ancientstation/beta/atmos)
+"qK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/delta/hall)
+"qL" = (
+/obj/structure/alien/weeds/node,
+/obj/machinery/light/small/broken/directional/east,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/ai)
+"qM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"qQ" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/dark/airless,
+/area/ruin/space/ancientstation/charlie/engie)
+"rc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/energy_accumulator/grounding_rod,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/supermatter)
+"rf" = (
+/obj/machinery/door/firedoor,
+/obj/structure/broken_flooring/singular/directional/east,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"rh" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"rl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured_large,
+/area/ruin/space/ancientstation/delta/biolab)
+"rm" = (
+/turf/closed/mineral/random,
+/area/ruin/space/ancientstation/beta/supermatter)
+"rn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hydro)
+"rp" = (
+/turf/closed/wall/r_wall,
+/area/ruin/space/ancientstation/delta/biolab)
+"rq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"rt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/effect/mapping_helpers/damaged_window,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/biolab)
+"rv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"rw" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/engine/n2,
+/area/ruin/space/ancientstation/beta/atmos)
+"rC" = (
+/obj/effect/decal/cleanable/blood/xtracks{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/engine,
+/area/ruin/space/ancientstation/delta/biolab)
+"rG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/gravity_generator/main/off,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"rJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"rL" = (
+/obj/machinery/atmospherics/components/unary/airlock_pump,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/beta/mining)
+"rN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle{
+ pixel_x = 4;
+ list_reagents = list(/datum/reagent/growthserum=30);
+ name = "Experimental solution";
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/cup/bottle{
+ pixel_x = -4;
+ list_reagents = list(/datum/reagent/consumable/nutriment/peptides=30);
+ name = "Solution for Molly"
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/textured_edge,
+/area/ruin/space/ancientstation/delta/biolab)
+"rP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/gravity)
+"rQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/iron/fifty,
+/obj/machinery/light/small/directional/east,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/delta/hall)
+"rR" = (
+/obj/effect/decal/cleanable/generic,
+/obj/item/stack/rods,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"rT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/insectguts,
+/turf/open/floor/iron/white/textured_large,
+/area/ruin/space/ancientstation/delta/biolab)
+"rU" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"rY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"si" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"sk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair,
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/proto)
+"ss" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=charlie-2";
+ location = "charlie-1"
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"st" = (
+/obj/machinery/washing_machine,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/obj/structure/noticeboard/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"sv" = (
+/obj/item/kirbyplants/fern,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/biolab)
+"sw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/gun/energy/laser/retro/old{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"sx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 1
+ },
+/mob/living/basic/alien,
+/obj/structure/cable,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"sA" = (
+/turf/closed/wall,
+/area/ruin/space/ancientstation/beta/gravity)
+"sJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/kitchen/directional/west{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ has_water_reclaimer = 0
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"sL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"sM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/old{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"sP" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/beta/hall)
+"sR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/emitter{
+ dir = 8;
+ active = 1;
+ welded = 1;
+ anchored = 1
+ },
+/obj/structure/window/plasma/spawner/directional/west{
+ anchored = 0
+ },
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"sZ" = (
+/obj/machinery/conveyor{
+ id = "beta"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/mining)
+"tc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/mining)
+"td" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"tf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/proto)
+"tm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/effect/mapping_helpers/damaged_window,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"tv" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/hall)
+"tz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"tB" = (
+/obj/structure/transit_tube{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"tC" = (
+/turf/closed/mineral/gold,
+/area/space/nearstation)
+"tF" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"tH" = (
+/obj/structure/transit_tube{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"tJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"tS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/highsecurity,
+/obj/machinery/door/firedoor,
+/obj/structure/alien/weeds,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "oldstation-aisat"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/hall)
+"tT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/frame/machine,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"tW" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "oldstation_rnd"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/rnd)
+"tZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/food/pie_smudge,
+/obj/item/plate_shard,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"ua" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/old,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"uj" = (
+/turf/closed/wall/r_wall,
+/area/ruin/space/ancientstation/delta/proto)
+"um" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/shard,
+/obj/effect/decal/cleanable/blood/xtracks{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron/white/textured_edge{
+ dir = 1
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"un" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"uo" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/obj/item/light/tube/broken,
+/turf/open/floor/iron/white/textured_edge{
+ dir = 1
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"up" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"ur" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/suit_storage_unit/void_old/jetpack,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/mining)
+"uv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/sign/warning/chem_diamond/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"uw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"ux" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/beta/hall)
+"uy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"uB" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"uI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/turf/open/floor/iron/white/textured_edge{
+ dir = 4
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"uO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"uR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"uS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/bin,
+/obj/effect/spawner/random/trash/garbage,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"uT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/assembly/flash/handheld,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"uX" = (
+/obj/item/shard,
+/obj/item/stack/rods,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/broken_flooring/corner/directional/east,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/dorms)
+"uY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"uZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white/textured_corner{
+ dir = 1
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"vh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/item/tank/internals/oxygen{
+ pixel_x = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"vk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/shard/plasma,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"vn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/hydroponics/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hydro)
+"vq" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"vs" = (
+/obj/machinery/light/small/red/directional/east,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/charlie/engie)
+"vv" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/mineral/silver{
+ amount = 25
+ },
+/obj/item/stack/sheet/mineral/gold{
+ amount = 25
+ },
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"vy" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/space/ancientstation/delta/biolab)
+"vD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"vJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"vL" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle/iodine{
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/cup/bottle/iron{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/cup/bottle/lithium{
+ pixel_x = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"vO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"vS" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle/silver{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/cup/bottle/sodium{
+ pixel_x = -6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"vU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"vY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/ash,
+/obj/structure/cable,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"wa" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/gravity)
+"wb" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"wi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/command{
+ name = "Charlie Station Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"wl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random/dead,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/bridge)
+"wm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/atmos)
+"wn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/decal/remains/human,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"wo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"wp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"wr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/mob/living/basic/alien/drone,
+/obj/machinery/duct,
+/obj/machinery/light/broken/directional/south,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"wt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/old{
+ dir = 1
+ },
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/proto)
+"ww" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/spawner/random/trash/garbage,
+/obj/effect/spawner/random/trash/garbage,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/bridge)
+"wx" = (
+/turf/closed/wall,
+/area/ruin/space/ancientstation/delta/rnd)
+"wz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"wC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"wD" = (
+/turf/closed/mineral/uranium,
+/area/space/nearstation)
+"wE" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Supermatter Chamber"
+ },
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"wJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/old{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"wK" = (
+/obj/machinery/computer/pandemic{
+ machine_stat = 1
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/textured_edge,
+/area/ruin/space/ancientstation/delta/biolab)
+"wL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"wO" = (
+/obj/machinery/hydroponics/soil,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/grass,
+/area/ruin/space/ancientstation/charlie/hydro)
+"wP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/light/broken/directional/north,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"wR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/airlock_pump{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/charlie/engie)
+"wS" = (
+/obj/item/stack/rods,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"xd" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/folder/white,
+/obj/item/reagent_containers/cup/beaker,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"xi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/snack,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"xr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"xs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=delta-2";
+ location = "delta-1"
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"xx" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"xz" = (
+/obj/machinery/duct,
+/obj/structure/curtain,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/charlie/hall)
+"xF" = (
+/obj/structure/transit_tube{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/effect/mapping_helpers/damaged_window,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/hall)
+"xH" = (
+/obj/effect/decal/cleanable/generic,
+/obj/structure/cable,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"xM" = (
+/obj/machinery/door/window/right/directional/east{
+ req_access = list("away_general")
+ },
+/turf/open/floor/engine,
+/area/ruin/space/ancientstation/delta/biolab)
+"xT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/broken_flooring/corner/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"xW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/enzyme,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"xY" = (
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/poddoor{
+ id = "Beta Secure Storage";
+ name = "Secure Storage"
+ },
+/turf/open/floor/iron/textured_large,
+/area/ruin/space/ancientstation/beta/supermatter)
+"yc" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/medbay)
+"ye" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"yk" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Air to Distro"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/hall)
+"yq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/sign/warning/vacuum/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"yr" = (
+/obj/structure/sign/warning/biohazard,
+/turf/closed/wall/rust,
+/area/ruin/space/ancientstation/delta/biolab)
+"yu" = (
+/obj/machinery/door/airlock/engineering/glass,
+/obj/machinery/door/poddoor{
+ id = "ancient"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"yw" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/broken_flooring/pile/directional/north,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"yx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"yF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"yG" = (
+/obj/machinery/door/airlock/science/glass,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"yQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/plasma/spawner/directional/south,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"yS" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"yZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/broken/directional/east,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"ze" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/autolathe,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"zf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"zi" = (
+/obj/item/kirbyplants/random/dead,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/light/small/broken/directional/west,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/airless,
+/area/ruin/space/ancientstation/beta/medbay)
+"zj" = (
+/obj/machinery/door/airlock/science{
+ name = "Biolab"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/closed,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/white/textured_large,
+/area/ruin/space/ancientstation/delta/biolab)
+"zm" = (
+/obj/machinery/door/window/brigdoor/right/directional/west{
+ name = "Plasma Canister Storage"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/atmos)
+"zn" = (
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator"
},
@@ -4863,27 +6921,24 @@
},
/turf/template_noop,
/area/space/nearstation)
-"zU" = (
+"zX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/command{
- name = "Delta Station Access"
- },
-/obj/machinery/door/poddoor{
- id = "ancient"
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable,
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+/obj/effect/turf_decal/tile/yellow{
dir = 4
},
-/obj/machinery/duct,
-/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable,
/turf/open/floor/iron,
-/area/ruin/space/ancientstation/charlie/hall)
+/area/ruin/space/ancientstation/charlie/engie)
+"zZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
"Aa" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -4945,6 +7000,7 @@
"Au" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
@@ -5009,6 +7065,7 @@
/obj/structure/tank_dispenser/plasma,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/beta/atmos)
+<<<<<<< HEAD
"AO" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -5019,6 +7076,8 @@
/obj/structure/sign/warning/vacuum/directional/west,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"AT" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -5119,6 +7178,18 @@
/obj/machinery/light/directional/south,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/beta/hall)
+<<<<<<< HEAD
+=======
+"By" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/monitor,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Bz" = (
/turf/open/floor/plating/airless,
/area/ruin/space/ancientstation/beta/hall)
@@ -5157,6 +7228,14 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/ruin/space/ancientstation/delta/rnd)
+<<<<<<< HEAD
+=======
+"BP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BR" = (
/obj/machinery/shower/directional/west{
has_water_reclaimer = 0
@@ -5176,6 +7255,7 @@
/obj/item/ammo_box/strilka310,
/turf/open/floor/plating,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
"BT" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
dir = 10
@@ -5183,6 +7263,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/catwalk_floor/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Cc" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -5404,6 +7486,110 @@
/obj/effect/decal/cleanable/blood/tracks,
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
cycle_id = "oldstation-aisat"
+<<<<<<< HEAD
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/hall)
+"DJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"DK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/fluff/broken_canister_frame,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"DM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mop_bucket/janitorialcart{
+ dir = 4
+ },
+/obj/item/reagent_containers/cup/bucket,
+/obj/item/mop,
+/obj/item/storage/bag/trash/filled,
+/turf/open/floor/plating/rust{
+ initial_gas_mix = "co2=6;o2=16;n2=82;TEMP=293.15"
+ },
+/area/ruin/space/ancientstation/delta/hall)
+"DQ" = (
+/obj/item/kirbyplants/fern,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/biolab)
+"DX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/effect/mapping_helpers/damaged_window,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/dorms)
+"Eg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"Eh" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/blood/tracks,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"Ei" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"Ej" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/plating{
+ initial_gas_mix = "co2=6;o2=16;n2=82;TEMP=293.15"
+ },
+/area/ruin/space/ancientstation/delta/hall)
+"El" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/shard,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"En" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"EB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"ED" = (
+/obj/structure/transit_tube{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/hall)
+"EE" = (
+=======
},
/obj/effect/mapping_helpers/airlock/access/all/away/general,
/turf/open/floor/iron/dark,
@@ -5530,6 +7716,583 @@
/obj/machinery/duct,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+"EI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"EP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"ES" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/energy_accumulator/tesla_coil,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/supermatter)
+"EW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 8
+ },
+/obj/structure/sign/departments/medbay/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"EX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/navbeacon{
+ location = "delta-0";
+ codes_txt = "patrol;next_patrol=delta-1"
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"Fa" = (
+/obj/structure/sink/directional/west{
+ has_water_reclaimer = 0
+ },
+/obj/structure/mirror/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/charlie/hall)
+"Fd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"Fi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/space_heater,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/delta/hall)
+"Fm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/tank/internals/oxygen{
+ pixel_y = -8;
+ pixel_x = 8
+ },
+/obj/item/tank/internals/oxygen{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"Fo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/rods,
+/obj/item/trash/sosjerky{
+ pixel_y = 9;
+ pixel_x = -6
+ },
+/turf/open/floor/plating/rust{
+ initial_gas_mix = "co2=6;o2=16;n2=82;TEMP=293.15"
+ },
+/area/ruin/space/ancientstation/delta/hall)
+"Fr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"Ft" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/vatgrower,
+/turf/open/floor/engine,
+/area/ruin/space/ancientstation/delta/biolab)
+"Fv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/dorms)
+"Fw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"Fz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/rods,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"FJ" = (
+/obj/structure/alien/weeds,
+/obj/machinery/light/small/broken/directional/west,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/ai)
+"FK" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/iron{
+ amount = 50
+ },
+/obj/item/stack/sheet/iron{
+ amount = 25
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/stack/sheet/glass{
+ amount = 25
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/hall)
+"FM" = (
+/obj/structure/transit_tube{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/template_noop,
+/area/space/nearstation)
+"FN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/wrench,
+/obj/item/wirecutters,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/mapping_helpers/apc/no_charge,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/apc/unlocked,
+/obj/effect/mapping_helpers/apc/away_general_access,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/storage)
+"FP" = (
+/obj/item/shard/plasma{
+ icon_state = "plasmasmall"
+ },
+/obj/effect/decal/cleanable/glass/plasma,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"FR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"FV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"FX" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "oldstation_rnd"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/rnd)
+"FY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"Ga" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/food/flour,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"Gd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 25
+ },
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/charlie/hall)
+"Gf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/structure/sign/poster/official/no_erp/directional/west,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/charlie/hall)
+"Gi" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2{
+ dir = 4
+ },
+/obj/structure/sign/warning/no_smoking/circle/directional/east,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/atmos)
+"Go" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/ruin/space/ancientstation/delta/biolab)
+"Gr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/firecloset/full,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"Gt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/engie)
+"Gv" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/proto)
+"Gz" = (
+/turf/closed/wall/rust,
+/area/ruin/space/ancientstation/delta/hall)
+"GA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/components/binary/tank_compressor{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"GH" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"GJ" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"GK" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Storage Room"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/hall)
+"GN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"GX" = (
+/turf/closed/wall/rust,
+/area/ruin/space/ancientstation/delta/biolab)
+"GY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"Hf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/mining)
+"Hj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"Hk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/iron/white,
+/area/ruin/space/ancientstation/delta/rnd)
+"Hl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Prototype Laboratory"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side,
+/area/ruin/space/ancientstation/delta/proto)
+"Hp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 9
+ },
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=charlie-0";
+ location = "charlie-3"
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hall)
+"Hr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/card/id/away/old/robo,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating{
+ initial_gas_mix = "co2=6;o2=16;n2=82;TEMP=293.15"
+ },
+/area/ruin/space/ancientstation/delta/hall)
+"Hw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/diagonal,
+/area/ruin/space/ancientstation/beta/gravity)
+"HA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/atmos)
+"HC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/machinery/button/door/directional/south{
+ name = "Research Shutters Control";
+ id = "oldstation_rnd"
+ },
+/obj/structure/table,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stack/cable_coil,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"HE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor/closed,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"HG" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/hall)
+"HK" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/template_noop,
+/area/space/nearstation)
+"HL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general,
+/obj/machinery/meter,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/away_general_access,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/charlie/hall)
+"HN" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/paper/fluff/ruins/oldstation/biolab_note_emergency{
+ pixel_x = 8;
+ pixel_y = 13
+ },
+/obj/effect/decal/remains/human{
+ pixel_x = 9
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured_edge{
+ dir = 8
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"HQ" = (
+/obj/structure/transit_tube{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/duct,
+/turf/template_noop,
+/area/space/nearstation)
+"HT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/textured_edge{
+ dir = 4
+ },
+/area/ruin/space/ancientstation/delta/biolab)
+"Ib" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/structure/closet/crate/bin,
+/obj/effect/spawner/random/trash/garbage,
+/obj/effect/spawner/random/trash/garbage,
+/obj/effect/spawner/random/trash/garbage,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+"Ic" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured,
+/area/ruin/space/ancientstation/delta/proto)
+"Ie" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/sign/departments/aisat/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"Ij" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/hall)
+"Ik" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/rust,
+/area/ruin/space/ancientstation/delta/hall)
+"Im" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light_switch/directional/west{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"Ip" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kitchen/fork{
+ pixel_y = 10;
+ pixel_x = 9
+ },
+/turf/open/floor/iron/cafeteria,
+/area/ruin/space/ancientstation/charlie/kitchen)
+"Is" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters{
+ id = "oldstation_rnd"
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/delta/rnd)
+"Iu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Prototype Laboratory"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white/side,
+/area/ruin/space/ancientstation/delta/proto)
+"Ix" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/hall)
+"Iy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+<<<<<<< HEAD
+/obj/structure/sign/departments/custodian/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"EF" = (
+/obj/machinery/door/airlock/command{
+ name = "Charlie Station Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
"EP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
@@ -6140,6 +8903,71 @@
/area/ruin/space/ancientstation/beta/supermatter)
"IV" = (
/obj/effect/decal/cleanable/dirt,
+=======
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/beta/hall)
+"IB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/hydro)
+"IC" = (
+/obj/machinery/door/airlock/science/glass,
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/rnd)
+"IM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/sec)
+"IP" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/delta/hall)
+"IT" = (
+/obj/machinery/power/solar,
+/obj/structure/cable,
+/turf/open/floor/iron/solarpanel/airless,
+/area/ruin/space/solars/ancientstation/charlie/solars)
+"IU" = (
+/obj/structure/closet/crate/engineering,
+/obj/item/circuitboard/machine/smes,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/obj/item/stock_parts/capacitor,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/circuitboard/machine/thermomachine,
+/obj/item/circuitboard/machine/thermomachine,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/beta/supermatter)
+"IV" = (
+/obj/effect/decal/cleanable/dirt,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/blood/tracks{
dir = 4
@@ -6335,6 +9163,15 @@
/obj/effect/spawner/random/maintenance/three,
/turf/open/floor/plating,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
+=======
+"JR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor,
+/area/ruin/space/ancientstation/delta/hall)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"JT" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -6444,11 +9281,14 @@
/obj/item/storage/backpack/duffelbag/sec,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/dorms)
+<<<<<<< HEAD
"Kt" = (
/obj/machinery/door/airlock/external/glass/ruin,
/obj/effect/mapping_helpers/airlock/access/all/away/general,
/turf/open/floor/iron/dark/airless,
/area/ruin/space/ancientstation/delta/hall)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ku" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -6538,12 +9378,15 @@
/obj/item/paper/guides/jobs/engi/gravity_gen,
/turf/open/floor/iron/diagonal,
/area/ruin/space/ancientstation/beta/gravity)
+<<<<<<< HEAD
"KW" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/catwalk_floor,
/area/ruin/space/ancientstation/delta/hall)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"KX" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -6553,12 +9396,15 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
/area/ruin/space/ancientstation/beta/hall)
+<<<<<<< HEAD
"Lb" = (
/obj/machinery/door/airlock/external/glass/ruin,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/ruin/space/ancientstation/delta/hall)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Lc" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -6583,22 +9429,37 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
"Lg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
/obj/machinery/door/airlock/external/glass/ruin,
+=======
+"Lh" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/engine/o2,
+/area/ruin/space/ancientstation/beta/atmos)
+"Li" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
dir = 6
},
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
dir = 5
},
+<<<<<<< HEAD
/turf/open/floor/iron/dark,
/area/ruin/space/ancientstation/charlie/engie)
"Lh" = (
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/engine/o2,
/area/ruin/space/ancientstation/beta/atmos)
+=======
+/turf/open/floor/catwalk_floor,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Lm" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -6712,6 +9573,7 @@
/obj/effect/decal/cleanable/generic,
/turf/open/floor/iron/white/textured_large,
/area/ruin/space/ancientstation/delta/biolab)
+<<<<<<< HEAD
"LO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/door/airlock/command{
@@ -6732,6 +9594,8 @@
/obj/effect/mapping_helpers/airlock/access/all/away/general,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/hall)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"LS" = (
/obj/structure/table,
/obj/item/stack/sheet/glass,
@@ -6801,11 +9665,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/hall)
+<<<<<<< HEAD
"Mh" = (
/obj/machinery/door/airlock/external/glass/ruin,
/obj/effect/mapping_helpers/airlock/access/all/away/general,
/turf/open/floor/iron/dark/airless,
/area/ruin/space/ancientstation/beta/mining)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Mr" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -6927,6 +9794,17 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/plating,
/area/ruin/space/ancientstation/beta/supermatter)
+<<<<<<< HEAD
+=======
+"Ni" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/safety_internals/directional/north,
+/obj/machinery/atmospherics/components/unary/airlock_pump{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/hall)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Np" = (
/obj/effect/decal/cleanable/blood/xtracks{
dir = 10
@@ -6941,6 +9819,7 @@
/obj/structure/window/plasma/spawner/directional/west,
/turf/open/floor/engine/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+<<<<<<< HEAD
"Nu" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
@@ -6954,6 +9833,11 @@
"Nx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
+=======
+"Nx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/door/firedoor,
@@ -6980,12 +9864,27 @@
/obj/structure/table_frame,
/turf/open/floor/iron/airless,
/area/ruin/space/ancientstation/beta/medbay)
+<<<<<<< HEAD
"ND" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/atmospherics/components/unary/portables_connector/layer4{
dir = 1
},
+=======
+"NC" = (
+/obj/machinery/atmospherics/components/unary/airlock_pump{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"ND" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/components/unary/portables_connector/layer4{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/blue/half/contrasted,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -7038,6 +9937,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/textured_half,
/area/ruin/space/ancientstation/beta/supermatter)
+<<<<<<< HEAD
"NV" = (
/obj/machinery/door/airlock/command{
name = "Beta Station Access"
@@ -7057,6 +9957,8 @@
/obj/effect/mapping_helpers/airlock/access/all/away/general,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/hall)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"NW" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor{
@@ -7239,11 +10141,14 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/iron/white/textured,
/area/ruin/space/ancientstation/delta/proto)
+<<<<<<< HEAD
"Pa" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/engine/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Pd" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -7275,6 +10180,14 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/sec)
+<<<<<<< HEAD
+=======
+"Po" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/dark/airless,
+/area/ruin/space/ancientstation/delta/hall)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Pq" = (
/obj/machinery/door/airlock/science,
/obj/effect/decal/cleanable/dirt,
@@ -7506,15 +10419,19 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/rnd)
+<<<<<<< HEAD
"QW" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"QZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+<<<<<<< HEAD
"Re" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -7523,6 +10440,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+=======
+"Rd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Rf" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -7548,6 +10479,7 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
"Rs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -7556,6 +10488,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Rv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -7783,6 +10717,23 @@
"Td" = (
/turf/closed/mineral/random,
/area/ruin/space/ancientstation/beta/hall)
+<<<<<<< HEAD
+=======
+"Tf" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Tg" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -7816,6 +10767,7 @@
/obj/structure/sign/warning/electric_shock/directional/south,
/turf/open/floor/plating,
/area/ruin/space/ancientstation/charlie/storage)
+<<<<<<< HEAD
"Tn" = (
/obj/machinery/light/small/directional/south,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
@@ -7835,6 +10787,19 @@
pixel_y = 8;
pixel_x = 2
},
+=======
+"Tq" = (
+/obj/structure/alien/weeds,
+/obj/machinery/light/small/broken/directional/east,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/ai)
+"Tr" = (
+/obj/structure/table/glass,
+/obj/structure/closet/mini_fridge/grimy{
+ pixel_y = 8;
+ pixel_x = 2
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/petri_dish/oldstation,
/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
dir = 1
@@ -7950,6 +10915,7 @@
/obj/structure/cable,
/turf/open/floor/iron/solarpanel/airless,
/area/ruin/space/solars/ancientstation/charlie/solars)
+<<<<<<< HEAD
"Uc" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -7980,6 +10946,31 @@
"Un" = (
/obj/item/stack/rods,
/obj/effect/decal/cleanable/dirt,
+=======
+"Ui" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/delta/hall)
+"Uj" = (
+/obj/structure/girder,
+/turf/closed/mineral/random,
+/area/ruin/space/ancientstation/beta/hall)
+"Ul" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass/plasma,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+"Un" = (
+/obj/item/stack/rods,
+/obj/effect/decal/cleanable/dirt,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/broken_flooring/pile/directional/south,
/turf/open/floor/plating,
/area/ruin/space/ancientstation/charlie/dorms)
@@ -8002,6 +10993,18 @@
/obj/item/soap/nanotrasen,
/turf/open/floor/iron/white,
/area/ruin/space/ancientstation/charlie/hall)
+<<<<<<< HEAD
+=======
+"Us" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/turf/open/floor/catwalk_floor,
+/area/ruin/space/ancientstation/beta/mining)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Uu" = (
/turf/closed/mineral/plasma,
/area/space/nearstation)
@@ -8027,6 +11030,18 @@
"UJ" = (
/turf/open/floor/iron/white/textured,
/area/ruin/space/ancientstation/delta/proto)
+<<<<<<< HEAD
+=======
+"UN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"UP" = (
/turf/closed/mineral/random,
/area/space/nearstation)
@@ -8094,6 +11109,7 @@
/obj/machinery/griddle,
/turf/open/floor/iron/cafeteria,
/area/ruin/space/ancientstation/charlie/kitchen)
+<<<<<<< HEAD
"Vq" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -8106,6 +11122,8 @@
},
/turf/open/floor/plating,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Vw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -8160,6 +11178,14 @@
},
/turf/open/floor/engine/airless,
/area/ruin/space/ancientstation/beta/supermatter)
+<<<<<<< HEAD
+=======
+"VU" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/mapping_helpers/airlock/access/all/away/general,
+/turf/open/floor/iron/dark/airless,
+/area/ruin/space/ancientstation/beta/mining)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"VV" = (
/turf/open/floor/plating,
/area/ruin/space/ancientstation/delta/hall)
@@ -8167,6 +11193,21 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/engine,
/area/ruin/space/ancientstation/delta/biolab)
+<<<<<<< HEAD
+=======
+"Wa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Wd" = (
/obj/effect/decal/cleanable/blood/xtracks{
dir = 5
@@ -8182,6 +11223,19 @@
/obj/structure/lattice/catwalk,
/turf/template_noop,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"Wn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/sign/warning/vacuum/directional/west,
+/turf/open/floor/iron,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Wp" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
@@ -8309,6 +11363,7 @@
/obj/effect/mapping_helpers/apc/away_general_access,
/turf/open/floor/iron/white/textured,
/area/ruin/space/ancientstation/delta/proto)
+<<<<<<< HEAD
"Xr" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -8320,6 +11375,8 @@
},
/turf/open/floor/plating,
/area/ruin/space/ancientstation/charlie/engie)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Xs" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/transit_tube/station/reverse/flipped{
@@ -8370,6 +11427,20 @@
/obj/machinery/duct,
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
+=======
+"XJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/ruin/space/ancientstation/charlie/engie)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"XK" = (
/obj/machinery/door/airlock/atmos/glass{
name = "Station Atmospherics"
@@ -8722,6 +11793,17 @@
},
/turf/open/floor/iron,
/area/ruin/space/ancientstation/delta/hall)
+<<<<<<< HEAD
+=======
+"ZN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine/airless,
+/area/ruin/space/ancientstation/beta/supermatter)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ZP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -10588,9 +13670,15 @@ Hj
rJ
uw
wn
+<<<<<<< HEAD
Pa
dW
hR
+=======
+BP
+Im
+UN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SK
Jg
Jg
@@ -10656,7 +13744,11 @@ Hj
vY
Sk
wo
+<<<<<<< HEAD
Tn
+=======
+GJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vl
cx
cx
@@ -10722,11 +13814,19 @@ iv
Qi
ZD
Hj
+<<<<<<< HEAD
iS
xS
BT
fy
HF
+=======
+ZN
+qx
+rY
+NC
+mP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Jg
aa
aa
@@ -11292,11 +14392,19 @@ aa
aa
aa
aa
+<<<<<<< HEAD
Mh
wI
sF
tg
Uc
+=======
+VU
+rL
+Us
+dj
+mB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cm
cm
gh
@@ -11508,7 +14616,11 @@ aa
aa
eI
Ma
+<<<<<<< HEAD
qT
+=======
+qQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eI
aa
aa
@@ -11573,8 +14685,13 @@ aa
aa
aa
Ma
+<<<<<<< HEAD
QW
qH
+=======
+iY
+wR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Ma
aa
aa
@@ -11639,8 +14756,13 @@ aa
aa
aa
Ma
+<<<<<<< HEAD
uq
se
+=======
+vs
+Li
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Ma
aa
aa
@@ -11706,7 +14828,11 @@ Ma
eI
dl
eI
+<<<<<<< HEAD
Lg
+=======
+Wa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eI
Ma
eI
@@ -11768,11 +14894,19 @@ mS
jE
aa
Ma
+<<<<<<< HEAD
al
YT
fc
AO
bH
+=======
+By
+YT
+fc
+Wn
+Tf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
YM
hl
lo
@@ -11834,11 +14968,19 @@ mS
jE
dl
eI
+<<<<<<< HEAD
Ht
ju
hm
Yi
Nu
+=======
+pI
+ju
+hm
+Yi
+Gt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Yi
hm
em
@@ -11904,7 +15046,11 @@ kJ
em
fe
fE
+<<<<<<< HEAD
Vq
+=======
+Rd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fE
fe
em
@@ -11966,11 +15112,19 @@ mY
kQ
AX
em
+<<<<<<< HEAD
ue
eM
pn
fF
Xr
+=======
+hJ
+eM
+pn
+fF
+XJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wL
QZ
hP
@@ -12032,10 +15186,17 @@ mY
kQ
lJ
oP
+<<<<<<< HEAD
Rs
jy
jz
xX
+=======
+en
+zZ
+zX
+el
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kJ
WA
ho
@@ -12093,8 +15254,13 @@ aT
hi
hi
hi
+<<<<<<< HEAD
FF
NV
+=======
+cd
+nb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hi
eI
eI
@@ -12248,7 +15414,11 @@ JJ
XZ
Ga
HL
+<<<<<<< HEAD
tw
+=======
+yk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hT
aT
aa
@@ -13150,7 +16320,11 @@ aT
aT
aT
bX
+<<<<<<< HEAD
LO
+=======
+nd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bX
eJ
eJ
@@ -13166,7 +16340,11 @@ eJ
eJ
eJ
hM
+<<<<<<< HEAD
zU
+=======
+ib
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bX
aT
hi
@@ -13884,7 +17062,11 @@ zL
UP
bE
bE
+<<<<<<< HEAD
Kt
+=======
+Po
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bE
bE
hF
@@ -13950,7 +17132,11 @@ Fo
Hr
cs
Gz
+<<<<<<< HEAD
vQ
+=======
+Ni
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bE
Ac
TV
@@ -14016,7 +17202,11 @@ LH
Bu
Ej
Gz
+<<<<<<< HEAD
KW
+=======
+JR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Gz
Ac
Ik
@@ -14082,7 +17272,11 @@ XD
Gz
Gz
bE
+<<<<<<< HEAD
Lb
+=======
+Ui
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Gz
bE
Gz
@@ -14148,7 +17342,11 @@ MS
EE
cD
Dg
+<<<<<<< HEAD
Re
+=======
+EI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yq
cD
TA
@@ -15204,7 +18402,11 @@ NG
GX
GX
yr
+<<<<<<< HEAD
dg
+=======
+zj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rp
rp
rp
diff --git a/_maps/RandomRuins/SpaceRuins/the_outlet.dmm b/_maps/RandomRuins/SpaceRuins/the_outlet.dmm
index fe750bec853..464332c4637 100644
--- a/_maps/RandomRuins/SpaceRuins/the_outlet.dmm
+++ b/_maps/RandomRuins/SpaceRuins/the_outlet.dmm
@@ -85,6 +85,16 @@
},
/turf/open/floor/iron/white,
/area/ruin/space/has_grav/the_outlet/researchrooms)
+<<<<<<< HEAD
+=======
+"cL" = (
+/obj/effect/rune/apocalypse{
+ req_cultists = 999
+ },
+/obj/structure/destructible/cult/pants_altar,
+/turf/open/floor/cult,
+/area/ruin/space/has_grav/the_outlet/cultinfluence)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cZ" = (
/obj/structure/kitchenspike,
/obj/effect/decal/cleanable/blood/gibs{
@@ -548,6 +558,21 @@
/obj/item/clothing/suit/jacket/straight_jacket,
/turf/open/floor/iron/freezer,
/area/ruin/space/has_grav/the_outlet/researchrooms)
+<<<<<<< HEAD
+=======
+"oI" = (
+/obj/structure/rack,
+/obj/item/clothing/head/cowboy/brown,
+/obj/item/clothing/shoes/cowboy,
+/obj/item/clothing/under/costume/dutch,
+/obj/item/clothing/suit/costume/poncho,
+/obj/item/cigarette/cigar,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/eighties,
+/area/ruin/space/has_grav/the_outlet/storefront)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ps" = (
/obj/structure/rack,
/obj/item/clothing/under/misc/bouncer,
@@ -1017,6 +1042,7 @@
},
/turf/open/floor/iron/white,
/area/ruin/space/has_grav/the_outlet/cultinfluence)
+<<<<<<< HEAD
"zk" = (
/obj/structure/rack,
/obj/item/clothing/head/cowboy/brown,
@@ -1029,6 +1055,8 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/eighties,
/area/ruin/space/has_grav/the_outlet/storefront)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zm" = (
/obj/effect/spawner/random/vending/colavend,
/turf/open/floor/eighties,
@@ -1682,6 +1710,7 @@
/obj/effect/decal/cleanable/blood/tracks,
/turf/open/floor/iron/white,
/area/ruin/space/has_grav/the_outlet/researchrooms)
+<<<<<<< HEAD
"Ob" = (
/obj/effect/rune/apocalypse{
req_cultists = 999
@@ -1689,6 +1718,8 @@
/obj/structure/destructible/cult/pants_altar,
/turf/open/floor/cult,
/area/ruin/space/has_grav/the_outlet/cultinfluence)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Od" = (
/obj/effect/baseturf_helper/asteroid/airless,
/turf/open/floor/cult,
@@ -3430,7 +3461,11 @@ HV
xI
TM
nq
+<<<<<<< HEAD
zk
+=======
+oI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
HH
HH
Kp
@@ -3635,7 +3670,11 @@ qy
wl
RO
PE
+<<<<<<< HEAD
Ob
+=======
+cL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ML
RO
zc
diff --git a/_maps/RandomZLevels/TheBeach.dmm b/_maps/RandomZLevels/TheBeach.dmm
index 1abeb5c67e6..41fcd3280d4 100644
--- a/_maps/RandomZLevels/TheBeach.dmm
+++ b/_maps/RandomZLevels/TheBeach.dmm
@@ -102,6 +102,17 @@
"bi" = (
/turf/open/floor/iron/white/textured_large,
/area/awaymission/beach)
+"bo" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/dark/half{
+ pixel_y = -1;
+ pixel_x = 5;
+ dir = 8
+ },
+/turf/open/water/beach,
+/area/awaymission/beach)
"bx" = (
/obj/effect/turf_decal/sand,
/obj/machinery/door/airlock/wood{
@@ -355,10 +366,6 @@
},
/turf/open/floor/iron/white/textured_large,
/area/awaymission/beach)
-"fc" = (
-/obj/item/broken_bottle,
-/turf/open/misc/beach/sand,
-/area/awaymission/beach)
"fd" = (
/obj/structure/table/bronze,
/obj/structure/desk_bell{
@@ -499,6 +506,10 @@
},
/turf/closed/wall/mineral/wood,
/area/awaymission/beach)
+"gq" = (
+/obj/item/broken_bottle,
+/turf/open/misc/beach/sand,
+/area/awaymission/beach)
"gw" = (
/obj/item/stack/sheet/mineral/sandstone{
pixel_x = -8
@@ -888,17 +899,6 @@
/obj/structure/table/wood,
/turf/open/floor/wood/large,
/area/awaymission/beach)
-"lk" = (
-/obj/effect/turf_decal/siding/wood{
- dir = 9
- },
-/obj/effect/turf_decal/tile/dark/half{
- pixel_y = -1;
- pixel_x = 5;
- dir = 8
- },
-/turf/open/water/beach,
-/area/awaymission/beach)
"ll" = (
/obj/machinery/door/airlock/wood{
name = "Room 11";
@@ -1072,16 +1072,6 @@
/obj/structure/table/glass,
/turf/open/floor/wood/large,
/area/awaymission/beach)
-"nu" = (
-/obj/structure/sign/directions/dorms/directional/north{
- pixel_y = 35
- },
-/obj/structure/sign/directions/medical/directional/north{
- pixel_y = 29
- },
-/obj/machinery/computer/slot_machine,
-/turf/open/floor/wood/large,
-/area/awaymission/beach)
"nC" = (
/obj/effect/turf_decal/tile/dark_red/full,
/turf/open/floor/iron/smooth_large,
@@ -1195,6 +1185,10 @@
},
/turf/open/misc/beach/sand,
/area/awaymission/beach)
+"pq" = (
+/obj/effect/spawner/random/trash/cigbutt,
+/turf/open/misc/beach/sand,
+/area/awaymission/beach)
"pr" = (
/obj/item/reagent_containers/cup/soda_cans/space_mountain_wind{
pixel_x = -17;
@@ -1630,10 +1624,6 @@
},
/turf/open/floor/iron/dark/diagonal,
/area/awaymission/beach)
-"uK" = (
-/obj/effect/spawner/random/trash/cigbutt,
-/turf/open/misc/beach/sand,
-/area/awaymission/beach)
"uL" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -2345,11 +2335,6 @@
},
/turf/open/misc/beach/sand,
/area/awaymission/beach)
-"DS" = (
-/obj/effect/mob_spawn/corpse/human/old_pirate_captain,
-/obj/structure/bed/maint,
-/turf/open/misc/beach/sand,
-/area/awaymission/beach)
"DU" = (
/obj/structure/table/bronze,
/turf/open/misc/beach/sand,
@@ -2586,13 +2571,6 @@
},
/turf/open/misc/beach/sand,
/area/awaymission/beach)
-"FJ" = (
-/obj/item/instrument/guitar{
- pixel_y = 4;
- pixel_x = -1
- },
-/turf/open/misc/beach/coast,
-/area/awaymission/beach)
"FK" = (
/obj/item/toy/seashell{
pixel_x = 12;
@@ -2869,6 +2847,17 @@
/obj/machinery/light/directional/west,
/turf/open/floor/wood/large,
/area/awaymission/beach)
+"Jv" = (
+/obj/item/paper/fluff/old_pirate_note{
+ pixel_x = -5;
+ pixel_y = -7
+ },
+/obj/item/pen/fountain{
+ pixel_y = -11;
+ pixel_x = -8
+ },
+/turf/open/misc/beach/sand,
+/area/awaymission/beach)
"JF" = (
/obj/structure/marker_beacon/burgundy,
/turf/open/water/beach,
@@ -2973,6 +2962,13 @@
},
/turf/open/misc/beach/sand,
/area/awaymission/beach)
+"KQ" = (
+/obj/item/instrument/guitar{
+ pixel_y = 4;
+ pixel_x = -1
+ },
+/turf/open/misc/beach/coast,
+/area/awaymission/beach)
"KV" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
@@ -3270,17 +3266,6 @@
},
/turf/open/floor/iron/white/textured_large,
/area/awaymission/beach)
-"Oa" = (
-/obj/item/paper/fluff/old_pirate_note{
- pixel_x = -5;
- pixel_y = -7
- },
-/obj/item/pen/fountain{
- pixel_y = -11;
- pixel_x = -8
- },
-/turf/open/misc/beach/sand,
-/area/awaymission/beach)
"Og" = (
/obj/effect/turf_decal/siding/wood/corner,
/turf/open/floor/wood/large,
@@ -3354,6 +3339,12 @@
},
/turf/open/misc/beach/sand,
/area/awaymission/beach)
+"Pb" = (
+/obj/item/fishing_rod,
+/obj/structure/closet/crate/trashcart,
+/obj/item/reagent_containers/cup/glass/bottle/rum/aged,
+/turf/open/misc/beach/sand,
+/area/awaymission/beach)
"Pe" = (
/turf/open/misc/beach/coast{
dir = 5
@@ -3402,6 +3393,11 @@
},
/turf/open/misc/beach/sand,
/area/awaymission/beach)
+"PU" = (
+/obj/effect/mob_spawn/corpse/human/old_pirate_captain,
+/obj/structure/bed/maint,
+/turf/open/misc/beach/sand,
+/area/awaymission/beach)
"Qe" = (
/obj/effect/turf_decal/sand,
/obj/machinery/door/airlock/wood{
@@ -3418,12 +3414,6 @@
"Qg" = (
/turf/open/floor/wood/parquet,
/area/awaymission/beach)
-"Qj" = (
-/obj/item/fishing_rod,
-/obj/structure/closet/crate/trashcart,
-/obj/item/reagent_containers/cup/glass/bottle/rum/aged,
-/turf/open/misc/beach/sand,
-/area/awaymission/beach)
"Qk" = (
/obj/structure/closet/secure_closet/personal/cabinet,
/obj/item/clothing/suit/jacket/miljacket,
@@ -4026,6 +4016,16 @@
"Zp" = (
/turf/open/floor/wood/large,
/area/awaymission/beach)
+"Zs" = (
+/obj/structure/sign/directions/dorms/directional/north{
+ pixel_y = 35
+ },
+/obj/structure/sign/directions/medical/directional/north{
+ pixel_y = 29
+ },
+/obj/machinery/computer/slot_machine,
+/turf/open/floor/wood/large,
+/area/awaymission/beach)
"Zt" = (
/obj/structure/table/bronze,
/obj/item/storage/toolbox/fishing{
@@ -7445,8 +7445,8 @@ XB
XB
Vf
YV
-Qj
-fc
+Pb
+gq
hL
ni
XB
@@ -7702,8 +7702,8 @@ XB
XB
Vf
VY
-uK
-DS
+pq
+PU
Er
BK
XB
@@ -7959,7 +7959,7 @@ XB
XB
Vf
VY
-Oa
+Jv
VY
VY
BK
@@ -8217,7 +8217,7 @@ XB
Vf
IZ
VY
-uK
+pq
VY
BK
XB
@@ -13240,7 +13240,7 @@ xv
xv
xv
xv
-nu
+Zs
Zp
Zp
mb
@@ -16314,7 +16314,7 @@ vx
Bq
Xd
Ej
-lk
+bo
LC
XB
XB
@@ -29450,7 +29450,7 @@ VY
VY
Rn
VY
-FJ
+KQ
xv
CG
Gh
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index 1dce7d2ab60..857064d96aa 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -1390,10 +1390,13 @@
},
/turf/open/floor/plating,
/area/awaymission/moonoutpost19/syndicate)
+<<<<<<< HEAD
"jE" = (
/obj/effect/landmark/awaystart/moonoutpost,
/turf/open/floor/mineral/titanium/blue,
/area/awaymission/moonoutpost19/arrivals)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jH" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -1906,6 +1909,20 @@
"mr" = (
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
+<<<<<<< HEAD
+=======
+"ms" = (
+/obj/effect/landmark/awaystart/moonoutpost,
+/turf/open/floor/mineral/titanium/blue,
+/area/awaymission/moonoutpost19/arrivals)
+"mt" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/awaystart/moonoutpost,
+/turf/open/floor/mineral/titanium/blue,
+/area/awaymission/moonoutpost19/arrivals)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mu" = (
/obj/machinery/light/small/directional/east,
/obj/structure/window/reinforced/spawner/directional/north,
@@ -1947,6 +1964,23 @@
},
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
+<<<<<<< HEAD
+=======
+"mI" = (
+/obj/effect/landmark/awaystart/moonoutpost,
+/turf/open/floor/mineral/titanium/yellow,
+/area/awaymission/moonoutpost19/arrivals)
+"mJ" = (
+/obj/structure/sign/warning/vacuum{
+ desc = "A beacon used by a teleporter.";
+ icon = 'icons/obj/devices/tracker.dmi';
+ icon_state = "beacon";
+ name = "tracking beacon"
+ },
+/obj/effect/landmark/awaystart/moonoutpost,
+/turf/open/floor/mineral/titanium/yellow,
+/area/awaymission/moonoutpost19/arrivals)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mK" = (
/obj/machinery/door/airlock/titanium{
name = "Shuttle Airlock"
@@ -4584,6 +4618,7 @@
temperature = 251
},
/area/awaymission/moonoutpost19/syndicate)
+<<<<<<< HEAD
"Ei" = (
/obj/structure/sign/warning/vacuum{
desc = "A beacon used by a teleporter.";
@@ -4594,6 +4629,8 @@
/obj/effect/landmark/awaystart/moonoutpost,
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ep" = (
/turf/closed/mineral/random/labormineral,
/area/awaymission/moonoutpost19/mines)
@@ -5128,6 +5165,7 @@
},
/turf/open/floor/iron,
/area/awaymission/moonoutpost19/research)
+<<<<<<< HEAD
"HX" = (
/obj/structure/chair{
dir = 8
@@ -5135,6 +5173,8 @@
/obj/effect/landmark/awaystart/moonoutpost,
/turf/open/floor/mineral/titanium/blue,
/area/awaymission/moonoutpost19/arrivals)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"HY" = (
/obj/structure/sign/departments/science{
pixel_y = 32
@@ -7674,10 +7714,13 @@
/obj/effect/spawner/random/medical/surgery_tool,
/turf/open/misc/asteroid/moon/dug,
/area/awaymission/moonoutpost19/mines)
+<<<<<<< HEAD
"Zk" = (
/obj/effect/landmark/awaystart/moonoutpost,
/turf/open/floor/mineral/titanium/yellow,
/area/awaymission/moonoutpost19/arrivals)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Zo" = (
/turf/open/floor/pod/light,
/area/awaymission/moonoutpost19/tent)
diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/RandomZLevels/snowdin.dmm
index fb40f75070e..503741e367e 100644
--- a/_maps/RandomZLevels/snowdin.dmm
+++ b/_maps/RandomZLevels/snowdin.dmm
@@ -5231,6 +5231,22 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/awaymission/snowdin/post/custodials)
+<<<<<<< HEAD
+=======
+"sU" = (
+/obj/effect/turf_decal/weather/snow,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/machinery/computer{
+ desc = "A console meant for calling and sending a transit ferry. It seems iced-over and non-functional.";
+ dir = 4;
+ icon_screen = null;
+ name = "Shuttle Transit Console"
+ },
+/turf/open/floor/iron/dark/snowdin,
+/area/awaymission/snowdin/outside)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sX" = (
/obj/item/disk/holodisk/snowdin/ripjacob,
/obj/structure/cable,
@@ -5692,11 +5708,14 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/cavern1)
+<<<<<<< HEAD
"vv" = (
/obj/structure/table,
/obj/item/trash/waffles,
/turf/open/floor/iron/cafeteria,
/area/awaymission/snowdin/post/messhall)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vw" = (
/obj/structure/sink/directional/west,
/turf/open/floor/iron/showroomfloor,
@@ -5812,6 +5831,18 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/awaymission/snowdin/post/broken_shuttle)
+<<<<<<< HEAD
+=======
+"wc" = (
+/obj/machinery/computer{
+ desc = "A console meant for calling and sending a transit ferry. It seems iced-over and non-functional.";
+ dir = 1;
+ icon_screen = null;
+ name = "Shuttle Transit Console"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/awaymission/snowdin/post/broken_shuttle)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wd" = (
/obj/item/shard,
/obj/structure/flora/grass/both/style_random,
@@ -9689,6 +9720,7 @@
},
/turf/open/floor/iron,
/area/awaymission/snowdin/post/research)
+<<<<<<< HEAD
"OY" = (
/obj/machinery/computer{
desc = "A console meant for calling and sending a transit ferry. It seems iced-over and non-functional.";
@@ -9698,6 +9730,8 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/awaymission/snowdin/post/broken_shuttle)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"OZ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
@@ -10098,6 +10132,7 @@
/obj/item/storage/toolbox/mechanical,
/turf/open/floor/plating,
/area/awaymission/snowdin/post/dorm)
+<<<<<<< HEAD
"QW" = (
/obj/effect/turf_decal/weather/snow,
/obj/effect/turf_decal/stripes/white/line{
@@ -10111,6 +10146,8 @@
},
/turf/open/floor/iron/dark/snowdin,
/area/awaymission/snowdin/outside)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"QY" = (
/obj/structure/girder,
/obj/effect/turf_decal/weather/snow,
@@ -25007,7 +25044,11 @@ Kd
ex
fJ
gA
+<<<<<<< HEAD
vv
+=======
+hq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hW
iH
jz
diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/RandomZLevels/undergroundoutpost45.dmm
index e77200a0aca..33ebba37aa8 100644
--- a/_maps/RandomZLevels/undergroundoutpost45.dmm
+++ b/_maps/RandomZLevels/undergroundoutpost45.dmm
@@ -99,6 +99,41 @@
/obj/structure/closet/emcloset,
/obj/item/clothing/mask/breath,
/turf/open/floor/iron/dark,
+<<<<<<< HEAD
+=======
+/area/awaymission/undergroundoutpost45/central)
+"ax" = (
+/obj/effect/landmark/awaystart/underground,
+/turf/open/floor/iron,
+/area/awaymission/undergroundoutpost45/central)
+"ay" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/obj/effect/landmark/awaystart/underground,
+/turf/open/floor/iron/grimy,
+/area/awaymission/undergroundoutpost45/central)
+"az" = (
+/obj/structure/sign/warning/vacuum{
+ desc = "A beacon used by a teleporter.";
+ icon = 'icons/obj/devices/tracker.dmi';
+ icon_state = "beacon";
+ name = "tracking beacon"
+ },
+/obj/effect/landmark/awaystart/underground,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/awaymission/undergroundoutpost45/central)
+"aB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/landmark/awaystart/underground,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/awaymission/undergroundoutpost45/central)
"aC" = (
/turf/closed/wall,
@@ -184,6 +219,13 @@
/area/awaymission/undergroundoutpost45/central)
"aS" = (
/turf/open/floor/iron,
+<<<<<<< HEAD
+=======
+/area/awaymission/undergroundoutpost45/central)
+"aT" = (
+/obj/effect/landmark/awaystart/underground,
+/turf/open/floor/iron/grimy,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/awaymission/undergroundoutpost45/central)
"aU" = (
/obj/structure/closet/secure_closet/personal/cabinet{
@@ -5436,10 +5478,13 @@
dir = 1
},
/area/awaymission/undergroundoutpost45/engineering)
+<<<<<<< HEAD
"uB" = (
/obj/effect/landmark/awaystart/underground,
/turf/open/floor/iron,
/area/awaymission/undergroundoutpost45/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uC" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
@@ -5906,6 +5951,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/awaymission/undergroundoutpost45/engineering)
+<<<<<<< HEAD
"wm" = (
/obj/structure/chair/comfy/beige{
dir = 4
@@ -5913,6 +5959,8 @@
/obj/effect/landmark/awaystart/underground,
/turf/open/floor/iron/grimy,
/area/awaymission/undergroundoutpost45/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wn" = (
/turf/closed/wall/rust,
/area/awaymission/undergroundoutpost45/engineering)
@@ -7092,10 +7140,13 @@
},
/turf/open/misc/asteroid/plasma,
/area/awaymission/undergroundoutpost45/caves)
+<<<<<<< HEAD
"LC" = (
/obj/effect/landmark/awaystart/underground,
/turf/open/floor/iron/grimy,
/area/awaymission/undergroundoutpost45/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"LT" = (
/obj/structure/table/reinforced,
/obj/item/clipboard,
@@ -7306,6 +7357,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/awaymission/undergroundoutpost45/central)
+<<<<<<< HEAD
"PF" = (
/obj/structure/sign/warning/vacuum{
desc = "A beacon used by a teleporter.";
@@ -7319,6 +7371,8 @@
},
/turf/open/floor/iron,
/area/awaymission/undergroundoutpost45/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Qb" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -7573,6 +7627,7 @@
},
/turf/open/floor/carpet,
/area/awaymission/undergroundoutpost45/crew_quarters)
+<<<<<<< HEAD
"TV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/obj/effect/landmark/awaystart/underground,
@@ -7581,6 +7636,8 @@
},
/turf/open/floor/iron,
/area/awaymission/undergroundoutpost45/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ud" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -38309,9 +38366,15 @@ an
aS
aS
aO
+<<<<<<< HEAD
uB
PF
TV
+=======
+ax
+az
+aB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Xd
bw
bB
diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm
index 781ce2aace0..0848d3fd817 100644
--- a/_maps/_basemap.dm
+++ b/_maps/_basemap.dm
@@ -19,6 +19,7 @@
#include "map_files\KiloStation\KiloStation.dmm"
// SKYRAT EDIT END
#include "map_files\wawastation\wawastation.dmm"
+
#ifdef CIBUILDING
#include "templates.dm"
#endif
diff --git a/_maps/deathmatch/lattice_battles.dmm b/_maps/deathmatch/lattice_battles.dmm
new file mode 100644
index 00000000000..eab56ca3064
--- /dev/null
+++ b/_maps/deathmatch/lattice_battles.dmm
@@ -0,0 +1,994 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"bm" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/closet/crate/large/hats,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"bz" = (
+/obj/structure/railing/unbreakable{
+ dir = 1
+ },
+/obj/item/clothing/head/cone,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"cN" = (
+/obj/structure/railing/unbreakable{
+ dir = 8
+ },
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"df" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"dM" = (
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"eK" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"gz" = (
+/obj/structure/flora/rock/pile/style_random,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"gN" = (
+/turf/closed/mineral/random,
+/area/deathmatch/fullbright)
+"gW" = (
+/obj/structure/railing/unbreakable{
+ dir = 1
+ },
+/obj/structure/flora/lunar_plant/style_1,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"ho" = (
+/obj/structure/flora/lunar_plant/style_1,
+/obj/effect/playeronly_barrier,
+/obj/structure/railing/unbreakable{
+ dir = 6
+ },
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"hH" = (
+/obj/structure/railing/unbreakable{
+ dir = 5
+ },
+/obj/structure/flora/rock/pile/style_random,
+/obj/structure/flora/lunar_plant/style_3,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"jb" = (
+/obj/structure/flora/rock/style_random,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"lO" = (
+/obj/structure/railing/unbreakable{
+ dir = 9
+ },
+/obj/structure/flora/rock/pile/style_random,
+/obj/structure/flora/lunar_plant/style_3,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"rE" = (
+/obj/structure/flora/rock/pile/style_random,
+/turf/closed/mineral/random,
+/area/deathmatch/fullbright)
+"sl" = (
+/mob/living/basic/spider/giant/hunter/away_caves,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/spider/stickyweb,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"sQ" = (
+/obj/structure/flora/lunar_plant/style_2,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"tw" = (
+/obj/structure/railing/unbreakable{
+ dir = 4
+ },
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"tL" = (
+/obj/structure/railing/unbreakable,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"uJ" = (
+/obj/structure/railing/unbreakable{
+ dir = 4
+ },
+/obj/item/clothing/head/cone,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"uO" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/closet/crate/critter,
+/mob/living/basic/mothroach,
+/mob/living/basic/mothroach,
+/mob/living/basic/mothroach,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"vk" = (
+/obj/structure/lattice/catwalk,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"vr" = (
+/obj/structure/flora/lunar_plant/style_2,
+/obj/structure/spider/stickyweb/very_sticky,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"wb" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/landmark/deathmatch_player_spawn,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"yB" = (
+/obj/structure/railing/unbreakable{
+ dir = 8
+ },
+/obj/structure/flora/lunar_plant/style_1,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"AS" = (
+/mob/living/basic/pet/cat/space,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"BL" = (
+/obj/structure/railing/unbreakable{
+ dir = 1
+ },
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Cf" = (
+/obj/structure/flora/rock/pile/style_random,
+/obj/structure/flora/lunar_plant/style_3,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"CI" = (
+/mob/living/basic/pet/dog/corgi/puppy/void,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"CP" = (
+/obj/structure/lattice/catwalk,
+/obj/item/clothing/head/cone,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"Dk" = (
+/mob/living/basic/wumborian_fugu,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"He" = (
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Ia" = (
+/obj/machinery/power/floodlight,
+/obj/structure/lattice/catwalk,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"IT" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/effect/decal/cleanable/rubble,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"JE" = (
+/obj/structure/railing/unbreakable{
+ dir = 10
+ },
+/obj/structure/flora/lunar_plant/style_1,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"KO" = (
+/obj/structure/closet/crate/cardboard,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"LN" = (
+/obj/structure/railing/corner,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"MF" = (
+/obj/structure/lattice,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"MZ" = (
+/obj/item/clothing/head/cone,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Nf" = (
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/structure/lattice,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"NA" = (
+/obj/structure/flora/lunar_plant/style_2,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"NG" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/closet/crate/cardboard,
+/obj/item/statuebust,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"NI" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/decal/cleanable/rubble,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"NY" = (
+/obj/effect/playeronly_barrier,
+/obj/structure/railing/unbreakable,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"OF" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"St" = (
+/mob/living/basic/spider/giant/nurse/away_caves,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Sv" = (
+/obj/structure/lattice/catwalk,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/rubble,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"SL" = (
+/obj/structure/flora/rock/pile/style_random,
+/obj/structure/flora/lunar_plant/style_3,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Uy" = (
+/obj/item/clothing/head/cone,
+/obj/effect/playeronly_barrier,
+/obj/structure/railing/corner/unbreakable{
+ dir = 1
+ },
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"UU" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/structure/flora/rock/style_random,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Xf" = (
+/obj/structure/flora/rock/pile/style_random,
+/obj/structure/spider/stickyweb,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Xk" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/power/floodlight,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"Xo" = (
+/obj/structure/flora/rock/style_random,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"Yu" = (
+/obj/structure/flora/rock/pile/style_random,
+/obj/structure/railing/unbreakable{
+ dir = 6
+ },
+/obj/structure/flora/lunar_plant/style_3,
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"YH" = (
+/obj/effect/playeronly_barrier,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"YV" = (
+/obj/structure/lattice/catwalk,
+/obj/item/clothing/head/cone,
+/obj/effect/decal/cleanable/rubble,
+/turf/open/chasm,
+/area/deathmatch/fullbright)
+"Zp" = (
+/obj/effect/decal/cleanable/garbage,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+"ZH" = (
+/obj/structure/flora/rock/pile/style_random,
+/mob/living/basic/cow/moonicorn,
+/turf/open/misc/asteroid/moon,
+/area/deathmatch/fullbright)
+
+(1,1,1) = {"
+rE
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(2,1,1) = {"
+gN
+gN
+He
+He
+jb
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(3,1,1) = {"
+gN
+He
+He
+Dk
+He
+KO
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(4,1,1) = {"
+gN
+jb
+Cf
+He
+LN
+tw
+uJ
+tw
+tw
+Yu
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(5,1,1) = {"
+gN
+gN
+OF
+Zp
+NY
+dM
+MF
+MF
+MF
+MF
+MF
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+MF
+gN
+gN
+gN
+gN
+gN
+"}
+(6,1,1) = {"
+gN
+gN
+gN
+MZ
+ho
+vk
+MF
+vk
+vk
+MF
+MF
+MF
+vk
+df
+vk
+df
+vk
+MF
+dM
+dM
+lO
+gN
+gN
+gN
+gN
+"}
+(7,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+MF
+MF
+wb
+vk
+vk
+MF
+vk
+wb
+vk
+vk
+vk
+vk
+wb
+MF
+dM
+bz
+gN
+gN
+gN
+gN
+"}
+(8,1,1) = {"
+gN
+gN
+gN
+gN
+JE
+MF
+vk
+vk
+vk
+vk
+vk
+NI
+vk
+vk
+vk
+vk
+MF
+vk
+MF
+MF
+BL
+sQ
+gN
+gN
+gN
+"}
+(9,1,1) = {"
+gN
+gN
+sQ
+YH
+tL
+MF
+vk
+vk
+vk
+CP
+vk
+vk
+vk
+vk
+vk
+CP
+MF
+vk
+vk
+MF
+BL
+ZH
+gN
+gN
+gN
+"}
+(10,1,1) = {"
+gN
+gN
+gN
+AS
+tL
+MF
+vk
+MF
+MF
+vk
+df
+Sv
+vk
+MF
+vk
+df
+MF
+vk
+vk
+MF
+gW
+jb
+gN
+gN
+gN
+"}
+(11,1,1) = {"
+gN
+gN
+gN
+CI
+tL
+MF
+vk
+df
+MF
+MF
+vk
+vk
+MF
+MF
+vk
+df
+vk
+vk
+df
+vk
+hH
+gN
+gN
+gN
+gN
+"}
+(12,1,1) = {"
+gN
+gN
+gN
+jb
+tL
+MF
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+df
+NG
+gN
+gN
+gN
+gN
+gN
+"}
+(13,1,1) = {"
+gN
+gN
+gN
+gN
+Yu
+MF
+MF
+eK
+vk
+vk
+vk
+vk
+wb
+CP
+vk
+vk
+vk
+wb
+vk
+Xk
+gN
+gN
+gN
+gN
+gN
+"}
+(14,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+Ia
+MF
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+vk
+NI
+vk
+vk
+vk
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(15,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+gN
+bm
+df
+vk
+vk
+vk
+MF
+MF
+vk
+vk
+vk
+MF
+MF
+vk
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(16,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+MF
+MF
+vk
+vk
+MF
+vk
+vk
+vk
+df
+MF
+vk
+vk
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(17,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+gN
+MF
+MF
+vk
+vk
+NI
+vk
+vk
+vk
+vk
+CP
+vk
+vk
+vk
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(18,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+MF
+MF
+MF
+vk
+vk
+YV
+vk
+MF
+MF
+vk
+vk
+vk
+vk
+df
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(19,1,1) = {"
+gN
+gN
+gN
+gN
+SL
+dM
+MF
+Nf
+vk
+vk
+vk
+MF
+Nf
+MF
+MF
+vk
+vk
+IT
+vk
+uO
+gN
+gN
+gN
+gN
+gN
+"}
+(20,1,1) = {"
+gN
+gN
+gN
+gN
+dM
+dM
+dM
+MF
+MF
+vk
+MF
+MF
+MF
+MF
+MF
+MF
+vk
+vk
+MF
+MF
+UU
+gN
+gN
+gN
+gN
+"}
+(21,1,1) = {"
+gN
+gN
+gN
+SL
+dM
+dM
+dM
+dM
+uO
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+vk
+MF
+dM
+dM
+BL
+St
+Xf
+gN
+gN
+"}
+(22,1,1) = {"
+gN
+gN
+gN
+jb
+NA
+dM
+SL
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+lO
+yB
+cN
+Uy
+vr
+gN
+gN
+gN
+"}
+(23,1,1) = {"
+gN
+gN
+gN
+gN
+gz
+Xo
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+sl
+gz
+gN
+gN
+gN
+gN
+gN
+"}
+(24,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+"}
+(25,1,1) = {"
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+gN
+"}
diff --git a/_maps/deathmatch/meta_brig.dmm b/_maps/deathmatch/meta_brig.dmm
index 55f888e3d51..60b8d8a471b 100644
--- a/_maps/deathmatch/meta_brig.dmm
+++ b/_maps/deathmatch/meta_brig.dmm
@@ -258,6 +258,16 @@
"du" = (
/turf/closed/indestructible/fakedoor,
/area/deathmatch)
+"dy" = (
+/obj/structure/chair/stool/directional/east,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 4
+ },
+/obj/machinery/flasher/directional/north{
+ id = "visitorflash"
+ },
+/turf/open/floor/iron,
+/area/deathmatch)
"dA" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -449,6 +459,15 @@
},
/turf/open/floor/iron/white,
/area/deathmatch)
+"hS" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/prison/directional/north,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet,
+/area/deathmatch)
"hY" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -712,15 +731,6 @@
/obj/structure/cable,
/turf/open/indestructible,
/area/deathmatch)
-"mq" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/telescreen/prison/directional/north,
-/obj/item/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
- },
-/turf/open/floor/carpet,
-/area/deathmatch)
"mC" = (
/obj/effect/turf_decal/bot,
/obj/structure/plasticflaps/opaque{
@@ -1237,16 +1247,6 @@
},
/turf/open/indestructible,
/area/deathmatch)
-"sF" = (
-/obj/structure/chair/stool/directional/east,
-/obj/effect/turf_decal/trimline/red/warning{
- dir = 4
- },
-/obj/machinery/flasher/directional/north{
- id = "visitorflash"
- },
-/turf/open/floor/iron,
-/area/deathmatch)
"sG" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -1420,14 +1420,6 @@
/obj/structure/cable,
/turf/open/indestructible,
/area/deathmatch)
-"uV" = (
-/obj/machinery/computer/security/telescreen/prison/directional/south,
-/obj/structure/cable,
-/obj/effect/turf_decal/tile/red{
- dir = 8
- },
-/turf/open/indestructible,
-/area/deathmatch)
"vf" = (
/obj/effect/landmark/deathmatch_player_spawn,
/turf/open/floor/iron/white,
@@ -1642,6 +1634,14 @@
},
/turf/open/indestructible/dark,
/area/deathmatch)
+"yN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/directional/east,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/deathmatch)
"yO" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -2532,14 +2532,6 @@
/obj/structure/cable,
/turf/open/indestructible,
/area/deathmatch)
-"Kj" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/chair/stool/directional/east,
-/obj/effect/turf_decal/trimline/red/warning{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/deathmatch)
"Km" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/red{
@@ -2897,6 +2889,14 @@
/obj/structure/cable,
/turf/open/indestructible,
/area/deathmatch)
+"PV" = (
+/obj/machinery/computer/security/telescreen/prison/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
"Qd" = (
/obj/structure/table,
/obj/item/clothing/glasses/sunglasses{
@@ -3633,9 +3633,9 @@ IJ
Yh
Yh
Yh
-sF
+dy
YW
-Kj
+yN
IJ
IJ
IJ
@@ -4396,7 +4396,7 @@ vt
CS
bA
GU
-uV
+PV
XK
XK
XI
@@ -4515,7 +4515,7 @@ Ik
Os
mE
Yh
-mq
+hS
FY
dp
Pt
diff --git a/_maps/deathmatch/ragin_mages.dmm b/_maps/deathmatch/ragin_mages.dmm
index 3dcdb966d11..1a3d307181d 100644
--- a/_maps/deathmatch/ragin_mages.dmm
+++ b/_maps/deathmatch/ragin_mages.dmm
@@ -8,7 +8,7 @@
dir = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"aT" = (
/obj/item/cardboard_cutout/adaptive{
pixel_y = 14;
@@ -17,7 +17,7 @@
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"bb" = (
/obj/structure/chair/wood/wings{
dir = 8
@@ -28,15 +28,15 @@
set_luminosity = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"bg" = (
/obj/effect/spawner/random/entertainment/arcade,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"bv" = (
/obj/machinery/power/shuttle_engine/propulsion,
/turf/open/floor/plating/airless,
-/area/deathmatch/teleport)
+/area/deathmatch)
"co" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin/carbon{
@@ -44,7 +44,7 @@
pixel_x = 7
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ct" = (
/obj/structure/flora/bush/grassy/style_random,
/mob/living/basic/pet/gondola{
@@ -52,24 +52,24 @@
faction = list("gondola", "Wizard")
},
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"cU" = (
/obj/structure/chair/wood/wings{
dir = 1
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"dj" = (
/obj/machinery/door/airlock/wood,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ds" = (
/turf/open/floor/carpet/purple,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ez" = (
/obj/structure/closet/crate,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"fH" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/machinery/griddle,
@@ -82,19 +82,19 @@
pixel_x = 9
},
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"fI" = (
/turf/open/lava,
-/area/deathmatch/teleport)
+/area/deathmatch)
"gn" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"gr" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/chair/wood,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"hg" = (
/obj/structure/railing/corner/end/flip{
dir = 8
@@ -104,14 +104,14 @@
dir = 8
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"hk" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 21;
pixel_x = -7
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"hK" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/light_emitter{
@@ -120,20 +120,20 @@
set_luminosity = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ig" = (
/obj/structure/table/wood,
/obj/item/stack/medical/bruise_pack{
pixel_x = -12
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"iz" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"iL" = (
/obj/effect/light_emitter{
set_cap = 2;
@@ -141,7 +141,7 @@
set_luminosity = 4
},
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"iQ" = (
/obj/structure/table,
/obj/structure/bedsheetbin{
@@ -149,42 +149,42 @@
pixel_x = 3
},
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"iZ" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/sink/directional/west,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"jb" = (
/obj/machinery/door/airlock/wood,
/obj/structure/railing/corner/end/flip,
/obj/structure/railing/corner/end,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"jg" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/effect/landmark/deathmatch_player_spawn,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"jm" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/mystery_box/wands,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"js" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"jM" = (
/obj/structure/table/reinforced,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"jV" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/machinery/door/airlock/wood,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"kl" = (
/obj/structure/flora/bush/grassy/style_random,
/obj/machinery/light/floor,
@@ -194,7 +194,7 @@
set_luminosity = 4
},
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"li" = (
/obj/structure/table,
/obj/item/extinguisher{
@@ -206,7 +206,7 @@
pixel_x = -6
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"lM" = (
/obj/structure/bed{
dir = 1
@@ -220,19 +220,19 @@
set_luminosity = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"lO" = (
/obj/structure/closet/crate,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"mu" = (
/obj/effect/turf_decal/stripes,
/obj/structure/railing{
dir = 4
},
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"mV" = (
/obj/structure/railing{
dir = 4
@@ -242,40 +242,40 @@
},
/obj/structure/mystery_box/tdome,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"nk" = (
/obj/item/gun/magic/wand/death,
/obj/structure/window/reinforced/plasma/spawner/directional/east,
/obj/structure/window/reinforced/plasma/spawner/directional/north,
/obj/structure/window/reinforced/plasma/spawner/directional/west,
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"nx" = (
/obj/effect/landmark/deathmatch_player_spawn,
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"nQ" = (
/obj/machinery/door/airlock/wood,
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"on" = (
/obj/structure/table/wood,
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"oP" = (
/obj/structure/destructible/cult/item_dispenser/archives/library,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"pe" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 21;
pixel_x = -7
},
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ph" = (
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"pv" = (
/obj/effect/light_emitter{
set_cap = 2;
@@ -283,18 +283,18 @@
set_luminosity = 4
},
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"pL" = (
/obj/effect/turf_decal/stripes{
dir = 1
},
/obj/structure/mystery_box/wands,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"pV" = (
/obj/structure/flora/bush/flowers_br/style_random,
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"qx" = (
/obj/effect/light_emitter{
set_cap = 2;
@@ -302,15 +302,15 @@
set_luminosity = 4
},
/turf/open/floor/carpet/purple,
-/area/deathmatch/teleport)
+/area/deathmatch)
"qY" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"rj" = (
/obj/machinery/door/window/right/directional/east,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"rD" = (
/obj/structure/railing{
dir = 4
@@ -319,11 +319,11 @@
dir = 8
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"sf" = (
/obj/structure/mirror/directional/east,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"tL" = (
/obj/structure/flora/bush/fullgrass/style_random,
/mob/living/simple_animal/hostile/ooze/gelatinous{
@@ -331,7 +331,7 @@
faction = list("slime", "Wizard")
},
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ue" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/item/food/burger/yellow{
@@ -347,14 +347,14 @@
},
/obj/structure/table/reinforced,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ui" = (
/obj/effect/turf_decal/stripes,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"uz" = (
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"uR" = (
/obj/item/clothing/shoes/sandal/magic{
pixel_y = 16
@@ -365,82 +365,82 @@
set_luminosity = 4
},
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"vh" = (
/obj/structure/mystery_box/wands,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"vv" = (
/obj/vehicle/ridden/scooter/skateboard{
dir = 4
},
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"vR" = (
/obj/structure/bookcase/random,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"wd" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/mystery_box/wands,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"wl" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 1;
pixel_x = -6
},
/turf/open/floor/carpet/purple,
-/area/deathmatch/teleport)
+/area/deathmatch)
"wL" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/machinery/gibber/autogibber,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"xk" = (
/obj/structure/sink/directional/south,
/obj/structure/mirror/directional/north{
pixel_y = 36
},
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"xs" = (
/obj/structure/flora/bush/grassy/style_random,
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"yA" = (
/obj/structure/chair/wood/wings,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"zN" = (
/obj/structure/mystery_box/wands,
/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/north,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"zO" = (
/obj/structure/closet,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Au" = (
/obj/structure/railing{
dir = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"AD" = (
/obj/structure/sign/departments/restroom/directional/west,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Bm" = (
/obj/effect/landmark/deathmatch_player_spawn,
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Cb" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/table/wood,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Cj" = (
/obj/structure/table,
/obj/item/clothing/ears/earmuffs{
@@ -456,10 +456,10 @@
pixel_y = -10
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Cq" = (
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"CM" = (
/obj/structure/railing/corner,
/obj/structure/railing/corner{
@@ -477,7 +477,7 @@
set_luminosity = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"DK" = (
/obj/structure/railing{
dir = 8
@@ -489,11 +489,11 @@
dir = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"DW" = (
/obj/machinery/computer,
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Eh" = (
/obj/effect/light_emitter{
set_cap = 2;
@@ -501,64 +501,64 @@
set_luminosity = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Fb" = (
/obj/effect/turf_decal/stripes{
dir = 1
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Fm" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Fv" = (
/obj/structure/chair/wood/wings{
dir = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Fx" = (
/obj/item/target,
/obj/structure/sign/flag/nanotrasen/directional/north,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"FL" = (
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Ge" = (
/obj/item/flashlight/flare{
pixel_x = -5;
pixel_y = -12
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Gv" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 2;
pixel_x = 5
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"GC" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"GZ" = (
/obj/structure/curtain,
/obj/machinery/shower/directional/north,
/obj/item/soap/syndie,
/turf/open/floor/noslip,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Hf" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 1;
pixel_x = -6
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Hs" = (
/turf/template_noop,
/area/template_noop)
@@ -572,17 +572,17 @@
pixel_y = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"HP" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"HS" = (
/obj/structure/table/wood/fancy,
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"IE" = (
/obj/structure/table/wood,
/obj/item/clothing/suit/wizrobe/black{
@@ -594,40 +594,40 @@
pixel_x = 6
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"IM" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 2;
pixel_x = 5
},
/turf/open/floor/carpet/purple,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Jm" = (
/turf/closed/wall/mineral/wood,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Jo" = (
/obj/structure/toilet{
dir = 4
},
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Kr" = (
/obj/effect/landmark/deathmatch_player_spawn,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"KW" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Le" = (
/obj/structure/filingcabinet,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Mg" = (
/obj/machinery/computer,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Nl" = (
/obj/machinery/power/shuttle_engine/heater{
resistance_flags = 3
@@ -636,21 +636,21 @@
resistance_flags = 3
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Nm" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 21;
pixel_x = 6
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Nt" = (
/obj/item/target{
pixel_y = 11
},
/obj/effect/turf_decal/stripes,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"NW" = (
/obj/structure/railing{
dir = 4
@@ -659,30 +659,30 @@
dir = 1
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Ok" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"OD" = (
/obj/structure/filingcabinet,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"OK" = (
/obj/item/kirbyplants/organic/plant10{
pixel_y = 21;
pixel_x = 6
},
/turf/open/floor/carpet/red,
-/area/deathmatch/teleport)
+/area/deathmatch)
"PD" = (
/obj/structure/table/wood,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Qj" = (
/obj/structure/dresser,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"QH" = (
/obj/structure/table,
/obj/item/clothing/head/wizard{
@@ -690,19 +690,19 @@
pixel_x = 4
},
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"QT" = (
/obj/structure/mystery_box/wands,
/turf/open/floor/plastic,
-/area/deathmatch/teleport)
+/area/deathmatch)
"RB" = (
/obj/machinery/vending/snack,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"RI" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"RT" = (
/obj/machinery/power/shuttle_engine/heater{
resistance_flags = 3
@@ -711,14 +711,14 @@
resistance_flags = 3
},
/turf/open/lava,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Sa" = (
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"SK" = (
/obj/structure/flora/bush/fullgrass/style_random,
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Th" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/table/reinforced,
@@ -736,15 +736,15 @@
set_luminosity = 4
},
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Vk" = (
/obj/machinery/door/window/left/directional/east,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"VM" = (
/obj/structure/table/wood/poker,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Wl" = (
/obj/structure/railing{
dir = 4
@@ -755,37 +755,37 @@
set_luminosity = 4
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"WX" = (
/obj/machinery/vending/magivend,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Xv" = (
/obj/structure/railing,
/obj/structure/railing{
dir = 1
},
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"YP" = (
/obj/structure/closet/crate/coffin,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"YS" = (
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/engine/cult,
-/area/deathmatch/teleport)
+/area/deathmatch)
"Zo" = (
/obj/structure/flora/bush/flowers_pp/style_random,
/turf/open/floor/grass,
-/area/deathmatch/teleport)
+/area/deathmatch)
"ZS" = (
/obj/structure/railing/corner/end/flip,
/turf/open/floor/iron,
-/area/deathmatch/teleport)
+/area/deathmatch)
(1,1,1) = {"
Hs
diff --git a/_maps/deathmatch/species_warfare.dmm b/_maps/deathmatch/species_warfare.dmm
new file mode 100644
index 00000000000..e80485c2b5e
--- /dev/null
+++ b/_maps/deathmatch/species_warfare.dmm
@@ -0,0 +1,2461 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aA" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/medical_kiosk,
+/obj/structure/sign/poster/official/moth_meth/directional/east,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"aD" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/indestructible,
+/area/deathmatch)
+"by" = (
+/mob/living/basic/mothroach,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"bL" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/surgery_tray/full,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"bX" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/structure/table/glass,
+/obj/item/storage/fancy/donut_box,
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"cd" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/machinery/light/built/directional/south,
+/obj/machinery/computer{
+ dir = 4
+ },
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"cl" = (
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/light/small/blacklight/directional/north,
+/turf/open/floor/wood,
+/area/deathmatch)
+"cs" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/vehicle/sealed/mecha/ripley,
+/obj/item/mecha_parts/mecha_equipment/air_tank/full,
+/turf/open/floor/iron/dark,
+/area/deathmatch)
+"cy" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/cryo_cell,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"dv" = (
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/indestructible,
+/area/deathmatch)
+"dA" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"dB" = (
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/indestructible,
+/area/deathmatch)
+"ee" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"em" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"es" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/stasis{
+ dir = 1
+ },
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/machinery/light/floor,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"eE" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/atmospherics/components/binary/crystallizer{
+ dir = 4
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"eO" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"eW" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"fg" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"fm" = (
+/obj/item/pillow/random,
+/turf/open/floor/wood,
+/area/deathmatch)
+"fA" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/deathmatch)
+"fP" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/machinery/door/airlock/command/glass,
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"fV" = (
+/obj/effect/turf_decal/tile/purple/full,
+/obj/machinery/door/airlock/science/glass,
+/turf/open/indestructible/white/smooth_large,
+/area/deathmatch)
+"gH" = (
+/mob/living/basic/pet/cat/feral,
+/obj/structure/bed,
+/obj/item/bedsheet/runtime,
+/obj/machinery/light/small/blacklight/directional/south,
+/turf/open/floor/wood,
+/area/deathmatch)
+"gI" = (
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"gM" = (
+/obj/effect/spawner/random/structure/closet_private,
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/wood,
+/area/deathmatch)
+"hk" = (
+/obj/effect/turf_decal/tile/green/full,
+/obj/machinery/door/airlock/glass,
+/turf/open/indestructible/large,
+/area/deathmatch)
+"ho" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/indestructible,
+/area/deathmatch)
+"hA" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 9
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"hC" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/table/optable,
+/obj/effect/decal/cleanable/blood,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"hG" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/item/mecha_parts/mecha_equipment/ripleyupgrade,
+/turf/open/floor/iron/dark,
+/area/deathmatch)
+"hR" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/open/indestructible/plating,
+/area/deathmatch)
+"is" = (
+/obj/item/grenade/spawnergrenade/cat,
+/turf/open/floor/wood,
+/area/deathmatch)
+"iu" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/sleeper/self_control,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"ix" = (
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 4
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"iK" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"iM" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/table/glass,
+/obj/item/surgery_tray/full,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"iV" = (
+/obj/item/card/id/advanced/engioutpost,
+/obj/effect/decal/remains/human/smokey,
+/turf/open/indestructible,
+/area/deathmatch)
+"jm" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/firecloset/full,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"jn" = (
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/machinery/light/floor,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"ju" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"jw" = (
+/turf/open/space/basic,
+/area/deathmatch)
+"jR" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/rnd/production/protolathe/offstation,
+/obj/machinery/light/directional/east,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"ko" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/vending/cigarette/syndicate,
+/obj/machinery/light/directional/east,
+/turf/open/indestructible,
+/area/deathmatch)
+"kY" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin2";
+ name = "Cabin 4"
+ },
+/turf/open/chasm{
+ icon_state = "wood";
+ icon = 'icons/turf/floors.dmi';
+ base_icon_state = "wood";
+ name = "Dorms 4"
+ },
+/area/deathmatch)
+"lF" = (
+/obj/effect/spawner/random/structure/closet_private,
+/turf/open/floor/wood,
+/area/deathmatch)
+"mn" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/machinery/computer/security/wooden_tv{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"mo" = (
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/right/directional/west,
+/turf/open/indestructible/large,
+/area/deathmatch)
+"mK" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"mO" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"nb" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible/dark/textured,
+/area/deathmatch)
+"nf" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/glass/bottle/champagne/cursed,
+/obj/item/food/donut/trumpet,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"nQ" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"nT" = (
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/obj/structure/closet/firecloset/full,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"oq" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/greenglow,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"oy" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/indestructible,
+/area/deathmatch)
+"oD" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/blacklight/directional/west,
+/turf/open/indestructible/dark/textured,
+/area/deathmatch)
+"oN" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/indestructible,
+/area/deathmatch)
+"pD" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"pH" = (
+/obj/structure/cable,
+/obj/structure/table/reinforced,
+/obj/item/fireaxe/metal_h2_axe,
+/turf/open/indestructible,
+/area/deathmatch)
+"pJ" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/light/directional/west,
+/turf/open/indestructible,
+/area/deathmatch)
+"pL" = (
+/mob/living/basic/lizard/wags_his_tail,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible,
+/area/deathmatch)
+"qF" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"qM" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"qV" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/machinery/computer{
+ dir = 8
+ },
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"rq" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/item/toy/plush/slimeplushie{
+ pixel_y = 10
+ },
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun,
+/turf/open/floor/iron/dark,
+/area/deathmatch)
+"ru" = (
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/rnd/production/circuit_imprinter/offstation,
+/obj/item/mecha_parts/mecha_equipment/wormhole_generator,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"rO" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/item/melee/supermatter_sword,
+/obj/machinery/light/small/blacklight/directional/south,
+/turf/open/floor/wood,
+/area/deathmatch)
+"rP" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/table,
+/obj/item/restraints/legcuffs/beartrap{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/restraints/legcuffs/beartrap{
+ pixel_x = 2
+ },
+/obj/item/key/janitor{
+ pixel_y = 10
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"rV" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/deathmatch)
+"sn" = (
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/wood,
+/area/deathmatch)
+"st" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"su" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/storage/belt/utility/full{
+ pixel_y = 4
+ },
+/obj/item/storage/belt/utility/full,
+/turf/open/indestructible,
+/area/deathmatch)
+"sx" = (
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/obj/machinery/computer{
+ dir = 4
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"sJ" = (
+/turf/open/floor/wood,
+/area/deathmatch)
+"sL" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/structure/table/glass,
+/obj/item/storage/medkit/regular,
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"sW" = (
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"tR" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/machinery/computer{
+ dir = 4
+ },
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"uq" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/dice,
+/turf/open/indestructible,
+/area/deathmatch)
+"uQ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"uX" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/effect/landmark/deathmatch_player_spawn,
+/turf/open/indestructible,
+/area/deathmatch)
+"vb" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/turf/open/indestructible,
+/area/deathmatch)
+"vm" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"vq" = (
+/obj/structure/cable,
+/turf/open/floor/iron/solarpanel/airless,
+/area/deathmatch)
+"vB" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/indestructible,
+/area/deathmatch)
+"vI" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/indestructible,
+/area/deathmatch)
+"vT" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/light/built/directional/south,
+/turf/open/indestructible,
+/area/deathmatch)
+"wb" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/stasis{
+ dir = 1
+ },
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/machinery/light/floor,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"wd" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/indestructible,
+/area/deathmatch)
+"wj" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"wA" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/syringes,
+/obj/item/gun/syringe,
+/obj/item/reagent_containers/cup/bottle/morphine{
+ pixel_y = 17;
+ pixel_x = -7
+ },
+/obj/item/reagent_containers/cup/bottle/traitor{
+ pixel_y = 17;
+ pixel_x = 8
+ },
+/obj/item/toy/plush/moth{
+ name = "Mender Moff"
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"wG" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/closet/firecloset/full,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"wM" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/vending/wardrobe/jani_wardrobe,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/blacklight/directional/north,
+/turf/open/indestructible,
+/area/deathmatch)
+"xe" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/indestructible,
+/area/deathmatch)
+"xj" = (
+/obj/effect/decal/cleanable/blood/footprints,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"xL" = (
+/obj/effect/spawner/structure/window/reinforced/indestructible,
+/turf/open/indestructible/large,
+/area/deathmatch)
+"xT" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/item/storage/medkit/brute{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/storage/medkit/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/cable,
+/obj/structure/table/glass,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"yq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"yy" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/glass/bottle/champagne/cursed,
+/obj/item/food/donut/trumpet,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"yD" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/light/cold/dim/directional/east,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"yU" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible,
+/area/deathmatch)
+"zg" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/obj/item/kirbyplants/random,
+/turf/open/indestructible,
+/area/deathmatch)
+"zs" = (
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/indestructible/white/smooth_large,
+/area/deathmatch)
+"zt" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/machinery/light/built/directional/south,
+/obj/machinery/computer{
+ dir = 8
+ },
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"zw" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"zx" = (
+/obj/item/stack/tile/iron/four{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/obj/structure/cable,
+/turf/open/indestructible/plating,
+/area/deathmatch)
+"zJ" = (
+/turf/closed/indestructible/reinforced,
+/area/deathmatch)
+"zK" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"zZ" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/indestructible,
+/area/deathmatch)
+"Ac" = (
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/machinery/light/floor,
+/turf/open/indestructible,
+/area/deathmatch)
+"Ag" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/obj/effect/decal/cleanable/oil,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"AE" = (
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/machinery/door/airlock/engineering/glass,
+/turf/open/indestructible/large,
+/area/deathmatch)
+"AQ" = (
+/mob/living/basic/migo/hatsune,
+/obj/structure/bed,
+/obj/item/bedsheet/cult,
+/obj/machinery/light/small/blacklight/directional/south,
+/turf/open/floor/wood,
+/area/deathmatch)
+"AZ" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/item/storage/medkit/brute{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/storage/medkit/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Bc" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/item/clothing/suit/armor/elder_atmosian,
+/obj/item/clothing/head/helmet/elder_atmosian,
+/turf/open/indestructible,
+/area/deathmatch)
+"Bh" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/structure/table/glass,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health{
+ pixel_y = 6
+ },
+/obj/machinery/light/cold/dim/directional/east,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Bu" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/atmospherics/pipe/smart/manifold/green/visible,
+/turf/open/indestructible,
+/area/deathmatch)
+"BA" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"BH" = (
+/turf/open/chasm{
+ icon_state = "wood";
+ icon = 'icons/turf/floors.dmi';
+ base_icon_state = "wood";
+ name = "Dorms 4"
+ },
+/area/deathmatch)
+"BL" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"BV" = (
+/obj/effect/decal/cleanable/garbage,
+/turf/open/indestructible,
+/area/deathmatch)
+"Dm" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/indestructible/dark/textured,
+/area/deathmatch)
+"DN" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/vending/engivend,
+/turf/open/indestructible,
+/area/deathmatch)
+"DV" = (
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 8
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"DZ" = (
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/deathmatch)
+"El" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/obj/machinery/light/directional/east,
+/turf/open/indestructible,
+/area/deathmatch)
+"Es" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/table/glass,
+/obj/item/gun/ballistic/rifle/rebarxbow/forced,
+/obj/item/ammo_casing/rebar,
+/obj/item/ammo_casing/rebar,
+/obj/item/ammo_casing/rebar,
+/obj/machinery/light/built/directional/north,
+/turf/open/indestructible,
+/area/deathmatch)
+"EC" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/effect/decal/cleanable/ash/large,
+/turf/open/indestructible,
+/area/deathmatch)
+"EN" = (
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 1
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"FY" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/sleeper/self_control{
+ dir = 1
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Gl" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/mecha_part_fabricator/maint,
+/turf/open/floor/iron/dark,
+/area/deathmatch)
+"Gm" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"Gp" = (
+/obj/effect/landmark/deathmatch_player_spawn,
+/obj/machinery/light/floor,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Gy" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"GA" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"GF" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/indestructible,
+/area/deathmatch)
+"GY" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank/large,
+/turf/open/indestructible,
+/area/deathmatch)
+"Hj" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/obj/structure/closet/firecloset/full,
+/turf/open/indestructible,
+/area/deathmatch)
+"Hy" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/cryo_cell{
+ dir = 1
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Ia" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"Iq" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/structure/rack,
+/obj/item/gun/energy/e_gun/mini/practice_phaser,
+/obj/machinery/light/built/directional/north,
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"Iu" = (
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Iz" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/vending/tool,
+/turf/open/indestructible,
+/area/deathmatch)
+"IA" = (
+/obj/effect/spawner/random/structure/closet_private,
+/obj/item/toy/plush/awakenedplushie,
+/turf/open/floor/wood,
+/area/deathmatch)
+"IJ" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/indestructible,
+/area/deathmatch)
+"IR" = (
+/obj/vehicle/ridden/janicart/upgraded,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stack/tile/iron/four{
+ pixel_y = 7;
+ pixel_x = 10
+ },
+/turf/open/indestructible/plating,
+/area/deathmatch)
+"JL" = (
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted,
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"JS" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/indestructible,
+/area/deathmatch)
+"JX" = (
+/obj/item/melee/chainofcommand/tailwhip/kitty,
+/turf/open/floor/wood,
+/area/deathmatch)
+"Ka" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin7";
+ name = "Cabin 1"
+ },
+/turf/open/floor/wood,
+/area/deathmatch)
+"Kv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/mecha_wreckage/durand,
+/obj/item/mecha_parts/mecha_equipment/repair_droid,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Lk" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"Lq" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/machinery/computer,
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"Lr" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/mop_bucket/janitorialcart,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/indestructible,
+/area/deathmatch)
+"Lt" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/indestructible,
+/area/deathmatch)
+"LY" = (
+/obj/item/clothing/suit/pillow_suit,
+/obj/item/clothing/head/pillow_hood,
+/turf/open/floor/wood,
+/area/deathmatch)
+"Mi" = (
+/obj/structure/cable,
+/obj/structure/table/reinforced,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/indestructible,
+/area/deathmatch)
+"Mn" = (
+/turf/open/indestructible/white,
+/area/deathmatch)
+"ME" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/collectable/welding,
+/obj/item/sticker/syndicate/flash{
+ pixel_x = 3
+ },
+/obj/item/sticker/syndicate/flash{
+ pixel_x = -4
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"MG" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health{
+ pixel_y = 6
+ },
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Nb" = (
+/obj/machinery/light/floor,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Ne" = (
+/obj/effect/turf_decal/tile/purple/full,
+/obj/effect/turf_decal/tile/purple/full,
+/obj/effect/turf_decal/tile/purple/full,
+/obj/effect/turf_decal/tile/purple/full,
+/obj/structure/table/reinforced/plasmarglass,
+/obj/machinery/door/window/right/directional/north,
+/turf/open/indestructible/white/smooth_large,
+/area/deathmatch)
+"Nr" = (
+/obj/machinery/vending/medical,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Ns" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/bucket,
+/obj/item/mop,
+/turf/open/indestructible,
+/area/deathmatch)
+"Nv" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/blacklight/directional/east,
+/turf/open/indestructible/dark/textured,
+/area/deathmatch)
+"ND" = (
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/obj/machinery/computer{
+ dir = 8
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"Oa" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/indestructible,
+/area/deathmatch)
+"Oo" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"Os" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"Ot" = (
+/obj/effect/turf_decal/tile/dark_blue,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"OF" = (
+/obj/effect/turf_decal/tile/dark_blue/full,
+/obj/structure/rack,
+/obj/item/cane,
+/obj/structure/fireaxecabinet/directional/south,
+/obj/machinery/light/built/directional/south,
+/turf/open/indestructible/dark/smooth_large,
+/area/deathmatch)
+"ON" = (
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ dir = 8
+ },
+/turf/open/indestructible/white/smooth_large,
+/area/deathmatch)
+"Ps" = (
+/obj/structure/table/reinforced,
+/turf/open/indestructible,
+/area/deathmatch)
+"Qo" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/mob/living/basic/bot/medbot,
+/obj/item/mecha_parts/mecha_equipment/gravcatapult,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"QM" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/indestructible,
+/area/deathmatch)
+"RX" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/grenade/chem_grenade/cleaner{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/obj/item/grenade/chem_grenade/cleaner{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/item/grenade/chem_grenade/cleaner,
+/obj/item/toy/plush/lizard_plushie,
+/turf/open/indestructible/plating,
+/area/deathmatch)
+"RY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 8
+ },
+/obj/item/mecha_parts/mecha_equipment/extinguisher,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Sh" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space/basic,
+/area/deathmatch)
+"Sm" = (
+/obj/structure/table/reinforced,
+/obj/item/grenade/gas_crystal/crystal_foam,
+/turf/open/indestructible,
+/area/deathmatch)
+"Sn" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/table/optable,
+/obj/item/reagent_containers/syringe/contraband/methamphetamine,
+/obj/effect/decal/cleanable/blood,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"Sy" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"To" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"TZ" = (
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/deathmatch)
+"Uj" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/indestructible,
+/area/deathmatch)
+"Ur" = (
+/obj/machinery/washing_machine,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/deathmatch)
+"UD" = (
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"UH" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/indestructible,
+/area/deathmatch)
+"Vl" = (
+/turf/open/indestructible,
+/area/deathmatch)
+"Vp" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/obj/item/kirbyplants/photosynthetic,
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"VE" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/item/kirbyplants/random/dead,
+/obj/effect/decal/cleanable/vomit,
+/turf/open/indestructible,
+/area/deathmatch)
+"Wf" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/storage/medkit/fire,
+/obj/item/toy/plush/plasmamanplushie,
+/turf/open/indestructible,
+/area/deathmatch)
+"Wy" = (
+/obj/machinery/vending/drugs,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"WE" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/indestructible,
+/area/deathmatch)
+"XZ" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"Yb" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/structure/closet/firecloset/full,
+/turf/open/indestructible,
+/area/deathmatch)
+"Yo" = (
+/mob/living/basic/cat_butcherer,
+/obj/structure/bed,
+/obj/item/bedsheet/runtime,
+/obj/machinery/light/small/blacklight/directional/north,
+/turf/open/floor/wood,
+/area/deathmatch)
+"Yr" = (
+/mob/living/basic/alien/maid,
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/effect/decal/cleanable/vomit,
+/obj/machinery/light/small/blacklight/directional/north,
+/turf/open/floor/wood,
+/area/deathmatch)
+"YJ" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/rnd/destructive_analyzer,
+/turf/open/indestructible/white,
+/area/deathmatch)
+"YQ" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/indestructible/dark,
+/area/deathmatch)
+"Za" = (
+/obj/effect/spawner/structure/window/reinforced/indestructible,
+/turf/open/indestructible/plating,
+/area/deathmatch)
+"Zb" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/indestructible,
+/area/deathmatch)
+"ZO" = (
+/obj/effect/turf_decal/tile/green,
+/turf/open/indestructible,
+/area/deathmatch)
+
+(1,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+TZ
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(2,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+vq
+vq
+vq
+vq
+Sh
+vq
+vq
+vq
+vq
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(3,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+rV
+Sh
+rV
+rV
+Za
+Za
+Za
+Za
+Za
+Za
+Za
+Za
+rV
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(4,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+vq
+vq
+vq
+vq
+Sh
+vq
+zJ
+zJ
+mK
+cy
+st
+dA
+Hy
+wG
+zJ
+zJ
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(5,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+rV
+Sh
+rV
+Za
+hC
+Mn
+yq
+yq
+yq
+yq
+Mn
+Sn
+Za
+rV
+rV
+rV
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(6,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+vq
+vq
+vq
+Sh
+vq
+Za
+bL
+Mn
+Mn
+Mn
+wA
+xj
+xj
+iM
+zJ
+zJ
+zJ
+Za
+zJ
+zJ
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(7,1,1) = {"
+jw
+jw
+rV
+rV
+rV
+jw
+jw
+jw
+jw
+Sh
+jw
+Za
+wb
+Mn
+Mn
+by
+Nr
+by
+Mn
+es
+zJ
+Lr
+rP
+uX
+IR
+zJ
+rV
+jw
+jw
+jw
+jw
+jw
+"}
+(8,1,1) = {"
+jw
+rV
+zJ
+Za
+Za
+Za
+zJ
+rV
+jw
+Sh
+jw
+Za
+AZ
+Mn
+Mn
+Mn
+Wy
+Mn
+Mn
+xT
+zJ
+wM
+BV
+pL
+dv
+Za
+rV
+jw
+jw
+jw
+jw
+jw
+"}
+(9,1,1) = {"
+rV
+zJ
+zJ
+tR
+sx
+cd
+zJ
+zJ
+rV
+Sh
+jw
+Za
+iu
+Mn
+Mn
+Mn
+Nb
+Mn
+Mn
+FY
+zJ
+Ns
+ZO
+VE
+hR
+zJ
+rV
+rV
+jw
+jw
+jw
+jw
+"}
+(10,1,1) = {"
+rV
+zJ
+Lq
+Gy
+YQ
+eW
+sL
+zJ
+rV
+Sh
+rV
+Za
+MG
+yD
+qM
+qM
+aA
+qM
+qM
+Bh
+zJ
+RX
+yU
+zJ
+xL
+zJ
+zJ
+Za
+zJ
+jw
+jw
+jw
+"}
+(11,1,1) = {"
+rV
+Za
+nf
+gI
+jn
+gI
+Gm
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zJ
+zs
+ON
+zJ
+zs
+ON
+zJ
+zJ
+zJ
+hk
+Za
+Iu
+Kv
+Gl
+cs
+zJ
+jw
+jw
+jw
+"}
+(12,1,1) = {"
+jw
+Za
+jm
+ix
+gI
+gI
+zK
+fP
+nb
+fP
+eO
+wd
+pD
+pD
+sW
+Zb
+Zb
+Zb
+Zb
+ee
+pJ
+ho
+vm
+Za
+ME
+Ag
+rq
+hG
+zJ
+jw
+jw
+jw
+"}
+(13,1,1) = {"
+rV
+zJ
+Iq
+Oo
+gI
+Ot
+fg
+fP
+Nv
+fP
+iK
+QM
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+vI
+Ne
+BA
+uQ
+em
+RY
+Za
+rV
+jw
+jw
+"}
+(14,1,1) = {"
+rV
+Za
+Lq
+BL
+gI
+Vp
+OF
+zJ
+zJ
+zJ
+Hj
+Vl
+Ac
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Ac
+Vl
+Vl
+zg
+Za
+Sy
+Mn
+Gp
+qF
+Za
+rV
+jw
+jw
+"}
+(15,1,1) = {"
+rV
+zJ
+Iq
+Oo
+gI
+DV
+ju
+fP
+oD
+fP
+iK
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+Vl
+JS
+fV
+oq
+Mn
+Mn
+Qo
+Za
+rV
+jw
+jw
+"}
+(16,1,1) = {"
+jw
+Za
+mn
+EN
+gI
+gI
+zK
+fP
+Dm
+fP
+UD
+wj
+GF
+WE
+Uj
+aD
+ko
+zZ
+xe
+GA
+GA
+vB
+Yb
+Za
+ru
+jR
+YJ
+nT
+zJ
+rV
+rV
+jw
+"}
+(17,1,1) = {"
+rV
+Za
+yy
+gI
+jn
+gI
+JL
+zJ
+zJ
+zJ
+zJ
+hk
+zJ
+hk
+zJ
+zJ
+zJ
+zJ
+Za
+mo
+Za
+AE
+Za
+zJ
+zJ
+Za
+Za
+Za
+zJ
+zJ
+rV
+jw
+"}
+(18,1,1) = {"
+rV
+zJ
+Lq
+mO
+To
+nQ
+bX
+zJ
+cl
+sJ
+zJ
+Lk
+vb
+vm
+zJ
+sJ
+rO
+zJ
+Oa
+XZ
+XZ
+XZ
+XZ
+XZ
+Os
+dB
+dB
+dB
+dB
+zJ
+rV
+jw
+"}
+(19,1,1) = {"
+rV
+zJ
+zJ
+qV
+ND
+zt
+zJ
+zJ
+lF
+sJ
+Ka
+Ia
+Ac
+dv
+kY
+BH
+IA
+zJ
+Wf
+Vl
+Vl
+Vl
+Vl
+Vl
+EC
+dB
+dB
+dB
+dB
+zJ
+jw
+jw
+"}
+(20,1,1) = {"
+jw
+rV
+zJ
+Za
+Za
+Za
+zJ
+zJ
+zJ
+zJ
+zJ
+Ia
+Vl
+dv
+zJ
+zJ
+zJ
+zJ
+Es
+Vl
+Sm
+DZ
+Ps
+Vl
+vT
+zJ
+zJ
+zJ
+zJ
+zJ
+jw
+jw
+"}
+(21,1,1) = {"
+jw
+jw
+jw
+jw
+rV
+rV
+rV
+zJ
+Yo
+JX
+zJ
+Ia
+uq
+dv
+zJ
+sn
+AQ
+zJ
+su
+Vl
+pH
+zx
+Mi
+Vl
+eE
+zJ
+rV
+rV
+rV
+jw
+jw
+jw
+"}
+(22,1,1) = {"
+jw
+jw
+vq
+jw
+jw
+vq
+rV
+zJ
+gM
+sJ
+Ka
+Ia
+UH
+dv
+Ka
+sJ
+lF
+zJ
+IJ
+iV
+Vl
+Vl
+Vl
+oy
+Bu
+zJ
+rV
+rV
+jw
+jw
+jw
+jw
+"}
+(23,1,1) = {"
+jw
+jw
+vq
+rV
+rV
+vq
+jw
+zJ
+zJ
+zJ
+zJ
+Ia
+Vl
+dv
+zJ
+zJ
+zJ
+zJ
+Bc
+Iz
+DN
+El
+GY
+oN
+hA
+zJ
+rV
+jw
+jw
+jw
+jw
+jw
+"}
+(24,1,1) = {"
+jw
+fA
+Sh
+Sh
+Sh
+Sh
+Sh
+zJ
+Yr
+LY
+zJ
+Ia
+Ac
+dv
+zJ
+is
+gH
+zJ
+zJ
+Za
+Za
+zJ
+Za
+Za
+zJ
+zJ
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(25,1,1) = {"
+jw
+rV
+vq
+rV
+rV
+vq
+jw
+zJ
+lF
+fm
+Ka
+zw
+Ur
+Lt
+Ka
+sJ
+lF
+zJ
+rV
+rV
+jw
+Sh
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(26,1,1) = {"
+jw
+jw
+vq
+jw
+jw
+vq
+rV
+zJ
+Za
+zJ
+zJ
+zJ
+Za
+zJ
+zJ
+zJ
+Za
+zJ
+rV
+vq
+vq
+Sh
+vq
+vq
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(27,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+rV
+rV
+rV
+rV
+rV
+jw
+jw
+jw
+jw
+rV
+rV
+rV
+rV
+jw
+rV
+Sh
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(28,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+rV
+Sh
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(29,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+vq
+vq
+Sh
+vq
+vq
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(30,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+rV
+TZ
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(31,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+rV
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
+(32,1,1) = {"
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+jw
+"}
diff --git a/_maps/deathmatch/sunrise.dmm b/_maps/deathmatch/sunrise.dmm
index 31594d8e277..b4de46385cd 100644
--- a/_maps/deathmatch/sunrise.dmm
+++ b/_maps/deathmatch/sunrise.dmm
@@ -225,7 +225,7 @@
/area/deathmatch)
"oR" = (
/obj/structure/table/bronze,
-/obj/item/nullrod/bostaff,
+/obj/item/nullrod/claymore/bostaff,
/obj/structure/window/spawner/directional/south,
/obj/structure/window/spawner/directional/west,
/obj/machinery/light{
diff --git a/_maps/icebox.json b/_maps/icebox.json
index 3e10e516bf3..6e9f4000611 100644
--- a/_maps/icebox.json
+++ b/_maps/icebox.json
@@ -48,6 +48,9 @@
"job_changes": {
"Captain": {
"special_charter": "moon"
+ },
+ "Cook": {
+ "additional_cqc_areas": ["/area/station/service/bar/atrium"]
}
}
}
diff --git a/_maps/map_files/Birdshot/birdshot.dmm b/_maps/map_files/Birdshot/birdshot.dmm
index 00961dbd7f5..2087d98e0ee 100644
--- a/_maps/map_files/Birdshot/birdshot.dmm
+++ b/_maps/map_files/Birdshot/birdshot.dmm
@@ -41227,9 +41227,9 @@
/turf/open/floor/iron/dark/small,
/area/station/security/checkpoint/customs)
"ohN" = (
-/obj/item/kirbyplants/random,
/obj/item/radio/intercom/directional/north,
/obj/machinery/firealarm/directional/west,
+/obj/machinery/vending/cytopro,
/turf/open/floor/iron/white,
/area/station/science/cytology)
"oig" = (
@@ -52468,6 +52468,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
},
+/obj/item/kirbyplants/random,
/turf/open/floor/iron/white,
/area/station/science/cytology)
"rYx" = (
@@ -53177,6 +53178,7 @@
name = "Detective Requests Console"
},
/obj/machinery/light/small/directional/west,
+/obj/structure/detectiveboard/directional/west,
/turf/open/floor/wood,
/area/station/security/detectives_office)
"smf" = (
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index ffb2192c4d0..9d3333db69a 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -4050,6 +4050,32 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/maintenance/solars/port/fore)
+<<<<<<< HEAD
+=======
+"aYN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aYO" = (
/obj/structure/chair/pew/right,
/turf/open/floor/iron/chapel{
@@ -18854,6 +18880,23 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron,
/area/station/maintenance/department/science)
+<<<<<<< HEAD
+=======
+"eIh" = (
+/obj/machinery/computer/robotics{
+ dir = 8
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eIi" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -22241,6 +22284,18 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/service/kitchen)
+<<<<<<< HEAD
+=======
+"fyH" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_x = 6
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = -8
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fyP" = (
/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
/obj/effect/turf_decal/siding/yellow{
@@ -24860,6 +24915,10 @@
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 1
},
+<<<<<<< HEAD
+=======
+/obj/machinery/vending/cytopro,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/science/xenobiology)
"gfR" = (
@@ -25002,6 +25061,7 @@
},
/obj/effect/turf_decal/stripes/line{
dir = 6
+<<<<<<< HEAD
},
/turf/open/floor/plating,
/area/station/maintenance/department/electrical)
@@ -25972,6 +26032,999 @@
"gsZ" = (
/obj/machinery/dna_scannernew,
/obj/effect/turf_decal/bot,
+=======
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"gic" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"gii" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"gij" = (
+/obj/structure/table,
+/obj/item/hand_tele,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"giu" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/science/auxlab/firing_range)
+"giw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay)
+"giz" = (
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/service)
+"giA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/greenglow,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/medical/abandoned)
+"giC" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Central Hallway - Port";
+ name = "hallway camera"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"giY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"gjc" = (
+/obj/structure/cable,
+/obj/machinery/button/flasher{
+ id = "Cell 4";
+ name = "Prisoner Flash";
+ pixel_x = 25;
+ pixel_y = 7
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/button/door/directional/east{
+ id = "permashut4";
+ name = "Cell Lockdown Button";
+ pixel_y = -6;
+ req_access = list("brig")
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"gjg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/cafeteria)
+"gjh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"gjk" = (
+/obj/structure/chair,
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security Post - Departures Holding Cell";
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/report_crimes/directional/north,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/escape)
+"gjl" = (
+/obj/machinery/computer/upload/borg{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"gjB" = (
+/obj/structure/cable,
+/obj/structure/closet/emcloset,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/processing)
+"gjE" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/paramedic)
+"gjI" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible,
+/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{
+ dir = 4;
+ name = "CO2 to Pure"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"gkp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"gkt" = (
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/box,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "secmechbay";
+ name = "Security Mech Bay Shutters"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"gku" = (
+/obj/machinery/meter,
+/obj/machinery/door/window/right/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/turf_decal/siding/dark_red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"gkx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/grille_or_waste,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/chapel)
+"gkB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"gkG" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/exit)
+"gkI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/medbay/lobby)
+"gkP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/pdapainter/supply,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"gkU" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/xenobiology)
+"gkW" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase,
+/obj/structure/sign/poster/official/help_others/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"glb" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"gld" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"glv" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"glW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gmc" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"gme" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/stack/cable_coil,
+/obj/effect/turf_decal/bot,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gmh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/table/wood,
+/obj/item/pai_card,
+/turf/open/floor/carpet/red,
+/area/station/hallway/secondary/service)
+"gml" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"gmo" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"gmx" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron,
+/area/station/engineering/supermatter/room)
+"gmD" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Engineering Auxiliary Power"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"gmE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/auxlab/firing_range)
+"gmI" = (
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Cytology Pen";
+ req_access = list("research")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"gmK" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/mining_weather_monitor/directional/south,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"gmP" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"gmQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"gmT" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/gloves/color/fyellow,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"gmY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"gmZ" = (
+/obj/item/stack/cable_coil,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 5
+ },
+/obj/structure/table,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"gnb" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/medical_kiosk,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay - Lobby";
+ name = "medbay camera";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"gng" = (
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"gnh" = (
+/obj/structure/bookcase/random/nonfiction,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/service/library)
+"gnj" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/security/detectives_office/private_investigators_office)
+"gnw" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/engineering/supermatter/room)
+"gnz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"gnA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"gnG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gnH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"gnO" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"gnS" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"gnW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/port)
+"goa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"goc" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_y = -38
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/south{
+ id = "teleportershutters";
+ name = "Teleporter Shutters";
+ pixel_x = -6;
+ req_access = list("command")
+ },
+/obj/machinery/button/door/directional/south{
+ id = "evastorage";
+ name = "E.V.A. Shutters";
+ pixel_x = 6;
+ req_access = list("command")
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"goj" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 33
+ },
+/turf/open/floor/carpet/green,
+/area/station/commons/dorms)
+"gor" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gox" = (
+/obj/effect/turf_decal/trimline/neutral/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"goy" = (
+/obj/machinery/status_display/ai/directional/west,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/structure/sink/directional/east,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"goD" = (
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"goV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gpd" = (
+/obj/machinery/door/window/right/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/neutral/filled/line,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/abandoned_gambling_den)
+"gpg" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron,
+/area/station/maintenance/solars/starboard/aft)
+"gpi" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/station/service/electronic_marketing_den)
+"gpq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "paramed_dispatch";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/paramedic)
+"gps" = (
+/obj/structure/closet/secure_closet/bar,
+/obj/item/storage/photo_album/bar,
+/obj/item/radio/intercom/directional/east,
+/obj/item/storage/dice,
+/turf/open/floor/iron/checker,
+/area/station/service/bar/backroom)
+"gpw" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"gpy" = (
+/obj/structure/reflector/single,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"gpD" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/iron/half{
+ dir = 1
+ },
+/area/station/cargo/miningoffice)
+"gpI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"gpY" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/chapel/storage)
+"gqd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gqe" = (
+/obj/structure/table/reinforced,
+/obj/item/pipe_dispenser{
+ pixel_x = 2;
+ pixel_y = -4
+ },
+/obj/item/pipe_dispenser,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"gqf" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot_red,
+/obj/item/clothing/suit/apron/chef{
+ desc = "A white smock used by barbers to remain hair free.";
+ name = "barber smock"
+ },
+/obj/item/razor{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/razor{
+ pixel_x = -2
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/barber)
+"gqm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"gqq" = (
+/obj/structure/dresser,
+/turf/open/floor/iron/grimy,
+/area/station/command/heads_quarters/hop)
+"gqA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/office)
+"gqF" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gqH" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Ports"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gqR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/maintenance/disposal/incinerator)
+"gqZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"gri" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/random/directional/south,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"grl" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"grm" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"grp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"grq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/department/medical/morgue)
+"grz" = (
+/obj/machinery/door/window/left/directional/east,
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/abandoned_gambling_den)
+"grA" = (
+/obj/effect/spawner/random/structure/furniture_parts,
+/obj/structure/closet/crate/decorations,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/port)
+"grE" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Virology - Work Room";
+ name = "virology camera";
+ network = list("ss13","medbay","virology")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"grK" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/machinery/computer/atmos_control/plasma_tank{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"grM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/reagent_dispensers/plumbed{
+ name = "bar water reservoir"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/crew_quarters/bar)
+"grN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/toilet/locker)
+"grO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/pumproom)
+"grV" = (
+/obj/effect/turf_decal/arrows/red{
+ dir = 4;
+ pixel_x = -15
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"gsf" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/matches{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/lighter,
+/obj/item/lighter{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/fax{
+ fax_name = "Engineering Lobby";
+ name = "Engineering Lobby Fax Machine"
+ },
+/turf/open/floor/wood,
+/area/station/engineering/break_room)
+"gsh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/auxlab/firing_range)
+"gsy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gsz" = (
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"gsG" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/servo,
+/obj/machinery/light_switch/directional/east,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/east{
+ id = "rdrnd";
+ name = "Window Shutters";
+ pixel_x = 38;
+ req_access = list("science")
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"gsH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/medbay/lobby)
+"gsO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/library/abandoned)
+"gsP" = (
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/photocopier,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"gsV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"gsY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"gsZ" = (
+/obj/machinery/dna_scannernew,
+/obj/effect/turf_decal/bot,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/firealarm/directional/south,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
dir = 8
@@ -26984,6 +28037,7 @@
},
/turf/open/floor/iron,
/area/station/medical/medbay)
+<<<<<<< HEAD
"gFz" = (
/obj/machinery/status_display/ai/directional/north,
/obj/machinery/button/door/directional/east{
@@ -27011,6 +28065,8 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gFB" = (
/obj/effect/turf_decal/siding/white{
dir = 9
@@ -27234,6 +28290,36 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"gIw" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/button/door/directional/east{
+ id = "hosprivacy";
+ name = "Privacy Control";
+ pixel_y = 6;
+ req_access = list("hos")
+ },
+/obj/machinery/button/door/directional/east{
+ id = "hosspace";
+ name = "Space Shutters Control";
+ pixel_y = -6;
+ req_access = list("hos")
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east{
+ pixel_x = 38;
+ pixel_y = 6
+ },
+/obj/machinery/light_switch/directional/east{
+ pixel_x = 37;
+ pixel_y = -6
+ },
+/obj/structure/tank_holder/extinguisher,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gIx" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/effect/decal/cleanable/dirt,
@@ -30793,6 +31879,7 @@
/area/station/medical/virology)
"hGW" = (
/obj/machinery/mass_driver/ordnance{
+<<<<<<< HEAD
dir = 8
},
/turf/open/floor/plating,
@@ -31735,10 +32822,103 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
name = "Starboard Primary Hallway"
+=======
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"hGZ" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"hHi" = (
+/obj/structure/window/spawner/directional/south,
+/obj/structure/sign/poster/official/random/directional/north,
+/obj/structure/water_source/puddle,
+/turf/open/misc/sandy_dirt,
+/area/station/security/prison/garden)
+"hHo" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/chem_heater/withbuffer,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/medical/pharmacy)
+"hHt" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/effect/landmark/start/head_of_security,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/command/heads_quarters/hos)
+"hHv" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/paramedic)
+"hHx" = (
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/station/service/theater/abandoned)
+"hHF" = (
+/turf/open/floor/plating{
+ icon_state = "foam_plating"
+ },
+/area/station/maintenance/department/science/xenobiology)
+"hHJ" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/station/engineering/break_room)
+"hHQ" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"hHS" = (
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hHW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"hHX" = (
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/service/abandoned_gambling_den)
+"hIf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+<<<<<<< HEAD
/obj/effect/turf_decal/stripes/line{
dir = 4
},
@@ -32099,6 +33279,1215 @@
pixel_x = 3;
pixel_y = 3
},
+=======
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"hIh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/supermatter/room)
+"hIo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"hIs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal)
+"hIy" = (
+/obj/machinery/door/airlock/medical{
+ name = "Psychology"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/psychology,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/navigate_destination,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/medical/psychology)
+"hIB" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "rdordnance";
+ name = "Ordnance Lab Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/science/ordnance/storage)
+"hIH" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"hIP" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"hIQ" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"hIU" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"hJc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"hJj" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"hJn" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/suture,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay - Treatment Center";
+ name = "medbay camera";
+ network = list("ss13","medbay")
+ },
+/obj/structure/table/reinforced/rglass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/medical/treatment_center)
+"hJo" = (
+/obj/structure/table/wood,
+/obj/item/folder/white{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/folder/red,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office/private_investigators_office)
+"hJs" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"hJv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"hJz" = (
+/turf/open/floor/iron,
+/area/station/engineering/atmos/hfr_room)
+"hJG" = (
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/commons/fitness/recreation)
+"hJM" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/recharge_floor,
+/area/station/science/robotics/mechbay)
+"hJP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 6
+ },
+/obj/machinery/duct,
+/obj/effect/landmark/start/bartender,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"hKE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/service/hydroponics)
+"hKF" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible,
+/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{
+ dir = 4;
+ name = "O2 To Pure"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hKG" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/station/service/library)
+"hKH" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"hKO" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hKZ" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/wardrobe/atmos_wardrobe,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"hLa" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"hLe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "brigprison";
+ name = "Prison Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/security/prison)
+"hLf" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hLq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/fore)
+"hLt" = (
+/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/closed/wall,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hLA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet/orange,
+/area/station/commons/dorms)
+"hLM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/service/abandoned_gambling_den)
+"hMa" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/welding,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/science/lab)
+"hMd" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"hMg" = (
+/obj/machinery/pdapainter/security,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hos)
+"hMp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"hMx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/prison/directional/east,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"hMI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "viro_private_shutters";
+ name = "Virology Privacy Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"hMO" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"hMP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"hNb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/medical/morgue)
+"hNg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"hNp" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/edge{
+ dir = 4
+ },
+/area/station/engineering/atmos/project)
+"hNr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"hNu" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xeniobiology - Xenobiology Computers";
+ name = "xenobiology camera";
+ network = list("ss13","xeno","rd")
+ },
+/obj/structure/chair/office/light,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hNx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/toilet/locker)
+"hNP" = (
+/obj/structure/sign/poster/contraband/random/directional/west,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/fore)
+"hNS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"hNT" = (
+/obj/structure/chair/pew/right,
+/turf/open/floor/iron/chapel{
+ dir = 9
+ },
+/area/station/service/chapel)
+"hNW" = (
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"hOa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/poddoor{
+ id = "engstorage";
+ name = "Engineering Secure Storage Lockdown"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hOk" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/lockers)
+"hOw" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/command/heads_quarters/hos)
+"hOx" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/desk_bell{
+ pixel_y = 5
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "commissaryshutters";
+ name = "Vacant Commissary Shutters"
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/vacant_room/commissary)
+"hOz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "brigwindows";
+ name = "Brig Front Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig)
+"hOY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hPc" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/valve/digital,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/maintenance/department/electrical)
+"hPd" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "maint_contraption";
+ pixel_x = -8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/tile/neutral/anticorner{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_corner,
+/area/station/maintenance/port/aft)
+"hPg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/ai_monitored/command/storage/eva)
+"hPh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/tank_holder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hPk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"hPs" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "evashutters";
+ name = "E.V.A. Storage Shutters"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"hPu" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/chapel)
+"hPw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"hPx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/security)
+"hPJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hPN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/safe)
+"hPO" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/sign/warning/vacuum/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/hallway)
+"hQj" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hQq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/office)
+"hQr" = (
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/warning/deathsposal/directional/east,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/machinery/button/door/directional/north{
+ id = "viro_private_shutters";
+ name = "Privacy Shutters";
+ pixel_y = 36
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hQs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hQu" = (
+/obj/machinery/duct,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/yellow/warning,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/project)
+"hQx" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/library/abandoned)
+"hQA" = (
+/obj/effect/turf_decal/trimline/red/filled/corner,
+/obj/machinery/camera/directional/east{
+ c_tag = "Science - Starboard Hallway";
+ name = "science camera";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"hQF" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark/corner,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hQK" = (
+/obj/structure/reflector/box,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"hQV" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/edge,
+/area/station/hallway/primary/central/aft)
+"hRj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"hRq" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/camera/directional/east{
+ c_tag = "AI Satellite - Port";
+ name = "ai camera";
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hRs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/crate_loot,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"hRy" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/engine/atmos)
+"hRH" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hRI" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"hRV" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"hRX" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"hSa" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"hSd" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron,
+/area/station/maintenance/solars/starboard/fore)
+"hSf" = (
+/obj/structure/table,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/item/relic,
+/obj/item/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "sci_experimentor";
+ name = "Experimentor Blast Door"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+"hSi" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Xenobiology - Killroom Chamber";
+ name = "xenobiology camera";
+ network = list("ss13","xeno","rd")
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/science/xenobiology)
+"hSl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/station/service/kitchen/abandoned)
+"hSu" = (
+/obj/effect/spawner/random/trash/box,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/effect/spawner/random/trash/botanical_waste,
+/obj/item/reagent_containers/cup/glass/waterbottle/empty,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"hSx" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hSE" = (
+/obj/structure/chair/stool/bar/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/grimy,
+/area/station/service/abandoned_gambling_den)
+"hST" = (
+/obj/structure/destructible/cult/item_dispenser/archives/library,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/station/service/library/abandoned)
+"hTg" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light_switch/directional/north{
+ pixel_x = -8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"hTi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"hTk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hTl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hTm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hTq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "corporatelounge";
+ name = "Corporate Lounge Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/corporate_showroom)
+"hTr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/secbot/beepsky/armsky,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"hTv" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hTR" = (
+/obj/structure/closet/crate/coffin,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/station/service/chapel/storage)
+"hUb" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port Mix to Engine"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hUh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/structure/sign/poster/random/directional/south,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/service)
+"hUm" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/vending/coffee,
+/turf/open/space/basic,
+/area/space/nearstation)
+"hUt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/closet/radiation,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hUx" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/bot,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/status_display/ai/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"hUB" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/checker,
+/area/station/engineering/atmos/mix)
+"hUD" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/directional{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/service/abandoned_gambling_den)
+"hUE" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/warning,
+/obj/effect/turf_decal/siding/yellow,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hUK" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics - co2 Cell";
+ name = "atmospherics camera"
+ },
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"hUO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"hUU" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/chair/sofa/bench{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"hUV" = (
+/obj/structure/sign/warning/no_smoking,
+/turf/closed/wall,
+/area/station/engineering/atmos/storage)
+"hVi" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"hVt" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hVx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay)
+"hVy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/genetics)
+"hVA" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hVB" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Airlock"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/iron,
+/area/station/maintenance/department/science/xenobiology)
+"hVE" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/space,
+/area/space/nearstation)
+"hVI" = (
+/obj/structure/table,
+/obj/item/plant_analyzer,
+/obj/item/hatchet,
+/obj/item/cultivator,
+/obj/item/shovel/spade,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"hVV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet/blue,
+/area/station/medical/psychology)
+"hWh" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"hWq" = (
+/obj/structure/chair/comfy/brown{
+ buildstackamount = 0;
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/station/command/meeting_room/council)
+"hWz" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/hfr_room)
+"hWA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "hopblast";
+ name = "HoP Blast Door"
+ },
+/obj/machinery/door/window/brigdoor/left/directional/east{
+ name = "Access Desk";
+ req_access = list("hop")
+ },
+/obj/machinery/door/window/right/directional/west{
+ name = "Access Queue"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"hWF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hWJ" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/aft)
+"hWW" = (
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/project)
+"hWY" = (
+/obj/structure/reflector/double,
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"hXf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/department/science)
+"hXg" = (
+/turf/closed/wall,
+/area/station/cargo/bitrunning/den)
+"hXi" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/transfer)
+"hXm" = (
+/obj/structure/closet/emcloset,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hXo" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Cooling to Filters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/box/corners,
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/supermatter/room)
+"hXu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hXw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"hXx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"hXB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"hXO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/science/research/abandoned)
+"hXQ" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Monkey Pen";
+ req_access = list("genetics")
+ },
+/obj/structure/flora/bush/lavendergrass,
+/obj/structure/flora/bush/flowers_yw,
+/turf/open/floor/grass,
+/area/station/science/genetics)
+"hXZ" = (
+/obj/item/storage/box/teargas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/handcuffs,
/obj/item/storage/box/flashbangs{
pixel_x = -3;
@@ -39075,6 +41464,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"jIN" = (
/obj/machinery/keycard_auth/wall_mounted/directional/south{
pixel_y = -38
@@ -39096,6 +41486,8 @@
},
/turf/open/floor/carpet,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jIQ" = (
/obj/effect/landmark/generic_maintenance_landmark,
/obj/structure/chair/wood{
@@ -42701,6 +45093,27 @@
/obj/item/storage/crayons,
/turf/open/floor/wood,
/area/station/service/library/abandoned)
+<<<<<<< HEAD
+=======
+"kEp" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kEw" = (
/obj/structure/cable,
/obj/structure/reagent_dispensers/plumbed{
@@ -50601,6 +53014,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"mEB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -50624,6 +53038,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron/dark,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mEH" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -55495,6 +57911,7 @@
},
/turf/open/floor/iron,
/area/station/service/kitchen/abandoned)
+<<<<<<< HEAD
"nTg" = (
/obj/structure/table/reinforced,
/obj/item/folder/yellow,
@@ -55526,6 +57943,8 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nTn" = (
/obj/structure/table,
/obj/effect/turf_decal/trimline/neutral/filled/corner{
@@ -55979,6 +58398,7 @@
},
/turf/open/floor/iron,
/area/station/security/checkpoint/escape)
+<<<<<<< HEAD
"nZG" = (
/obj/machinery/keycard_auth/wall_mounted/directional/south{
pixel_x = 6
@@ -55988,6 +58408,8 @@
},
/turf/open/floor/carpet,
/area/station/command/heads_quarters/captain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nZK" = (
/obj/effect/turf_decal/tile/brown{
dir = 1
@@ -70834,6 +73256,7 @@
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating,
/area/station/command/heads_quarters/qm)
+<<<<<<< HEAD
"rLs" = (
/obj/structure/table/wood,
/obj/machinery/keycard_auth/wall_mounted/directional/west,
@@ -70841,6 +73264,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rLt" = (
/obj/machinery/camera/directional/north{
c_tag = "Holodeck Control";
@@ -72042,6 +74467,7 @@
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
"rYA" = (
+<<<<<<< HEAD
/turf/closed/wall,
/area/station/maintenance/department/security)
"rYE" = (
@@ -74588,6 +77014,2581 @@
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 8
},
+=======
+/turf/closed/wall,
+/area/station/maintenance/department/security)
+"rYE" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/button/door{
+ id = "xeno4";
+ name = "Containment Control";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"rYR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"rZe" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/internals/anesthetic{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/anesthetic,
+/obj/item/tank/internals/anesthetic{
+ pixel_x = -3
+ },
+/obj/item/clothing/mask/breath/medical{
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/breath/medical{
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/status_display/evac/directional/south,
+/obj/machinery/door/window/left/directional/north{
+ name = "Surgical Supplies";
+ req_access = list("surgery")
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/medical/surgery/theatre)
+"rZf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"rZl" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/green,
+/obj/structure/cable,
+/obj/machinery/requests_console/directional/north{
+ department = "Virology";
+ name = "Virology Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/medical/virology)
+"rZt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/green/filled/warning,
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"rZw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/port)
+"rZy" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"rZE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"rZF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/abandoned_gambling_den/gaming)
+"rZI" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/spawner/random/clothing/costume,
+/obj/item/clothing/neck/tie/black,
+/obj/effect/turf_decal/bot/right,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/theater/abandoned)
+"rZL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"rZU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/department/engine/atmos)
+"sao" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"sau" = (
+/obj/machinery/blackbox_recorder,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+"sav" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/research)
+"saz" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"saA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"saB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/plating,
+/area/station/maintenance/department/crew_quarters/bar)
+"saC" = (
+/obj/machinery/photocopier,
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"saD" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"saE" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Port to Filter"
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"saK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen/abandoned)
+"saR" = (
+/obj/machinery/disposal/bin,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"saS" = (
+/obj/structure/closet/crate,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/crowbar/red,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 20
+ },
+/obj/item/gps/engineering,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"saT" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/security/lockers)
+"sbf" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"sbh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"sbl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/sign/warning/biohazard/directional/south,
+/turf/open/floor/iron,
+/area/station/maintenance/department/science)
+"sbP" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/crew_quarters/bar)
+"sbT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/large,
+/area/station/medical/surgery/theatre)
+"sbV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"sbW" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/cafeteria)
+"sbX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"sca" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/large,
+/area/station/medical/medbay)
+"sch" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/mix)
+"scn" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"scp" = (
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot/left,
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/obj/machinery/modular_computer/preset/cargochat/science{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/research)
+"scs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"scy" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"scR" = (
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"scU" = (
+/obj/structure/easel,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_twentythree,
+/turf/open/floor/plating,
+/area/station/service/library/abandoned)
+"scX" = (
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ name = "Primary AI Core Access";
+ req_access = list("ai_upload")
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"sdi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible,
+/obj/machinery/meter/monitored/distro_loop,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/pumproom)
+"sdq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"sdw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/medical/virology)
+"sdB" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"sdC" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/maintenance/solars/port/fore)
+"sdJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"sdK" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"sdO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"sdV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/wood/large,
+/area/station/command/corporate_showroom)
+"sef" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/hallway/primary/port)
+"seg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/iron,
+/area/station/medical/storage)
+"sez" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay)
+"seD" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "viro_private_shutters";
+ name = "Virology Privacy Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"seE" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Docking Port"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"seX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"sfc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "genetics_shutters";
+ name = "Genetics Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"sfe" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"sfs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"sfw" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"sfy" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/computer/shuttle/mining/common,
+/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";
+ pixel_y = 32
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/smooth_large,
+/area/station/hallway/secondary/entry)
+"sfA" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"sfB" = (
+/obj/effect/spawner/random/structure/girder,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"sfC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=hall2";
+ location = "hall1"
+ },
+/obj/effect/turf_decal/plaque{
+ icon_state = "L5"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"sfD" = (
+/obj/effect/spawner/random/structure/tank_holder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"sfE" = (
+/obj/effect/decal/cleanable/xenoblood,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"sfH" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"sfN" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/xenobiology)
+"sfW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"sgd" = (
+/obj/structure/cable,
+/obj/machinery/biogenerator,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron/checker,
+/area/station/service/hydroponics/garden/abandoned)
+"sgh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"sgj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/valve,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/maintenance/department/electrical)
+"sgp" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/medical/pharmacy)
+"sgA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/gulag_item_reclaimer{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/processing)
+"sgD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"sgI" = (
+/obj/docking_port/stationary/escape_pod{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
+"sgZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"shc" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/smartfridge/drying,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"shm" = (
+/obj/effect/spawner/random/structure/table_or_rack,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"shJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"shM" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/grimy,
+/area/station/command/heads_quarters/hos)
+"shO" = (
+/obj/structure/cable,
+/turf/open/floor/circuit/green,
+/area/station/science/xenobiology)
+"shP" = (
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"shU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"shZ" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/station/service/barber)
+"sid" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/janitor,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/checker,
+/area/station/service/janitor)
+"sie" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"sii" = (
+/obj/structure/table/wood/poker,
+/obj/item/storage/dice,
+/obj/effect/spawner/random/entertainment/money_large,
+/turf/open/floor/iron/grimy,
+/area/station/service/abandoned_gambling_den)
+"sik" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"sim" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/bed,
+/obj/item/bedsheet/captain,
+/obj/effect/landmark/start/captain,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"siu" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/warden)
+"siF" = (
+/obj/machinery/mineral/ore_redemption,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/box,
+/obj/machinery/door/window/left/directional/south{
+ name = "Ore Redemption Access";
+ req_access = list("mineral_storeroom")
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"siI" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/box/white/corners,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/xenobiology)
+"siT" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/bot,
+/obj/structure/cable/layer3,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"siV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/fore)
+"siX" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/theater)
+"sja" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/stool/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"sjh" = (
+/obj/structure/statue/sandstone/venus{
+ name = "Justice"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"sji" = (
+/obj/structure/closet/crate/preopen,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/bot,
+/obj/item/electronics/apc,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"sjm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay)
+"sjt" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/entry)
+"sjz" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"sjD" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/bot,
+/obj/item/analyzer,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/hfr_room)
+"sjH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port)
+"ske" = (
+/obj/effect/spawner/random/entertainment/arcade,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/abandoned_gambling_den/gaming)
+"skf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/eva/abandoned)
+"skg" = (
+/obj/machinery/iv_drip,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/east,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Virology - Cell 2";
+ name = "virology camera";
+ network = list("ss13","medbay","virology")
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"skr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/vending/snackvend,
+/turf/open/floor/plating,
+/area/station/service/abandoned_gambling_den)
+"skx" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"sky" = (
+/obj/machinery/light_switch/directional/north{
+ pixel_x = -8
+ },
+/obj/machinery/button/door{
+ id = "rdordnance";
+ name = "Ordnance Containment Control";
+ pixel_x = 8;
+ pixel_y = 26;
+ req_access = list("science")
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Science - Ordnance Lab Access";
+ name = "science camera";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"skC" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"skD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"skI" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"skQ" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/box/red,
+/obj/structure/sign/poster/official/help_others/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"skX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"skZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"sle" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ name = "Warden's Desk";
+ req_access = list("armory")
+ },
+/obj/machinery/door/window/left/directional/west{
+ name = "Warden's Desk"
+ },
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/warden)
+"slp" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/engineering)
+"slr" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel)
+"slx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/departments/engineering/directional/north,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"slC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/status_display/ai/directional/north,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"slE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit)
+"slG" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"slW" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/port)
+"slZ" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/chapel)
+"sma" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/abandoned_gambling_den/gaming)
+"smj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/department/science/xenobiology)
+"smF" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Judge"
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"smG" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"smJ" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/escape)
+"smN" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/lesser)
+"smO" = (
+/obj/structure/sign/warning/electric_shock,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/starboard/fore)
+"smR" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"smU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock{
+ name = "Auxiliary Storage Closet"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"smV" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/space,
+/area/space/nearstation)
+"snc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"snj" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"snE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "genetics_shutters";
+ name = "Genetics Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"snK" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"snW" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced/spawner/directional/east{
+ pixel_x = 3
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/spawner/random/armory/disablers,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"sob" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/circuits)
+"sog" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump/on/supply/visible/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/maintenance/disposal/incinerator)
+"sox" = (
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/command/heads_quarters/hop)
+"soK" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"soO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering - Supermatter Foyer";
+ name = "engineering camera";
+ network = list("ss13","engine")
+ },
+/obj/structure/rack,
+/obj/item/analyzer,
+/obj/item/geiger_counter,
+/obj/item/geiger_counter{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"soU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/large,
+/area/station/medical/paramedic)
+"spa" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/obj/structure/table/wood/poker,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/turf/open/floor/plating,
+/area/station/service/abandoned_gambling_den)
+"spd" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 2;
+ name = "Genetics Junction"
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/mail_sorting/science/genetics,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/science/research)
+"spe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/sign/warning/fire/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"spq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"spB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"spG" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/commons/vacant_room/office)
+"spI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/hallway)
+"spJ" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"spV" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/space/basic,
+/area/space/nearstation)
+"sqd" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"sqj" = (
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay - Coldroom";
+ dir = 9;
+ name = "medbay camera";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/bot_white{
+ color = "#435a88"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/medical/coldroom)
+"sqm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"sqp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/commons/toilet/locker)
+"squ" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/medical/medbay/lobby)
+"sqD" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/structure/sign/poster/official/work_for_a_future/directional/south,
+/turf/open/floor/carpet,
+/area/station/commons/vacant_room/office)
+"sqI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/half,
+/area/station/service/hydroponics)
+"sqM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/effect/turf_decal/bot,
+/obj/item/food/meat/slab/monkey,
+/obj/item/food/meat/slab/monkey,
+/turf/open/floor/iron/dark,
+/area/station/service/kitchen/coldroom)
+"sqT" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"sqX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"srb" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/lobby)
+"srd" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/bin,
+/obj/structure/sign/warning/deathsposal/directional/south,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/checker,
+/area/station/maintenance/disposal/incinerator)
+"srg" = (
+/obj/structure/table/glass,
+/obj/item/food/pizzaslice/vegetable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/bless_this_spess/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut/observatory)
+"srh" = (
+/obj/machinery/door/window/brigdoor/security/cell/right/directional/west{
+ id = "brig1";
+ name = "Cell 1"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/dark_red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"srn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/large,
+/area/station/science/research)
+"srI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/abandoned_gambling_den)
+"ssb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"ssj" = (
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/department/security)
+"ssp" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"ssr" = (
+/obj/machinery/button/door{
+ id = "brigwindows";
+ name = "Cell Window Control";
+ pixel_x = -32;
+ pixel_y = -26;
+ req_access = list("security")
+ },
+/obj/machinery/button/door{
+ id = "brigfront";
+ name = "Brig Access Control";
+ pixel_x = -26;
+ pixel_y = -36;
+ req_access = list("security")
+ },
+/obj/machinery/button/door{
+ id = "brigprison";
+ name = "Prison Lockdown";
+ pixel_x = -38;
+ pixel_y = -36;
+ req_access = list("brig")
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/security/warden)
+"sst" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron,
+/area/station/engineering/supermatter/room)
+"ssy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"ssM" = (
+/obj/structure/sign/departments/medbay/alt/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departures Hallway"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit)
+"ssR" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"ssY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/plumbed{
+ name = "dormitory water reservoir"
+ },
+/obj/effect/turf_decal/delivery/white{
+ color = "#52B4E9"
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/department/security)
+"stc" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/medical/pharmacy)
+"stx" = (
+/obj/structure/chair/pew/left,
+/turf/open/floor/iron/chapel{
+ dir = 10
+ },
+/area/station/service/chapel)
+"stA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"stC" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood/large,
+/area/station/command/corporate_showroom)
+"stD" = (
+/obj/machinery/suit_storage_unit/engine,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/storage)
+"stK" = (
+/obj/structure/closet/crate/coffin,
+/turf/open/floor/plating,
+/area/station/service/chapel/storage)
+"stN" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/theater)
+"suj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"sup" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"suw" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/carpet,
+/area/station/commons/vacant_room/office)
+"suA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/structure/sign/warning/no_smoking/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/department/engine/atmos)
+"suB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random,
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/light_switch/directional/west{
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/toilet/locker)
+"suE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"suH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/modular_computer/preset/civilian,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage_shared)
+"suQ" = (
+/obj/structure/cable,
+/obj/structure/table/wood/fancy/blue,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/door/window/right/directional/west{
+ name = "Core Modules";
+ req_access = list("captain")
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"suZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/atmospherics,
+/obj/item/book/manual/wiki/atmospherics{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/pipe_dispenser,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/engineering/atmos)
+"sva" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/warning/engine_safety/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"svc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xeno7";
+ name = "Containment Control";
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"svd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/spawner/random/engineering/tool,
+/turf/open/floor/plating,
+/area/station/maintenance/department/security)
+"svf" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/light_switch/directional/east{
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/checker,
+/area/station/service/hydroponics/garden/abandoned)
+"svj" = (
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/xenobiology)
+"svm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"svt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/service/abandoned_gambling_den)
+"svz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"svO" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"svW" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"svX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"swf" = (
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ id = "medsci-cell";
+ name = "Med-Sci Cell";
+ req_access = list("security")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/dark/side,
+/area/station/security/checkpoint/medical/medsci)
+"swj" = (
+/obj/structure/table/wood,
+/obj/machinery/fax{
+ fax_name = "Captain's Office";
+ name = "Captain's Fax Machine"
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"swn" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"swD" = (
+/obj/machinery/power/emitter,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"swP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/commons/fitness/recreation)
+"swR" = (
+/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/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"swY" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chem_lab_maint_windows";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"sxk" = (
+/obj/structure/barricade/wooden,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/iron,
+/area/station/service/abandoned_gambling_den)
+"sxp" = (
+/obj/structure/table/reinforced,
+/obj/item/analyzer{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/analyzer{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"sxr" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/requests_console/directional/south{
+ department = "Bridge";
+ name = "Bridge Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/item/papercutter,
+/turf/open/floor/iron/grimy,
+/area/station/command/bridge)
+"sxD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"sxE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/purple/filled/mid_joiner,
+/obj/effect/turf_decal/trimline/purple/filled/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/science/ordnance/office)
+"sxG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/medical{
+ name = "Medbay Desk"
+ },
+/turf/open/floor/iron,
+/area/station/medical/paramedic)
+"sxK" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood/large,
+/area/station/service/barber)
+"sxP" = (
+/obj/machinery/computer/records/security,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/processing)
+"sxR" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"sye" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"sys" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/engineering/lobby)
+"syE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Robotics Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/navigate_destination,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"syO" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"syW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/conveyor{
+ id = "cargodisposals"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"sze" = (
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"szf" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"szg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"szh" = (
+/obj/effect/spawner/random/trash/soap,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/shower/directional/east,
+/obj/effect/turf_decal/tile/dark_blue/half{
+ dir = 8
+ },
+/turf/open/floor/iron/textured_half{
+ dir = 8
+ },
+/area/station/commons/toilet/locker)
+"szi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/security/range)
+"szj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Science - Ordnance Storage";
+ name = "science camera";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/mid_joiner{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/science/ordnance/storage)
+"szn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/ai_monitored/command/storage/eva)
+"szs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"szy" = (
+/turf/closed/wall,
+/area/station/service/bar/backroom)
+"szG" = (
+/obj/effect/turf_decal/box/white,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/engineering/atmos/hfr_room)
+"szJ" = (
+/obj/machinery/research/anomaly_refinery,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"szL" = (
+/obj/structure/cable,
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/processing)
+"szN" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"szZ" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/structure/extinguisher_cabinet/directional/north{
+ pixel_x = 32
+ },
+/obj/item/radio/intercom/directional/east{
+ pixel_x = 38;
+ pixel_y = 3
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east{
+ pixel_x = 40;
+ pixel_y = -8
+ },
+/obj/machinery/button/door/directional/east{
+ id = "qmspace";
+ name = "Space Shutters Control";
+ pixel_y = -8
+ },
+/obj/machinery/button/door/directional/east{
+ id = "qmprivacy";
+ name = "Privacy Control";
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"sAh" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/barber)
+"sAi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/xenoblood,
+/obj/structure/sign/warning/xeno_mining/directional/north,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/department/science/xenobiology)
+"sAm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"sAv" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/aft)
+"sAD" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"sAI" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/maintenance/department/medical/morgue)
+"sAL" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"sAU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"sAY" = (
+/obj/effect/landmark/start/hangover/closet,
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"sBb" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"sBc" = (
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"sBg" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "perma-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"sBk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/mix)
+"sBt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno8";
+ name = "Creature Cell #8"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"sBy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"sBE" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white/smooth_half{
+ dir = 1
+ },
+/area/station/science/ordnance/storage)
+"sBG" = (
+/obj/structure/cable,
+/turf/open/floor/iron/checker,
+/area/station/service/janitor)
+"sBK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"sBM" = (
+/obj/structure/table,
+/obj/machinery/airalarm/directional/east,
+/obj/item/storage/medkit/emergency,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"sBX" = (
+/turf/closed/wall,
+/area/station/service/bar)
+"sCd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/shieldgen,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"sCh" = (
+/obj/structure/cable,
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+"sCl" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/chair/sofa/bench{
+ dir = 4
+ },
+/obj/machinery/status_display/ai/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"sCo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"sCx" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine/atmos)
+"sCB" = (
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/breakroom)
+"sCE" = (
+/obj/structure/table/wood,
+/obj/item/poster/random_contraband{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/poster/random_contraband{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/poster/random_contraband,
+/turf/open/floor/wood,
+/area/station/service/electronic_marketing_den)
+"sCF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/half,
+/area/station/service/hydroponics)
+"sCY" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/iron/solarpanel/airless,
+/area/station/solars/port/fore)
+"sDd" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/machinery/camera/directional/west{
+ c_tag = "Science - Medbay Airlock";
+ name = "science camera";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"sDe" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"sDk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/trash/caution_sign,
+/obj/structure/sign/directions/engineering{
+ desc = "A sign that shows there are doors here. There are doors everywhere!";
+ icon_state = "doors";
+ name = "WARNING: PRESSURIZED DOORS";
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"sDJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel)
+"sDL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"sDO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-toxins-passthrough"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/science)
+"sEc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"sEm" = (
+/obj/structure/cable,
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/meeting_room/council)
+"sEn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Maintenance Hatch"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/iron,
+/area/station/maintenance/department/crew_quarters/bar)
+"sEs" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/captain/private)
+"sEv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"sEF" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/science/research)
+"sFf" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"sFq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/corner,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"sFu" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/corporate_showroom)
+"sFR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/virology)
+"sFS" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/external{
+ name = "External Solar Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron,
+/area/station/maintenance/solars/port/fore)
+"sFW" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"sGa" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "AI Satellite - Fore Starboard";
+ name = "ai camera";
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"sGi" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"sGj" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "aiuploadwindow";
+ name = "AI Upload Lockdown Door"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"sGx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"sGz" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/wall,
+/area/station/command/heads_quarters/hop)
+"sGB" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/station/service/library/printer)
+"sGI" = (
+/obj/effect/spawner/random/structure/girder,
+/obj/effect/spawner/random/structure/grille,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/maintenance/port/aft)
"sGJ" = (
@@ -76952,6 +81953,16 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"tns" = (
+/obj/structure/table/wood,
+/obj/machinery/keycard_auth/wall_mounted/directional/west,
+/obj/item/flashlight/lamp,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tnu" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -80332,6 +85343,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron,
/area/station/security/checkpoint/escape)
+<<<<<<< HEAD
"ucz" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
cycle_id = "brig-entrance"
@@ -80350,6 +85362,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron/dark,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ucA" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -82432,6 +87446,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
"uDg" = (
/obj/machinery/modular_computer/preset/id{
dir = 1
@@ -82451,6 +87466,8 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uDj" = (
/obj/structure/cable,
/obj/structure/sign/nanotrasen{
@@ -90608,6 +95625,28 @@
},
/turf/open/floor/iron,
/area/station/security/checkpoint/medical/medsci)
+<<<<<<< HEAD
+=======
+"wDO" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 1
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_x = -5
+ },
+/obj/machinery/button/door/directional/south{
+ id = "cmoshutter";
+ name = "CMO Office Shutters";
+ pixel_x = 8;
+ pixel_y = -26;
+ req_access = list("cmo")
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wDX" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -94090,11 +99129,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron,
/area/station/maintenance/department/chapel)
+<<<<<<< HEAD
"xyX" = (
/obj/structure/extinguisher_cabinet/directional/south,
/obj/machinery/smartfridge/drying,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xyZ" = (
/obj/machinery/light/directional/north,
/obj/item/kirbyplants/random,
@@ -127672,7 +132714,11 @@ spq
nyp
vmh
rEJ
+<<<<<<< HEAD
xyX
+=======
+shc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xtp
hBF
jUU
@@ -127739,7 +132785,11 @@ tYP
hBT
ipr
xwC
+<<<<<<< HEAD
hOU
+=======
+eIh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
urt
mjW
lPM
@@ -132589,7 +137639,11 @@ jpe
sCh
cvE
vcU
+<<<<<<< HEAD
rLs
+=======
+tns
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lZx
lZx
dQf
@@ -132869,7 +137923,11 @@ rcW
oJy
oFr
pXk
+<<<<<<< HEAD
sbn
+=======
+hXQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lfz
fvi
nlK
@@ -133662,7 +138720,11 @@ dQT
akg
hdH
jgt
+<<<<<<< HEAD
uDg
+=======
+wDO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
loe
iId
nuI
@@ -136173,7 +141235,11 @@ cQv
sHn
qBY
wIe
+<<<<<<< HEAD
jIN
+=======
+goc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eVl
dol
uIY
@@ -138493,7 +143559,11 @@ wkt
aby
dFo
xnw
+<<<<<<< HEAD
nZG
+=======
+fyH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ivA
hTg
pgE
@@ -143600,7 +148670,11 @@ aaa
aaa
aad
ljS
+<<<<<<< HEAD
nTg
+=======
+szZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bdF
wob
eZV
@@ -146974,9 +152048,15 @@ hOz
hOz
hOz
dzw
+<<<<<<< HEAD
mEB
hOz
ucz
+=======
+aYN
+hOz
+kEp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mTA
mTA
tNZ
@@ -153121,7 +158201,11 @@ qIH
aad
kOA
kOA
+<<<<<<< HEAD
gFz
+=======
+gIw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
huI
fbW
okz
diff --git a/_maps/map_files/IceBoxStation/IceBoxStation.dmm b/_maps/map_files/IceBoxStation/IceBoxStation.dmm
index b88647d4934..661e6ee6202 100644
--- a/_maps/map_files/IceBoxStation/IceBoxStation.dmm
+++ b/_maps/map_files/IceBoxStation/IceBoxStation.dmm
@@ -1,4 +1,5 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+<<<<<<< HEAD
"aac" = (
/obj/machinery/door/airlock/security/glass{
id_tag = "outerbrig";
@@ -16,6 +17,17 @@
dir = 8
},
/area/station/security/brig/entrance)
+=======
+"aab" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"aao" = (
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aap" = (
/obj/effect/spawner/random/engineering/tracking_beacon,
/turf/open/floor/iron,
@@ -31,10 +43,13 @@
/obj/item/taperecorder,
/turf/open/floor/iron/dark,
/area/station/security/interrogation)
+<<<<<<< HEAD
"aaD" = (
/obj/structure/sign/warning,
/turf/closed/wall/r_wall,
/area/mine/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aaI" = (
/obj/structure/closet/wardrobe/white,
/obj/item/clothing/shoes/jackboots,
@@ -53,11 +68,14 @@
/obj/effect/turf_decal/tile/green,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
"aaX" = (
/obj/structure/chair/sofa/bench/right,
/obj/effect/mapping_helpers/no_atoms_ontop,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"abb" = (
/obj/effect/turf_decal/weather/snow/corner{
dir = 5
@@ -67,6 +85,7 @@
"abe" = (
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"abm" = (
/obj/structure/table,
/obj/item/trash/can/food/beans,
@@ -74,6 +93,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/maintenance/starboard/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"abv" = (
/obj/effect/turf_decal/loading_area{
dir = 1
@@ -91,6 +112,25 @@
/obj/item/clothing/head/helmet/skull,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
+=======
+"abJ" = (
+/obj/machinery/camera{
+ c_tag = "Service - Botany";
+ dir = 9
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/light/warm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"abL" = (
/obj/machinery/light/directional/north,
/obj/structure/sign/warning/secure_area/directional/north,
@@ -107,6 +147,27 @@
},
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
+=======
+"abQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"abT" = (
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"abU" = (
/obj/machinery/door/airlock/maintenance,
/obj/structure/disposalpipe/segment{
@@ -119,10 +180,20 @@
/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"abZ" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ace" = (
/obj/structure/table/wood,
/turf/open/floor/wood,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"acg" = (
/obj/effect/mapping_helpers/burnt_floor,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -132,10 +203,18 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+=======
+"acl" = (
+/mob/living/carbon/human/species/monkey,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"acE" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/fore)
+<<<<<<< HEAD
"acG" = (
/obj/effect/spawner/random/trash/moisture_trap,
/obj/item/reagent_containers/cup/bucket,
@@ -166,6 +245,15 @@
/obj/machinery/bouldertech/refinery,
/turf/open/floor/iron,
/area/mine/production)
+=======
+"acN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"adq" = (
/obj/machinery/door/airlock/maintenance,
/obj/effect/mapping_helpers/airlock/unres{
@@ -174,12 +262,48 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"adv" = (
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"adA" = (
+/turf/closed/wall/r_wall,
+/area/icemoon/surface/outdoors/labor_camp)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"adD" = (
/obj/structure/railing/corner{
dir = 8
},
/turf/open/lava/plasma/ice_moon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
+=======
+"adP" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"adS" = (
+/obj/structure/statue/snow/snowman{
+ name = "Steve"
+ },
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"adY" = (
/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
@@ -220,6 +344,7 @@
/obj/effect/turf_decal/tile/green,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai_upload)
+<<<<<<< HEAD
"aes" = (
/obj/machinery/computer/cargo,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -228,6 +353,8 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aey" = (
/obj/machinery/camera/directional/east{
c_tag = "Xenobiology Pens - Starboard Fore";
@@ -240,6 +367,7 @@
/obj/item/clothing/mask/gas,
/turf/open/floor/iron/smooth,
/area/mine/living_quarters)
+<<<<<<< HEAD
"aeF" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/blue{
@@ -249,6 +377,8 @@
/obj/structure/sign/poster/official/random/directional/west,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aeQ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -259,14 +389,28 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
"aeV" = (
/obj/structure/sign/warning,
/turf/closed/wall,
/area/station/maintenance/port/fore)
+=======
+"aeS" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"afb" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"afp" = (
/obj/machinery/air_sensor/nitrogen_tank,
/turf/open/floor/engine/n2,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"afs" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
@@ -295,16 +439,21 @@
/obj/machinery/status_display/ai/directional/north,
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"afz" = (
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+<<<<<<< HEAD
"afK" = (
/obj/structure/cable,
/turf/open/floor/iron/stairs/left{
dir = 4
},
/area/station/engineering/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"afR" = (
/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
@@ -320,6 +469,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/maintenance/starboard/upper)
+<<<<<<< HEAD
+=======
+"agd" = (
+/obj/structure/table,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"agk" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -356,10 +518,13 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron/dark/textured,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
"agG" = (
/obj/structure/sign/poster/official/random/directional/east,
/turf/open/floor/iron/grimy,
/area/station/hallway/secondary/entry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"agI" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -390,12 +555,15 @@
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/project)
+<<<<<<< HEAD
"ahh" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ahm" = (
/obj/machinery/newscaster/directional/west,
/obj/machinery/firealarm/directional/south,
@@ -414,6 +582,15 @@
/obj/machinery/newscaster/directional/west,
/turf/open/floor/iron/smooth,
/area/station/security/holding_cell)
+<<<<<<< HEAD
+=======
+"ahG" = (
+/obj/structure/fence/post{
+ dir = 2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ahK" = (
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
@@ -435,6 +612,13 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+<<<<<<< HEAD
+=======
+"aiu" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aiA" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -455,10 +639,21 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/project)
+<<<<<<< HEAD
"aiT" = (
/obj/structure/sign/warning/electric_shock,
/turf/closed/wall/r_wall,
/area/station/maintenance/port/fore)
+=======
+"aiQ" = (
+/obj/machinery/modular_computer/preset/id,
+/obj/machinery/computer/security/telescreen/vault/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aiX" = (
/turf/open/floor/iron,
/area/station/security/courtroom)
@@ -520,6 +715,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark/textured,
/area/station/security/prison/workout)
+<<<<<<< HEAD
"akb" = (
/obj/structure/closet/crate,
/obj/item/food/canned/beans,
@@ -541,6 +737,14 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/iron,
/area/station/maintenance/starboard/fore)
+=======
+"akd" = (
+/obj/structure/rack,
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"akk" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{
dir = 4
@@ -551,6 +755,13 @@
/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
/turf/open/floor/iron/dark/airless,
/area/station/science/ordnance/freezerchamber)
+<<<<<<< HEAD
+=======
+"akn" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ako" = (
/turf/closed/wall/r_wall,
/area/station/medical/morgue)
@@ -601,6 +812,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/engineering/engine_smes)
+<<<<<<< HEAD
+=======
+"akN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/neutral/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"akQ" = (
/obj/effect/turf_decal/weather/snow/corner,
/turf/open/floor/glass/reinforced/icemoon,
@@ -621,6 +843,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+<<<<<<< HEAD
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/engineering/transit_tube)
@@ -1337,9 +1560,745 @@
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/effect/turf_decal/stripes/white/line,
-/obj/effect/turf_decal/stripes/white/line{
+=======
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/transit_tube)
+"ale" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/directional/north{
+ network = list("ss13","medbay");
+ c_tag = "Morgue North"
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/trimline/neutral/filled/end{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"alq" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"alv" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"alx" = (
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"alz" = (
+/obj/item/clothing/suit/hooded/wintercoat/science,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"alA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"alD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
},
+/obj/effect/turf_decal/siding/thinplating_new/corner,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"alK" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"alM" = (
+/turf/closed/wall,
+/area/station/maintenance/aft/lesser)
+"alO" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"alT" = (
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"alW" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/mine/storage)
+"amg" = (
+/obj/machinery/door/poddoor/shutters/window/preopen{
+ dir = 4;
+ id = "Atmospherics HFR Shutters";
+ name = "Atmospherics HFR Shutters"
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"ami" = (
+/obj/structure/cable,
+/turf/open/floor/iron/corner{
+ dir = 8
+ },
+/area/station/engineering/lobby)
+"amn" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_x = -6
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"amv" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"amx" = (
+/obj/structure/curtain,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"amz" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"amE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"amN" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"amW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"anb" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ank" = (
+/obj/structure/chair/office,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/command/heads_quarters/rd)
+"anl" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"anu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"anv" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Quarter Solar Access"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"anz" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"anK" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"anO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"anP" = (
+/obj/structure/table,
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/fax{
+ fax_name = "Research Director's Office";
+ name = "Research Director's Fax Machine"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/command/heads_quarters/rd)
+"anQ" = (
+/obj/structure/rack,
+/obj/item/clothing/gloves/latex,
+/obj/structure/window/reinforced/tinted/spawner/directional/north,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"anZ" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"aoc" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/item/radio/intercom/directional/west,
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"aog" = (
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"aom" = (
+/obj/machinery/pdapainter/engineering,
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/ce)
+"aon" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"aoo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"aos" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"aov" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/closet/secure_closet/medical1,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/door_buttons/access_button{
+ pixel_y = 37;
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ req_access = list("virology")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"aow" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/corner/end{
+ dir = 2
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"aoM" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/item/reagent_containers/condiment/enzyme{
+ pixel_x = -7;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 3
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"aoO" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/spawner/random/trash/crushed_can{
+ pixel_y = 10
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"aoP" = (
+/obj/machinery/door/airlock/external{
+ name = "Lower Medical External Access";
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "chem-morgue-airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"aoW" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door";
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/bridge)
+"apb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"apd" = (
+/obj/item/cigbutt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"api" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start/psychologist,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"apj" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"apn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"apo" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"apq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"apB" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"apD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"apI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"apS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"apT" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobiomain";
+ name = "Containment Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"apX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"aqa" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Labor Camp External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"aqp" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"aqr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/hydroponics)
+"aqB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"aqQ" = (
+/obj/structure/table,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"aqV" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Maintenance"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/service/bar/backroom)
+"arb" = (
+/obj/structure/table,
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/item/inspector,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/security/office)
+"aro" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/fence/door,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"art" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/window{
+ dir = 4;
+ id = "chemistry_access_shutters";
+ name = "Chemistry Access Shutters"
+ },
+/turf/open/floor/iron/white/textured,
+/area/station/medical/treatment_center)
+"aru" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen/red{
+ pixel_x = -6
+ },
+/obj/item/hand_labeler{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"arA" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/office)
+"arG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"arT" = (
+/obj/machinery/computer/security/labor{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"arZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"asa" = (
+/obj/structure/table/wood,
+/obj/item/storage/crayons,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"asg" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"asm" = (
+/obj/structure/chair/sofa/bench/right{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"asv" = (
+/obj/effect/spawner/random/entertainment/arcade{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"asy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"asC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"asM" = (
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"asN" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/structure/sink/kitchen/directional/west,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"asU" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Escape";
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/exit/departure_lounge)
+"asZ" = (
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"atb" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/item/storage/medkit/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/medkit/o2,
+/obj/item/storage/medkit/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/storage)
+"ate" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/security/prison)
+"atj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"atl" = (
+/obj/machinery/duct,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"atv" = (
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"aty" = (
+/obj/structure/urinal/directional/north,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"atB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"atI" = (
+/obj/structure/table/glass,
+/obj/item/shovel/spade,
+/obj/item/cultivator{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"atN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+<<<<<<< HEAD
/turf/open/floor/iron/dark/textured,
/area/station/hallway/primary/central)
"ave" = (
@@ -1360,10 +2319,135 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"atS" = (
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"atW" = (
+/obj/structure/flora/grass/green/style_random,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"auc" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/port)
+"aud" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"aui" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"aus" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"auw" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/obj/structure/sink/directional/south,
+/obj/item/mop,
+/obj/item/reagent_containers/cup/bucket,
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"auz" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Closet"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/plating,
+/area/mine/eva)
+"auJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/grimy,
+/area/station/security/prison/work)
+"auK" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"avb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"avc" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Departure Lounge West"
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"ave" = (
+/obj/structure/stairs/west,
+/turf/open/openspace,
+/area/station/maintenance/starboard/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"avh" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/smooth,
/area/mine/eva)
+<<<<<<< HEAD
+=======
+"avi" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"avk" = (
/obj/machinery/duct,
/obj/effect/turf_decal/tile/yellow{
@@ -1373,6 +2457,7 @@
dir = 1
},
/area/station/engineering/atmos)
+<<<<<<< HEAD
"avo" = (
/obj/structure/stairs/east,
/obj/structure/railing{
@@ -1380,6 +2465,17 @@
},
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+=======
+"avs" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"avP" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -1389,18 +2485,56 @@
/area/mine/laborcamp)
"awa" = (
/turf/open/openspace,
+<<<<<<< HEAD
/area/station/science/ordnance)
+=======
+/area/station/science/ordnance/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"awd" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/ai_monitored/security/armory/upper)
+<<<<<<< HEAD
+=======
+"awe" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"awn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
/area/station/maintenance/fore/lesser)
+<<<<<<< HEAD
+=======
+"awt" = (
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/obj/item/reagent_containers/condiment/enzyme,
+/obj/item/reagent_containers/condiment/sugar,
+/obj/structure/light_construct/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"awu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"awx" = (
/turf/open/floor/iron,
/area/station/commons/locker)
@@ -1425,11 +2559,25 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
"awF" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/spawner/random/trash/grille_or_waste,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+"awE" = (
+/obj/structure/closet/crate/freezer/food{
+ name = "cooler"
+ },
+/obj/item/reagent_containers/cup/glass/ice,
+/obj/item/reagent_containers/cup/glass/ice,
+/obj/item/reagent_containers/cup/glass/ice,
+/obj/item/reagent_containers/cup/glass/ice,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"awK" = (
/obj/structure/table,
/obj/item/hemostat,
@@ -1458,6 +2606,15 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/dark,
/area/station/security/courtroom)
+<<<<<<< HEAD
+=======
+"awO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/trash/raisins,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"awR" = (
/obj/machinery/conveyor{
dir = 1;
@@ -1470,6 +2627,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+<<<<<<< HEAD
"axb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 4
@@ -1488,6 +2646,8 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/station/science/research)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"axd" = (
/obj/structure/table,
/obj/item/mod/module/plasma_stabilizer,
@@ -1503,6 +2663,25 @@
/obj/machinery/modular_computer/preset/id,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"axj" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"axm" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 8
@@ -1520,11 +2699,20 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"axy" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/sign/warning/cold_temp,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/aft)
+=======
+"axw" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"axz" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -1537,12 +2725,15 @@
},
/turf/open/floor/iron/freezer,
/area/station/command/heads_quarters/captain)
+<<<<<<< HEAD
"axC" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/broken_floor,
/obj/structure/bookcase/random,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"axD" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -1587,6 +2778,20 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
+=======
+"axZ" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"ayd" = (
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ayq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
cycle_id = "atmos-entrance"
@@ -1617,6 +2822,7 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
"ayJ" = (
/obj/effect/spawner/random/lavaland_mob/raptor,
/turf/open/misc/asteroid/snow/icemoon,
@@ -1637,6 +2843,33 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+"ayL" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"ayS" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Permabrig Lower Hallway Stairwell";
+ network = list("ss13","prison")
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"aze" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/security/prison)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"azf" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -1651,12 +2884,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"azt" = (
/obj/machinery/door/airlock{
name = "Unit B"
},
/turf/open/floor/iron/textured,
/area/station/commons/toilet)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"azw" = (
/turf/closed/wall,
/area/station/medical/pharmacy)
@@ -1670,6 +2906,7 @@
/obj/effect/turf_decal/bot_red,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/project)
+<<<<<<< HEAD
"azC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
@@ -1688,6 +2925,8 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/wood/parquet,
/area/station/service/theater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"azN" = (
/obj/structure/rack,
/obj/item/tank/internals/emergency_oxygen{
@@ -1705,6 +2944,7 @@
/obj/effect/turf_decal/delivery/red,
/turf/open/floor/iron/dark/textured,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"azU" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -1722,6 +2962,14 @@
},
/turf/open/floor/plating,
/area/station/science/robotics/lab)
+=======
+"aAe" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aAi" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/table/wood/fancy/red,
@@ -1738,10 +2986,13 @@
},
/turf/open/floor/circuit/red,
/area/station/ai_monitored/turret_protected/ai_upload)
+<<<<<<< HEAD
"aAk" = (
/obj/structure/table/wood,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aAl" = (
/obj/machinery/computer/mech_bay_power_console{
dir = 1
@@ -1756,6 +3007,7 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
"aAy" = (
/obj/structure/table/wood/poker,
/obj/effect/spawner/random/entertainment/dice{
@@ -1778,6 +3030,8 @@
/obj/effect/turf_decal/tile/blue/opposingcorners,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aBf" = (
/obj/effect/landmark/start/hangover,
/turf/open/floor/engine{
@@ -1796,6 +3050,7 @@
name = "Chief Medical Officer's Fax Machine"
},
/obj/machinery/light/cold/directional/south,
+<<<<<<< HEAD
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/cmo)
"aBj" = (
@@ -1804,6 +3059,23 @@
},
/turf/open/floor/wood/large,
/area/station/commons/lounge)
+=======
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"aBK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"aBP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "pharmacy_shutters3";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aBR" = (
/turf/open/genturf/blue,
/area/icemoon/surface/outdoors/noruins)
@@ -1833,6 +3105,12 @@
pixel_x = -2;
pixel_y = -1
},
+<<<<<<< HEAD
+=======
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/cargo/miningdock)
"aCj" = (
@@ -1846,6 +3124,7 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/wood,
/area/station/command/meeting_room)
+<<<<<<< HEAD
"aCl" = (
/obj/structure/bodycontainer/morgue{
dir = 8
@@ -1853,12 +3132,32 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aCo" = (
/obj/structure/chair/wood{
dir = 8
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
+=======
+"aCw" = (
+/obj/structure/disposalpipe/trunk,
+/obj/structure/disposaloutlet{
+ desc = "An outlet for the pneumatic disposal system. This one seems designed for rapid corpse disposal.";
+ dir = 1;
+ name = "rapid corpse mover 9000"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/effect/turf_decal/trimline/neutral/filled/end,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aCA" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 10
@@ -1871,6 +3170,22 @@
},
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
+=======
+"aCJ" = (
+/obj/machinery/newscaster/directional/west,
+/obj/effect/spawner/random/structure/twelve_percent_spirit_board,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"aCP" = (
+/obj/machinery/modular_computer/preset/engineering,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/incident_display/bridge/directional/north,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aCU" = (
/obj/effect/spawner/random/maintenance,
/obj/structure/disposalpipe/segment{
@@ -1888,10 +3203,30 @@
/obj/item/stock_parts/subspace/filter,
/turf/open/floor/plating,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
"aDe" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+=======
+"aDc" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Public Mining Storage";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"aDl" = (
+/obj/structure/rack,
+/obj/item/bouquet,
+/obj/item/binoculars,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aDo" = (
/obj/structure/chair/office{
dir = 4
@@ -1900,6 +3235,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"aDy" = (
/obj/machinery/light/directional/south,
/obj/effect/spawner/random/vending/colavend,
@@ -1907,6 +3243,20 @@
/obj/structure/sign/poster/official/random/directional/south,
/turf/open/floor/iron/dark,
/area/station/hallway/secondary/entry)
+=======
+"aDr" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"aDG" = (
+/obj/structure/fence{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aDJ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -1914,6 +3264,7 @@
/obj/effect/landmark/start/prisoner,
/turf/open/floor/iron/dark/side,
/area/station/security/prison)
+<<<<<<< HEAD
"aDZ" = (
/obj/structure/sign/warning/secure_area/directional/east,
/obj/machinery/door/firedoor,
@@ -1933,6 +3284,20 @@
/obj/machinery/status_display/ai/directional/north,
/turf/open/floor/iron,
/area/station/commons/fitness)
+=======
+"aDM" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"aEj" = (
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/maintenance/starboard/fore)
+"aEz" = (
+/obj/machinery/newscaster/directional/west,
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aEA" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
@@ -1952,6 +3317,7 @@
/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/iron/white,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"aEK" = (
/obj/machinery/atmospherics/components/binary/pump/off,
/obj/machinery/airlock_sensor/incinerator_ordmix{
@@ -1966,6 +3332,12 @@
/obj/structure/sign/departments/cargo,
/turf/closed/wall/r_wall,
/area/station/cargo/warehouse)
+=======
+"aEM" = (
+/obj/structure/sign/departments/cargo/directional/west,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aES" = (
/obj/structure/table/wood/fancy/blue,
/obj/effect/spawner/random/aimodule/neutral,
@@ -1983,6 +3355,13 @@
},
/turf/open/floor/circuit,
/area/station/ai_monitored/turret_protected/ai_upload)
+<<<<<<< HEAD
+=======
+"aEY" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aFg" = (
/obj/machinery/button/door/directional/east{
id = "lawyer_blast";
@@ -1993,6 +3372,19 @@
/obj/structure/cable,
/turf/open/floor/wood,
/area/station/service/lawoffice)
+<<<<<<< HEAD
+=======
+"aFh" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/status_display/ai/directional/south,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/chem_master/condimaster,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aFi" = (
/obj/machinery/power/apc/auto_name/directional/west,
/obj/machinery/portable_atmospherics/scrubber,
@@ -2006,6 +3398,7 @@
/obj/machinery/dna_scannernew,
/turf/open/floor/iron/dark,
/area/station/science/genetics)
+<<<<<<< HEAD
"aFx" = (
/obj/structure/rack,
/obj/item/clothing/suit/hooded/wintercoat/eva{
@@ -2023,6 +3416,8 @@
},
/turf/open/floor/iron/textured,
/area/station/ai_monitored/command/storage/eva)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aFz" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -2052,6 +3447,7 @@
},
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"aGf" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -2072,6 +3468,12 @@
/obj/effect/spawner/random/engineering/flashlight,
/turf/open/floor/iron/smooth,
/area/station/maintenance/starboard/lesser)
+=======
+"aGb" = (
+/obj/item/flashlight/lantern/on,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aGr" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera/directional/east{
@@ -2097,6 +3499,18 @@
/obj/item/papercutter,
/turf/open/floor/iron,
/area/station/cargo/office)
+<<<<<<< HEAD
+=======
+"aGR" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aGW" = (
/obj/machinery/door/airlock/highsecurity{
name = "Labor Camp Monitoring"
@@ -2107,6 +3521,7 @@
/obj/effect/mapping_helpers/airlock/access/all/security/brig,
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
"aHh" = (
/obj/machinery/light/small/directional/west,
/obj/effect/turf_decal/weather/snow/corner{
@@ -2114,6 +3529,37 @@
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+"aHt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/structure/table/reinforced,
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = -6;
+ pixel_y = -1
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/machinery/button/ignition/incinerator/atmos{
+ pixel_y = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"aHw" = (
+/obj/structure/rack,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aHz" = (
/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
@@ -2140,6 +3586,26 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/station/command/meeting_room)
+<<<<<<< HEAD
+=======
+"aHX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aHZ" = (
/obj/effect/turf_decal/tile/neutral/diagonal_edge,
/obj/effect/landmark/start/cook,
@@ -2152,10 +3618,21 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/dark/textured,
/area/station/service/chapel)
+<<<<<<< HEAD
"aIg" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
/area/station/engineering/main)
+=======
+"aIn" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aIr" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -2167,6 +3644,7 @@
dir = 9
},
/area/station/science/explab)
+<<<<<<< HEAD
"aIA" = (
/obj/effect/turf_decal/siding/thinplating/dark{
dir = 9
@@ -2182,6 +3660,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aIB" = (
/obj/effect/turf_decal/weather/snow/corner{
dir = 4
@@ -2220,6 +3700,28 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+<<<<<<< HEAD
+=======
+"aJa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"aJi" = (
+/obj/machinery/shower/directional/east,
+/obj/structure/fluff/shower_drain,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"aJj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/station/service/library)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aJm" = (
/obj/structure/cable,
/obj/machinery/door/window/left/directional/east{
@@ -2252,6 +3754,7 @@
/obj/item/lighter/greyscale,
/turf/open/floor/iron/showroomfloor,
/area/station/maintenance/department/medical/morgue)
+<<<<<<< HEAD
"aJz" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/door/firedoor/border_only,
@@ -2260,6 +3763,8 @@
dir = 8
},
/area/station/science/ordnance/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aJA" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -2299,6 +3804,15 @@
},
/turf/open/floor/plating,
/area/station/engineering/transit_tube)
+<<<<<<< HEAD
+=======
+"aKb" = (
+/obj/structure/fence{
+ dir = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aKf" = (
/obj/machinery/light_switch/directional/south,
/obj/structure/chair/comfy/brown{
@@ -2338,6 +3852,7 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
"aLh" = (
/obj/structure/fireplace,
/obj/effect/mapping_helpers/burnt_floor,
@@ -2348,6 +3863,8 @@
/obj/structure/extinguisher_cabinet/directional/north,
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aLy" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -2386,6 +3903,7 @@
/obj/machinery/shower/directional/south,
/turf/open/floor/iron/showroomfloor,
/area/station/security/prison/toilet)
+<<<<<<< HEAD
"aLO" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/turf_decal/siding/wood/corner{
@@ -2394,6 +3912,8 @@
/obj/structure/sign/clock/directional/east,
/turf/open/floor/wood,
/area/station/commons/vacant_room/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aLV" = (
/obj/machinery/bluespace_vendor/directional/south,
/turf/open/floor/iron,
@@ -2436,6 +3956,16 @@
},
/turf/open/floor/plating,
/area/station/cargo/sorting)
+<<<<<<< HEAD
+=======
+"aMh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aMr" = (
/obj/structure/chair/office{
dir = 4
@@ -2456,18 +3986,28 @@
},
/turf/open/floor/iron,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
+=======
+"aMA" = (
+/obj/structure/stairs/north,
+/turf/open/floor/iron,
+/area/station/service/chapel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aME" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"aMI" = (
/obj/machinery/oven/range,
/obj/effect/turf_decal/siding/white,
/obj/machinery/computer/security/telescreen/entertainment/directional/north,
/turf/open/floor/iron/white/smooth_large,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aML" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -2478,6 +4018,7 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
"aNc" = (
/obj/structure/fence{
dir = 4
@@ -2493,6 +4034,23 @@
},
/turf/open/floor/iron,
/area/station/commons/fitness)
+=======
+"aMU" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/remains/human,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"aMZ" = (
+/obj/structure/flora/grass/both/style_random,
+/obj/item/stack/rods,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aNq" = (
/obj/effect/turf_decal/caution/stand_clear,
/obj/effect/turf_decal/siding/dark_blue,
@@ -2522,22 +4080,63 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/mine/eva/lower)
+<<<<<<< HEAD
"aOa" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+"aNE" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"aOb" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_apiary";
+ name = "Apiary Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aOd" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/cargo/miningdock)
+<<<<<<< HEAD
+=======
+"aOe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/line,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aOf" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/mine/eva)
+<<<<<<< HEAD
+=======
+"aOx" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/vending/clothing,
+/obj/structure/noticeboard/staff{
+ pixel_y = 36
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aOz" = (
/obj/structure/chair{
dir = 4
@@ -2562,11 +4161,38 @@
/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
/turf/open/floor/iron/smooth_large,
/area/station/cargo/warehouse)
+<<<<<<< HEAD
+=======
+"aOG" = (
+/obj/structure/fence/post{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aOS" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white/textured,
/area/station/security/medical)
+<<<<<<< HEAD
+=======
+"aOU" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/trunk/multiz/down,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/aft)
+"aOW" = (
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aOX" = (
/turf/open/floor/engine/co2,
/area/station/engineering/atmos)
@@ -2599,6 +4225,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"aPl" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/camera/directional/south{
+ c_tag = "Starboard Primary Hallway Center East"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aPD" = (
/turf/closed/wall/r_wall,
/area/station/engineering/storage_shared)
@@ -2618,6 +4254,7 @@
/obj/machinery/light/floor,
/turf/open/floor/iron/dark/textured,
/area/station/security/warden)
+<<<<<<< HEAD
"aPP" = (
/obj/machinery/door/airlock/external,
/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
@@ -2627,6 +4264,12 @@
/obj/effect/spawner/random/trash/mess,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
+=======
+"aPV" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/port/aft)
"aPW" = (
/obj/structure/table,
@@ -2644,6 +4287,7 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/ai_monitored/security/armory/upper)
+<<<<<<< HEAD
"aQe" = (
/obj/item/clothing/shoes/jackboots,
/turf/open/floor/plating,
@@ -19453,12 +21097,273 @@
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+=======
+"aPZ" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"aQe" = (
+/obj/item/clothing/shoes/jackboots,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"aQj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"aQJ" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"aQQ" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"aQR" = (
+/obj/structure/cable,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"aQW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"aQZ" = (
+/obj/machinery/vending/drugs,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"aRe" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"aRj" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"aRm" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Shuttle Security Airlock"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"aRn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"aRr" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/structure/bed/medical/anchored{
+ dir = 8
+ },
+/obj/item/bedsheet/medical{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"aRt" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"aRx" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"aRz" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"aRD" = (
+/obj/structure/sign/warning/secure_area/directional/west,
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south{
+ freerange = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"aRR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/turf/open/floor/iron/large,
+/area/station/engineering/atmos/storage/gas)
+"aRX" = (
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Vacant Commissary"
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"aSe" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix Outlet Pump"
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"aSh" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"aSo" = (
+/turf/closed/wall,
+/area/station/medical/medbay/aft)
+"aSu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"aSB" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"aSC" = (
+/obj/structure/window/spawner/directional/south,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"aSH" = (
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"aSI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"aSM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/effect/turf_decal/siding/dark{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+"aSS" = (
+/obj/effect/turf_decal/trimline/dark_red/end,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/pink/visible,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"aTc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"aTj" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/wrench,
+/obj/item/weldingtool,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"aTp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/meter/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"aTw" = (
+/obj/structure/displaycase/captain,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"aTE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/medical/chem_storage)
+"aTH" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
},
/turf/open/floor/iron/dark/side{
dir = 1
},
+<<<<<<< HEAD
/area/station/hallway/primary/port)
"fNN" = (
/obj/structure/cable,
@@ -19795,10 +21700,35 @@
dir = 8
},
/obj/effect/turf_decal/trimline/blue/filled/corner{
+=======
+/area/station/hallway/primary/central)
+"aTI" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=QM";
+ location = "CHW"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"aTT" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"aTZ" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 4
},
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"fUM" = (
/obj/structure/chair/office{
dir = 1
@@ -19833,6 +21763,330 @@
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
"fVC" = (
+=======
+"aUi" = (
+/obj/structure/table,
+/obj/item/storage/briefcase{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/storage/wallet,
+/obj/item/storage/wallet,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"aUj" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/storage)
+"aUl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"aUm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"aUo" = (
+/obj/structure/table/wood,
+/obj/item/trapdoor_remote/preloaded{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/item/gavelblock{
+ pixel_x = 5
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"aUt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"aUu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"aUA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"aUC" = (
+/obj/structure/fence/door,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"aUK" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering Equipment Storage"
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/structure/closet/secure_closet/engineering_electrical,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"aUM" = (
+/obj/structure/filingcabinet,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"aUO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"aUS" = (
+/obj/machinery/meter{
+ name = "Mixed Air Tank In"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"aUT" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"aVb" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"aVe" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Station Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"aVi" = (
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"aVn" = (
+/obj/structure/table,
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"aVq" = (
+/obj/structure/ore_box,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"aVr" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"aVw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"aVH" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"aVI" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"aVM" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/landmark/start/hangover,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"aWb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"aWc" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/end{
+ dir = 1
+ },
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"aWg" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"aWj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"aWk" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "armory";
+ name = "Armory Shutter"
+ },
+/obj/machinery/button/door/directional/east{
+ id = "armory";
+ name = "Armory Shutters";
+ req_access = list("armory")
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/security/armory/upper)
+"aWo" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/seeds/redbeet,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"aWu" = (
+/obj/structure/barricade/wooden/snowed,
+/obj/machinery/light/small/red/directional/north,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "minecraft_shutter";
+ name = "Cart Shutters"
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"aWD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"aWG" = (
+/obj/machinery/announcement_system,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"aWN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"aWV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Labor Camp Mud Room";
+ network = list("labor")
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"aXc" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"aXg" = (
+/obj/structure/ladder{
+ name = "chemistry lab access"
+ },
+/obj/machinery/door/window/left/directional/south{
+ name = "Morgue Access Hatch";
+ req_access = list("medical")
+ },
+/obj/effect/turf_decal/stripes/end,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron/white/textured_large,
+/area/station/medical/medbay/central)
+"aXp" = (
+/obj/structure/cable,
+/obj/machinery/button/door/directional/west{
+ id = "maint2";
+ name = "Blast Door Control B";
+ pixel_y = 4
+ },
+/obj/machinery/button/door/directional/west{
+ id = "maint1";
+ name = "Blast Door Control A";
+ pixel_y = -6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"aXq" = (
+/obj/item/bedsheet/red,
+/mob/living/simple_animal/bot/secbot/beepsky,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"aXP" = (
+/obj/structure/barricade/wooden,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"aXY" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/monkey_recycler,
+/obj/structure/sign/poster/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"aYi" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/stock_parts/power_store/cell/high,
@@ -19842,6 +22096,7 @@
},
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"fVD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/engineering{
@@ -26218,11 +28473,39 @@
/turf/open/floor/iron,
/area/station/engineering/atmos)
"hQO" = (
+=======
+"aYk" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/obj/item/seeds/berry,
+/obj/machinery/light/small/dim/directional/south,
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/fore)
+"aYm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"aYq" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Public Mining Storage";
+ start_active = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"aYu" = (
+/obj/effect/decal/cleanable/dirt/dust,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+<<<<<<< HEAD
/obj/structure/cable,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -38421,11 +40704,208 @@
/area/mine/laborcamp)
"lxu" = (
/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+=======
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"aYJ" = (
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"aYM" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/crate,
+/obj/item/coin/gold,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/mine/production)
+"aYQ" = (
+/obj/machinery/shower/directional/south,
+/obj/item/soap/nanotrasen,
+/obj/item/bikehorn/rubberducky/plasticducky,
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"aZd" = (
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"aZj" = (
+/obj/item/flashlight/flare/candle{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/obj/item/book{
+ name = "Tales from the First";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"aZk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"aZo" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"aZq" = (
+/obj/item/kirbyplants/potty,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"aZx" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Telecomms Monitoring";
+ network = list("tcomms")
+ },
+/obj/structure/tank_holder/oxygen,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"aZD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"aZH" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter/room)
+"aZJ" = (
+/obj/item/toy/snowball{
+ pixel_x = 11;
+ pixel_y = -7
+ },
+/obj/structure/flora/grass/brown/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"aZK" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/lighter/greyscale{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/effect/spawner/random/entertainment/cigarette_pack{
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/cup/soda_cans/sol_dry{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"aZL" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"aZU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"aZV" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/yellow,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/engineering/atmos/storage/gas)
+"baf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"bai" = (
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bam" = (
+/turf/open/floor/carpet/red,
+/area/station/commons/vacant_room/office)
+"ban" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"bap" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"bar" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"baA" = (
+/obj/structure/cable,
+/obj/machinery/camera/directional/east{
+ c_tag = "Tech Storage - Secure"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"baF" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/item/extinguisher,
+/obj/machinery/requests_console/directional/north{
+ department = "Science";
+ name = "Science Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/glass/reinforced,
+/area/station/science/xenobiology)
+"baN" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"baQ" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 4
},
/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"lxT" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/effect/decal/cleanable/dirt,
@@ -38633,10 +41113,500 @@
/turf/open/floor/iron/white,
/area/station/science/research)
"lAA" = (
+=======
+"baR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"baV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"baX" = (
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/item/stamp/head/rd{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"bbo" = (
+/turf/open/floor/iron,
+/area/station/construction)
+"bbr" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"bbs" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4;
+ initialize_directions = 8
+ },
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"bbv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"bbM" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bbO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/trimline/yellow/filled/end{
+ dir = 1
+ },
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"bbQ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"bbU" = (
+/obj/structure/closet/toolcloset,
+/obj/machinery/status_display/evac/directional/south,
+/obj/machinery/light/small/directional/west,
+/obj/structure/sign/warning/no_smoking/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"bbY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"bcm" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Lower Brig Cells";
+ network = list("ss13","prison")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"bcs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"bcx" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Quartermaster Office Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/qm,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"bcC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"bcE" = (
+/obj/structure/rack,
+/obj/item/wirecutters,
+/obj/item/screwdriver,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"bcN" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/central)
+"bcT" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"bde" = (
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"bdo" = (
+/obj/structure/table/wood,
+/obj/item/food/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/storage/photo_album/prison,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/rec)
+"bdp" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"bdr" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"bdu" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth,
+/area/mine/living_quarters)
+"bdx" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"bdJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"bdK" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"bdQ" = (
+/obj/structure/table,
+/obj/item/assembly/signaler{
+ pixel_y = 8
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"bdR" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"bdS" = (
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"bdT" = (
+/obj/structure/table/glass,
+/obj/effect/spawner/random/entertainment/deck{
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Break Room";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"bea" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating/icemoon,
+/area/station/engineering/atmos)
+"ben" = (
+/obj/machinery/bluespace_beacon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"bep" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"beu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"beO" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"beQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/sign/painting/large,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"beZ" = (
+/turf/closed/indestructible/riveted{
+ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
+ name = "hyper-reinforced wall"
+ },
+/area/station/science/ordnance/bomb)
+"bff" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"bfg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"bfo" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"bfL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"bfN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"bfP" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 5;
+ height = 7;
+ name = "Cargo Bay";
+ shuttle_id = "cargo_home";
+ width = 12
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bfU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"bfV" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"bge" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"bgs" = (
+/obj/structure/sign/poster/random/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"bgt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva)
+"bgx" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/aft)
+"bgE" = (
+/obj/effect/landmark/start/ai/secondary,
+/obj/item/radio/intercom/directional/north{
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel"
+ },
+/obj/item/radio/intercom/directional/west{
+ freerange = 1;
+ listening = 0;
+ name = "Common Channel"
+ },
+/obj/item/radio/intercom/directional/south{
+ freerange = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel"
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"bgF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/command/gateway)
+"bgK" = (
+/obj/structure/table,
+/obj/item/toner,
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/effect/spawner/random/bureaucracy/birthday_wrap,
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"bgN" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/security/brig/entrance)
+"bgU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/brown{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"bgZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Cooling Loop to Gas"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"bhm" = (
+/obj/machinery/vending/coffee,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"bht" = (
+/obj/structure/closet/lasertag/red,
+/obj/effect/spawner/random/contraband/permabrig_gear,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"bhw" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"bhI" = (
+/obj/effect/spawner/random/trash/moisture_trap,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"bhQ" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"bhV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"bie" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/spawner/structure/window/hollow/reinforced/middle{
dir = 4
},
/turf/open/floor/plating,
+<<<<<<< HEAD
/area/station/maintenance/department/medical/morgue)
"lAC" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -38647,12 +41617,238 @@
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
"lAL" = (
+=======
+/area/mine/production)
+"bij" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/treatment_center)
+"bin" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 4
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/flashlight,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/mine/living_quarters)
+"bit" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/clothing/head/beanie/orange,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"biu" = (
+/obj/machinery/door/window/right/directional/south{
+ req_access = list("kitchen");
+ name = "The Ice Box"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"biE" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/lesser)
+"biR" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/dropper,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"biU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"biY" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/port/fore)
+"bja" = (
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"bji" = (
+/obj/effect/turf_decal/stripes/asteroid/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"bjl" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"bjn" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 11";
+ req_access = list("xenobiology")
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio11";
+ name = "Xenobio Pen 11 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"bjp" = (
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/prison)
+"bjv" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"bjI" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/directional/west,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"bjK" = (
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"bjL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"bjN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"bjQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/commons/locker)
+"bjU" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"bkg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"bkq" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Graveyard Access";
+ req_access = list("chapel_office")
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/service/chapel)
+"bkr" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"bkC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"bkQ" = (
+/obj/structure/tank_holder/extinguisher,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"bkR" = (
+/obj/machinery/modular_computer/preset/civilian,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"bkS" = (
+/obj/machinery/bci_implanter,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/explab)
+"bkV" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/disposalpipe/segment{
dir = 4
},
+<<<<<<< HEAD
/turf/open/floor/iron/showroomfloor,
/area/station/security/warden)
"lBo" = (
@@ -38868,12 +42064,176 @@
/turf/open/floor/carpet/blue,
/area/station/security/prison/work)
"lEb" = (
+=======
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"bkX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/prison/workout)
+"bla" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/public/glass{
+ name = "Art Gallery"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"blc" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/service/chapel)
+"blf" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"blk" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Shuttle Prisoner Airlock"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"bll" = (
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"bln" = (
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"blA" = (
+/obj/machinery/hydroponics/soil,
+/obj/machinery/light/directional/west,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"blM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/wood/large,
+/area/station/service/bar)
+"blO" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"blT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"blU" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/syringes,
+/obj/item/clothing/glasses/science{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/science,
+/obj/machinery/requests_console/directional/south{
+ department = "Chemistry";
+ name = "Chemistry Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"blV" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/service/library)
+"blY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"bmc" = (
+/obj/structure/fence/post,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"bml" = (
+/obj/structure/table,
+/obj/item/storage/medkit/regular,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/mine/laborcamp)
+"bmv" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bmM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"bng" = (
+/obj/machinery/light/small/dim/directional/west,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/commons/lounge)
+"bnh" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 7";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "Xenobio Pen 7 Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"bnl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"bnm" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/airlock/multi_tile/public/glass{
dir = 4;
name = "Service Hall"
},
/obj/effect/turf_decal/siding/dark/corner,
+<<<<<<< HEAD
/obj/machinery/door/firedoor,
+=======
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/siding/wood{
dir = 8
},
@@ -38886,6 +42246,7 @@
dir = 1
},
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
"lEg" = (
/obj/machinery/door/window/left/directional/north{
name = "AI Core Door";
@@ -39142,11 +42503,150 @@
/obj/machinery/camera{
c_tag = "Chapel North";
dir = 6
+=======
+"bnp" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"bnr" = (
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/science/xenobiology)
+"bnt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"bny" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"bnz" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"bnL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"bnM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Interrogation";
+ network = list("interrogation")
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"bnZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"boc" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Exfiltrate to Waste"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"bol" = (
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"bos" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"boO" = (
+/obj/structure/chair/sofa/left/brown{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/cable,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"boQ" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/medical/central)
+"boS" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"boU" = (
+/obj/structure/rack,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/living_quarters)
+"boX" = (
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"bpd" = (
+/obj/machinery/power/smes/engineering,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/engine_smes)
+"bpm" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"bpn" = (
+/obj/effect/turf_decal/trimline/neutral/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 4
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
dir = 4
},
/turf/open/floor/iron/dark,
+<<<<<<< HEAD
/area/station/service/chapel)
"lHC" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -39678,10 +43178,165 @@
/area/station/cargo/bitrunning/den)
"lPQ" = (
/obj/structure/disposalpipe/segment{
+=======
+/area/station/ai_monitored/command/storage/eva)
+"bpq" = (
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"bpw" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/landmark/event_spawn,
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"bpK" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"bpQ" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"bpR" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"bpT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Chapel Crematorium"
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"bpX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"bpY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/heavy{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"bqe" = (
+/obj/structure/grille,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"bqf" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"bqq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"bqr" = (
+/obj/item/target,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"bqt" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"bqx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark,
+/area/station/security/processing)
+"bqz" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/item/cultivator,
+/obj/item/seeds/potato,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"bqF" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"bqG" = (
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/security/hos_office,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"bqS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"bqY" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"brj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"brm" = (
+/obj/machinery/computer/holodeck{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 4
},
/turf/open/floor/iron,
/area/station/commons/fitness)
+<<<<<<< HEAD
"lQc" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -39713,11 +43368,284 @@
/turf/open/floor/carpet,
/area/station/commons/dorms)
"lQw" = (
+=======
+"bro" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"brp" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"brt" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"brx" = (
+/turf/closed/wall,
+/area/station/security/warden)
+"bry" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"brJ" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"brL" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/station/service/chapel)
+"brM" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"brX" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mining_internal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/mine/production)
+"brY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"bsb" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"bsd" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/west,
+/obj/structure/sign/poster/official/obey/directional/west,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"bse" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"bsi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"bso" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/west{
+ pixel_x = -39
+ },
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"bst" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"bsG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research/glass{
+ name = "Robotics Lab"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"bsN" = (
+/obj/structure/table,
+/obj/item/storage/pill_bottle/mutadone{
+ pixel_x = 11;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 2
+ },
+/obj/item/radio/headset/headset_medsci{
+ pixel_x = -7;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"bsO" = (
+/obj/effect/turf_decal/box,
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance/two,
+/obj/item/wrench,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/port/greater)
+"bsW" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"bta" = (
+/obj/structure/chair/sofa/bench/right{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"btg" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Atmospherics Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"btm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/sign/warning/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"btq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"bts" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/construction)
+"btB" = (
+/obj/structure/table,
+/obj/item/flashlight/lantern,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"btC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/engineering/main)
+"btG" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"btK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"btU" = (
+/turf/closed/wall,
+/area/station/medical/morgue)
+"btW" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"bub" = (
+/obj/machinery/vending/cola/red,
+/obj/machinery/light/warm/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"bum" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/engineering/storage_shared)
+"buo" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"buv" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
color = "#ff0000";
dir = 4;
name = "Scrubbers multi deck pipe adapter"
},
+<<<<<<< HEAD
/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
color = "#0000ff";
dir = 4;
@@ -43207,6 +47135,132 @@
},
/area/station/command/heads_quarters/rd)
"nbt" = (
+=======
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"buF" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/chair/sofa/bench/left{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"buR" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/potato{
+ name = "\improper Beepsky's emergency battery"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"buU" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/obj/item/clothing/shoes/wheelys/skishoes{
+ pixel_y = -8
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"buY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"bvb" = (
+/obj/structure/fence/post{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bvd" = (
+/obj/machinery/power/terminal,
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"bvg" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"bvj" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"bvq" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"bvr" = (
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/autolathe,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"bvw" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/syringe{
+ pixel_x = -5;
+ pixel_y = -8
+ },
+/obj/item/reagent_containers/cup/beaker{
+ pixel_y = -6;
+ pixel_x = 9
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"bvE" = (
+/obj/machinery/computer/monitor{
+ name = "bridge power monitoring console"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bvI" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=HOP2";
+ location = "Stbd"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bvS" = (
+/obj/structure/ladder,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/maintenance/department/medical/morgue)
+"bvX" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/computer/security/hos,
/obj/machinery/requests_console/directional/north{
department = "Head of Security's Desk";
@@ -43215,6 +47269,7 @@
/obj/effect/mapping_helpers/requests_console/announcement,
/obj/effect/mapping_helpers/requests_console/information,
/obj/effect/mapping_helpers/requests_console/assistance,
+<<<<<<< HEAD
/obj/machinery/button/door/directional/north{
id = "hosspace";
name = "Icemoon Shutters Control";
@@ -47954,12 +52009,78 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/obj/machinery/door/firedoor,
+=======
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/button/door/directional/north{
+ id = "hosspace";
+ name = "Icemoon Shutters Control"
+ },
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/hos)
+"bvY" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"bwh" = (
+/turf/closed/wall/mineral/iron,
+/area/icemoon/underground/explored)
+"bwi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"bwl" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"bwn" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"bwp" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"bwt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"bwD" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/stripes/white/line{
dir = 4
},
/obj/effect/turf_decal/stripes/white/line{
dir = 8
},
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark/textured,
/area/station/hallway/primary/starboard)
@@ -48686,6 +52807,438 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
},
+=======
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"bwK" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/wood,
+/area/station/service/library)
+"bwM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"bwT" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"bxa" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bxe" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/starboard/fore)
+"bxJ" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"bxP" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/lab)
+"bxQ" = (
+/obj/structure/cable/multilayer/multiz,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"bxS" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"bxU" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/window{
+ dir = 4;
+ id = "chemistry_access_shutters";
+ name = "Chemistry Access Shutters"
+ },
+/turf/open/floor/iron/white/textured,
+/area/station/medical/treatment_center)
+"bxV" = (
+/obj/structure/chair/wood/wings,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/maintenance/port/aft)
+"byd" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Customs Security Checkpoint"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"byl" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Cargo Bay Delivery Office"
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"byn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/start/bitrunner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/cargo/bitrunning/den)
+"byq" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"byv" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/trash/semki,
+/obj/item/trash/semki,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"byx" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"byB" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"byH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"byJ" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"byK" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/robotics,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"byP" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"bza" = (
+/obj/structure/fence/end{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bzc" = (
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bzg" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"bzA" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"bzC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"bzD" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "mining-aux-mechbay-external"
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining Mech Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/large,
+/area/mine/mechbay)
+"bzE" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"bzI" = (
+/obj/machinery/bluespace_vendor/directional/west,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"bzQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bzW" = (
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"bAa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"bAj" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"bAk" = (
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/carpet,
+/area/station/security/prison/rec)
+"bAo" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"bAB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"bAF" = (
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"bAM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"bAR" = (
+/obj/machinery/duct,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos)
+"bAT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/fax{
+ fax_name = "Chief Engineer's Office";
+ name = "Chief Engineer's Fax Machine"
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"bAX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"bAY" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"bBd" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 6
+ },
+/obj/effect/landmark/start/station_engineer,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"bBw" = (
+/obj/item/trash/sosjerky,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"bBx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ req_access = list("armory")
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"bBE" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bBJ" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"bBM" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/cable,
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"bBO" = (
+/obj/effect/spawner/random/decoration/flower,
+/obj/structure/flora/rock/pile/icy/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"bBW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"bCd" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Genetics Lab Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/science/genetics,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"bCf" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "cmoprivacy";
+ name = "CMO Office"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/cmo)
+"bCp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"bCs" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Construction Area"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/construction,
+/turf/open/floor/plating,
+/area/station/construction)
+"bCt" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"bCx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/closed/wall/r_wall,
+/area/station/medical/virology)
+"bCN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner,
+/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/morgue)
+"bCQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"bCT" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
dir = 1
},
@@ -48695,6 +53248,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"oAz" = (
/obj/structure/sign/nanotrasen{
pixel_x = 32;
@@ -50379,10 +54933,239 @@
},
/obj/structure/cable,
/obj/effect/turf_decal/trimline/red/filled/end{
+=======
+"bDj" = (
+/obj/machinery/light/warm/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"bDl" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bDu" = (
+/turf/closed/wall/r_wall,
+/area/station/security/lockers)
+"bDz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/corner{
+ dir = 4
+ },
+/area/station/engineering/lobby)
+"bDB" = (
+/obj/structure/plaque/static_plaque/golden/commission/icebox{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bDC" = (
+/obj/machinery/door/airlock{
+ id_tag = "miningdorm_B";
+ name = "Room 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/mine/production)
+"bDF" = (
+/obj/structure/table/wood,
+/obj/item/food/grown/harebell,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/rec)
+"bDH" = (
+/obj/effect/landmark/start/chaplain,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"bDI" = (
+/obj/structure/rack,
+/obj/item/storage/bag/ore,
+/obj/item/flashlight,
+/obj/item/pickaxe,
+/obj/item/clothing/glasses/meson,
+/obj/item/mining_scanner,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"bDO" = (
+/obj/structure/fluff/tram_rail,
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"bDR" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bDX" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"bEa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"bEd" = (
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "garbage";
+ name = "disposal conveyor";
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"bEf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"bEi" = (
+/obj/structure/sign/poster/official/work_for_a_future/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"bEk" = (
+/obj/structure/railing/wooden_fence{
+ dir = 4
+ },
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"bEn" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"bEz" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Secure EVA Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/command/storage/eva)
+"bEJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"bEL" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"bEN" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"bEX" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"bFm" = (
+/obj/effect/decal/cleanable/plasma,
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"bFq" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"bFs" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"bFx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"bFA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"bFP" = (
+/obj/structure/fence/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bFW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"bFY" = (
+/obj/item/trash/syndi_cakes,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"bGa" = (
+/obj/effect/turf_decal/siding/yellow{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 8
},
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/hfr_room)
+<<<<<<< HEAD
"pbs" = (
/turf/closed/wall,
/area/station/ai_monitored/turret_protected/aisat/maint)
@@ -50734,6 +55517,175 @@
/area/station/service/bar)
"pgw" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+=======
+"bGc" = (
+/obj/machinery/computer/cargo/request,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bGm" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bGn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/railing/corner,
+/turf/open/floor/iron,
+/area/mine/eva)
+"bGq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"bGA" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/sign/departments/xenobio/directional/south,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"bGP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"bGS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"bGT" = (
+/obj/machinery/light/directional/south,
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bHa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/command/heads_quarters/rd)
+"bHc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/item/kirbyplants/random/dead,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"bHu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"bHF" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"bHI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "Courtroom";
+ name = "Security Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/primary/fore)
+"bHJ" = (
+/obj/machinery/smartfridge,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"bHO" = (
+/obj/machinery/light_switch/directional/south{
+ pixel_x = 6;
+ pixel_y = -25
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"bIa" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/siding/wideplating,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"bIc" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/ai_monitored/command/storage/eva)
+"bIl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"bIo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"bIt" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"bID" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/lobby)
+"bIL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/requests_console/directional/south{
department = "Bridge";
name = "Bridge Requests Console"
@@ -50741,6 +55693,7 @@
/obj/effect/mapping_helpers/requests_console/announcement,
/obj/effect/mapping_helpers/requests_console/information,
/obj/effect/mapping_helpers/requests_console/assistance,
+<<<<<<< HEAD
/turf/open/floor/wood,
/area/station/command/meeting_room)
"pgE" = (
@@ -54549,6 +59502,131 @@
/turf/open/floor/plating,
/area/station/maintenance/department/medical/morgue)
"qmT" = (
+=======
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bIQ" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"bIU" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"bIV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/button/door/directional/east{
+ id = "Atmospherics HFR Shutters";
+ name = "Atmospherics HFR Shutters";
+ req_access = list("atmospherics")
+ },
+/obj/effect/turf_decal/trimline/red/filled/end{
+ dir = 4
+ },
+/obj/machinery/light/small/red/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"bJa" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"bJc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"bJi" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"bJj" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"bJp" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Permabrig Workout";
+ network = list("ss13","prison");
+ view_range = 5
+ },
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"bJx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"bJD" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"bJE" = (
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/processing)
+"bJQ" = (
+/obj/structure/table/wood,
+/obj/item/stack/package_wrap,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"bJX" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/robot_debris/down,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"bKp" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"bKA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/door/airlock/grunge{
+ name = "Vacant Office A"
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/vacant_room/office)
+"bKE" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/bed{
dir = 4
},
@@ -54559,7 +59637,10 @@
id = "miningdorm_B";
name = "Door Bolt Control";
normaldoorcontrol = 1;
+<<<<<<< HEAD
pixel_y = 23;
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -54568,6 +59649,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/carpet/stellar,
/area/mine/production)
+<<<<<<< HEAD
"qmU" = (
/obj/machinery/duct,
/obj/structure/cable,
@@ -55602,6 +60684,3133 @@
/turf/open/floor/engine/vacuum,
/area/station/engineering/atmos)
"qAS" = (
+=======
+"bKI" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"bKN" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"bKZ" = (
+/obj/effect/decal/cleanable/glass,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/maintenance/port/aft)
+"bLc" = (
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"bLd" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"bLn" = (
+/obj/machinery/light/directional/west,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"bLq" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"bLs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/hallway/secondary/entry)
+"bLz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"bLA" = (
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"bLI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Transport Parlor"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"bLL" = (
+/obj/structure/sink/kitchen/directional/west{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"bLQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"bLW" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/station/commons/vacant_room/commissary)
+"bLY" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"bMb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"bMk" = (
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"bMz" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ name = "fore bay 1";
+ roundstart_template = /datum/map_template/shuttle/labour/box;
+ shuttle_id = "laborcamp_home";
+ width = 9
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bMF" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"bMY" = (
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"bMZ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Bridge West"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bNy" = (
+/obj/item/toy/snowball{
+ pixel_x = 9;
+ pixel_y = 5
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bNC" = (
+/obj/structure/fence{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"bNE" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Monitoring"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "atmos-entrance"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"bNH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"bOg" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"bOh" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"bOj" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"bOk" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/construction)
+"bOo" = (
+/obj/effect/turf_decal/arrows/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"bOp" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay North";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"bOz" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/mine/living_quarters)
+"bOO" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"bOX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/fore)
+"bOZ" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"bPc" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"bPl" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"bPn" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"bPp" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access";
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"bPr" = (
+/obj/structure/table,
+/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_x = 1;
+ pixel_y = 1
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"bPs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"bPt" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"bPw" = (
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"bPx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/construction)
+"bPz" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"bPE" = (
+/obj/structure/table,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"bPV" = (
+/obj/item/kirbyplants/random/dead,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"bPY" = (
+/obj/machinery/atmospherics/pipe/multiz/pink/visible{
+ dir = 8;
+ name = "Exfiltrate"
+ },
+/obj/effect/turf_decal/tile/neutral/diagonal_centre,
+/obj/effect/turf_decal/tile/red/diagonal_edge,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/diagonal,
+/area/station/engineering/atmos/storage)
+"bQh" = (
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/hallway/primary/starboard)
+"bQx" = (
+/obj/structure/ladder{
+ name = "upper dispenser access"
+ },
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/medical/chemistry)
+"bQA" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"bQN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"bQS" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"bRb" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/station/security/prison/safe)
+"bRd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"bRj" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/closet/emcloset/anchored,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"bRl" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"bRn" = (
+/obj/machinery/computer/warrant,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"bRo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"bRz" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"bRC" = (
+/obj/structure/chair/plastic{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"bRE" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"bRG" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"bRH" = (
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"bSi" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"bSk" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prison Gate";
+ name = "Prison Blast Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"bSo" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/sign/poster/contraband/random/directional/south,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/eighties/red,
+/area/station/security/prison/safe)
+"bSp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"bSz" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"bSG" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/textured,
+/area/station/engineering/atmos)
+"bSH" = (
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"bSW" = (
+/obj/structure/bed,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/button/door/directional/east{
+ id = "Dorm1";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"bTl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"bTq" = (
+/obj/machinery/computer/atmos_alert,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"bTx" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"bTE" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Service External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"bTF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"bTJ" = (
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/radio/intercom/directional/north,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"bTM" = (
+/obj/structure/closet/crate,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"bUa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"bUx" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/fore)
+"bUy" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"bUH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bUK" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "Xenobio Pen 5 Blast Door"
+ },
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 5";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"bUS" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"bUW" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"bVe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"bVn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"bVp" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/defibrillator/loaded{
+ pixel_y = 3
+ },
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/item/clothing/gloves/latex/nitrile,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"bVs" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Permabrig Observation Prep";
+ network = list("ss13","prison")
+ },
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"bVv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/central/lesser)
+"bVx" = (
+/obj/item/trash/popcorn,
+/obj/structure/reagent_dispensers/plumbed{
+ name = "dormitory reservoir"
+ },
+/obj/machinery/light/small/dim/directional/north,
+/obj/effect/turf_decal/delivery/white{
+ color = "#307db9"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron/textured,
+/area/station/maintenance/fore)
+"bVI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"bVJ" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"bVL" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/poster/official/random/directional/east,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"bVS" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/t_scanner,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"bVT" = (
+/obj/structure/closet/crate/trashcart/laundry,
+/obj/effect/spawner/random/contraband/prison,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner/skirt,
+/obj/item/clothing/under/rank/prisoner/skirt,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"bWe" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/evidence)
+"bWh" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured_corner{
+ dir = 8
+ },
+/area/station/security/prison)
+"bWl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"bWn" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/command/storage/eva)
+"bWp" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"bWv" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"bWy" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"bWH" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/science/ordnance)
+"bWK" = (
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"bWM" = (
+/obj/structure/stairs/south,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/medical/virology)
+"bWQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"bWU" = (
+/obj/machinery/button/door/directional/west{
+ id = "xenobio4";
+ name = "Xenobio Pen 4 Blast Door";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"bWV" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"bWZ" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"bXf" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"bXi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/transport/linear{
+ radial_travel = 0
+ },
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/mine/storage)
+"bXl" = (
+/obj/machinery/air_sensor/nitrous_tank,
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"bXm" = (
+/turf/closed/wall,
+/area/station/commons/storage/tools)
+"bXo" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/closet/crate/solarpanel_small,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"bXx" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"bXy" = (
+/turf/open/openspace,
+/area/station/ai_monitored/security/armory/upper)
+"bXD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"bXF" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/ai_all,
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"bXI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/bluespace_vendor/directional/south,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"bYd" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"bYg" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/spawner/random/armory/laser_gun,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"bYm" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"bYu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/science/explab)
+"bYw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"bYz" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"bYB" = (
+/obj/structure/table,
+/obj/item/storage/box/hug{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/razor{
+ pixel_x = -8;
+ pixel_y = 3
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"bYC" = (
+/obj/machinery/vending/wardrobe/bar_wardrobe,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Backroom"
+ },
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+"bYF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"bYK" = (
+/obj/effect/landmark/start/chemist,
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/medical/treatment_center)
+"bYR" = (
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"bYS" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/north{
+ c_tag = "Research Division Server Room - Monitoring";
+ network = list("ss13","rd");
+ pixel_x = 22
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"bYT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/maintenance{
+ name = "Morgue Maintenance"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"bYY" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"bZb" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"bZc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/command/heads_quarters/rd)
+"bZg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"bZk" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"bZm" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/light/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Service - Hall"
+ },
+/obj/machinery/disposal/bin/tagger,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"bZx" = (
+/turf/open/openspace,
+/area/station/hallway/primary/fore)
+"bZC" = (
+/obj/structure/lattice,
+/obj/structure/sign/poster/official/report_crimes/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"bZI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/treatment_center)
+"bZK" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"bZQ" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/starboard)
+"bZV" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"bZW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"cah" = (
+/obj/machinery/status_display/supply{
+ pixel_x = -32
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"cax" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Atrium"
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/structure/sign/picture_frame/portrait/bar{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/large,
+/area/station/service/bar/atrium)
+"caA" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/table/glass,
+/obj/item/book/manual/hydroponics_pod_people,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/sign/poster/contraband/kudzu/directional/north,
+/obj/machinery/light/small/directional/west,
+/obj/item/plant_analyzer,
+/obj/item/watertank{
+ pixel_y = -3;
+ pixel_x = -5
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"caC" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Monkey Pen";
+ req_access = list("genetics")
+ },
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/engine,
+/area/station/science/genetics)
+"caH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/large,
+/area/station/hallway/primary/port)
+"caY" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/service/library)
+"caZ" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"cbd" = (
+/obj/machinery/door/airlock/research{
+ name = "Crater Observation Room"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/mine/living_quarters)
+"cbk" = (
+/turf/open/floor/iron,
+/area/mine/mechbay)
+"cbs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cby" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"cbz" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"cbC" = (
+/obj/machinery/meter,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/pink/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/warning/no_smoking/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage)
+"ccg" = (
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"ccp" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/south{
+ id = "Dorm5";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"ccr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"ccs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cct" = (
+/obj/structure/noticeboard/captain{
+ pixel_y = 36
+ },
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"ccv" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 3
+ },
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"ccw" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"ccx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"ccz" = (
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering Secondary Storage"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"ccB" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/supply/disposals,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"ccF" = (
+/obj/structure/cable,
+/mob/living/basic/bear/snow/misha,
+/obj/structure/bed/dogbed/misha,
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/hos)
+"ccL" = (
+/obj/structure/chair/sofa/left/brown{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"ccQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ccR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/structure/sink/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"ccS" = (
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"ccT" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron/dark/smooth_edge,
+/area/station/service/chapel)
+"ccV" = (
+/obj/effect/spawner/random/structure/furniture_parts,
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/structure/furniture_parts,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"ccW" = (
+/obj/structure/table,
+/obj/item/pen,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/cafeteria,
+/area/station/command/heads_quarters/rd)
+"ccZ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"cdd" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"cdg" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"cdl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"cdp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"cef" = (
+/obj/machinery/biogenerator,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"cek" = (
+/obj/structure/grille,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ceo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"cew" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"cex" = (
+/obj/machinery/computer/piratepad_control/civilian{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"cey" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ceE" = (
+/obj/machinery/door/airlock/virology/glass{
+ name = "Isolation B"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"ceF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/conveyor{
+ id = "mining_internal"
+ },
+/obj/machinery/bouldertech/refinery,
+/obj/machinery/camera/directional/east{
+ c_tag = "Mining Ore Smeltery";
+ network = list("ss13", "mine")
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"ceO" = (
+/obj/machinery/button/crematorium{
+ id = "crematoriumChapel";
+ pixel_x = 25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"ceQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/minecart_rail/railbreak,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"ceS" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"ceY" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Disposal Exit";
+ name = "Disposal Exit Vent"
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/effect/turf_decal/stripes/red/box,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"cfe" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"cfh" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/prison/workout)
+"cfi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"cfl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"cfr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cft" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"cfC" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cfR" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"cfS" = (
+/obj/item/clothing/suit/costume/snowman{
+ name = "Man of Snow"
+ },
+/obj/item/clothing/head/costume/snowman{
+ name = "Head of Snow";
+ pixel_y = 9
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"cga" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"cgb" = (
+/obj/structure/chair/sofa/bench/left{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"cgs" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"cgw" = (
+/obj/structure/table/glass,
+/obj/item/hatchet,
+/obj/item/cultivator,
+/obj/item/crowbar,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/item/plant_analyzer,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"cgB" = (
+/obj/structure/aquarium/lawyer,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"cgC" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"cgR" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"cgZ" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/crowbar/large,
+/obj/machinery/camera/directional/south{
+ c_tag = "Robotics Lab Mech Bay";
+ network = list("ss13","rd")
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"chb" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"chc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"chg" = (
+/obj/structure/fence/door,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"chn" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cht" = (
+/obj/machinery/vending/engivend,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage_shared)
+"chC" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"chK" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"chO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"chP" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"chQ" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"cie" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cih" = (
+/obj/machinery/button/door/directional/west{
+ id = "chemistry_lower_shutters";
+ name = "Chemistry Exterior Shutter Control";
+ req_access = list("plumbing")
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"cin" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cip" = (
+/obj/machinery/atmospherics/components/tank/air{
+ initialize_directions = 3;
+ dir = 3
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ciG" = (
+/obj/machinery/door/airlock/external{
+ name = "Security Yard";
+ space_dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"ciI" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"ciN" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Shuttle Security Airlock"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"ciS" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/trash/cigbutt,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"ciU" = (
+/obj/structure/barricade/wooden,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"cjI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/item/reagent_containers/cup/rag,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"cjJ" = (
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"cjL" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"cjO" = (
+/obj/structure/table,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/storage/backpack/satchel/leather,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"cke" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"cks" = (
+/obj/item/wrench,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"ckL" = (
+/obj/structure/fence/corner{
+ dir = 2;
+ pixel_y = 0
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"ckN" = (
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/trimline/dark_blue/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"ckQ" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"ckX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/stairs/right{
+ dir = 4
+ },
+/area/station/engineering/lobby)
+"cll" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"clm" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance/seven,
+/turf/open/floor/plating,
+/area/station/construction)
+"clq" = (
+/turf/open/floor/iron/dark,
+/area/station/security/processing)
+"clz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"clE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/commons/storage/mining)
+"clI" = (
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"clP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"clR" = (
+/obj/structure/chair/sofa/corp/left{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"clT" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"clV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Ordnance Test Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"clY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"cma" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"cmq" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"cmw" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4;
+ name = "Exfiltrate Control"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage)
+"cmx" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"cmy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"cmD" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"cmJ" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/pipe/smart/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cmL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"cmQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/blobstart,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"cmT" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/closet/crate/trashcart,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"cmV" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"cmX" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"cmY" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_centre,
+/obj/machinery/atmospherics/pipe/multiz/pink/visible{
+ dir = 4;
+ name = "Exfiltrate"
+ },
+/obj/effect/turf_decal/tile/red/diagonal_edge,
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/floor/iron/dark/diagonal,
+/area/station/engineering/atmos/mix)
+"cmZ" = (
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"cnb" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/freezer,
+/area/station/medical/break_room)
+"cnd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"cnj" = (
+/obj/structure/fence/door{
+ name = "graveyard"
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"cno" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/station/security/lockers)
+"cnq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"cnx" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cnz" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cnB" = (
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Cargo Office";
+ name = "Cargo Office Fax Machine"
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"cod" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"coe" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/closet/crate,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"coT" = (
+/obj/structure/table,
+/obj/item/storage/wallet,
+/obj/item/storage/wallet{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"coY" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/rubble,
+/turf/open/floor/iron,
+/area/mine/production)
+"cpe" = (
+/obj/machinery/atmospherics/components/tank/air{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"cpg" = (
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"cpl" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics Storage Room - East"
+ },
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"cpm" = (
+/turf/closed/wall/r_wall,
+/area/station/command/heads_quarters/hop)
+"cpp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"cpq" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/openspace,
+/area/station/service/chapel)
+"cps" = (
+/obj/structure/table/wood/poker,
+/obj/item/storage/wallet/random,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"cpt" = (
+/obj/structure/fence/corner{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"cpw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"cpA" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"cpG" = (
+/obj/structure/table,
+/obj/item/toy/cards/deck,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"cpH" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering Secure Storage"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"cpT" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"cpY" = (
+/turf/closed/wall,
+/area/station/service/kitchen)
+"cqb" = (
+/obj/machinery/food_cart,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/sign/poster/official/cleanliness/directional/north,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"cqh" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/library,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"cqo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"cqw" = (
+/obj/structure/table/wood,
+/obj/item/c_tube,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"cqx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"cqz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"cqL" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Solar Maintenance - South West Access"
+ },
+/obj/structure/sign/warning/electric_shock/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"cqN" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"cqO" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cqW" = (
+/obj/vehicle/ridden/secway,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"crf" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/sign/departments/security/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"crn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"crv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"crS" = (
+/obj/machinery/vending/wardrobe/law_wardrobe,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"crT" = (
+/obj/effect/spawner/random/structure/chair_flipped,
+/obj/effect/spawner/random/trash/bacteria,
+/obj/structure/sign/poster/ripped/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"crW" = (
+/obj/structure/railing,
+/obj/structure/stairs/west,
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/science/cytology)
+"cse" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"csf" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/red{
+ dir = 8
+ },
+/obj/effect/spawner/random/clothing/bowler_or_that,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"csm" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"csu" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"csB" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"csE" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"csJ" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"csT" = (
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"ctk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"ctl" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"ctm" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"ctr" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"ctC" = (
+/obj/structure/fence/corner{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ctE" = (
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/office)
+"ctI" = (
+/obj/machinery/telecomms/processor/preset_three,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"ctM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"ctS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"ctY" = (
+/obj/structure/tank_holder/anesthetic,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"cuc" = (
+/obj/effect/turf_decal/siding/thinplating_new,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"cum" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"cun" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"cuq" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cur" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"cut" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"cuJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"cuP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"cvg" = (
+/obj/effect/mapping_helpers/trapdoor_placer,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cvh" = (
+/obj/effect/landmark/start/ai,
+/obj/item/radio/intercom/directional/west{
+ freerange = 1;
+ listening = 0;
+ name = "Common Channel";
+ pixel_y = -8
+ },
+/obj/item/radio/intercom/directional/south{
+ freerange = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel"
+ },
+/obj/item/radio/intercom/directional/east{
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_y = -8
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"cvj" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"cvn" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/sink/kitchen/directional/south,
+/obj/structure/mirror/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Coldroom Access"
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/kitchen,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing/corner,
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"cvq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"cvr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cvB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"cvC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"cvF" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"cvH" = (
+/obj/structure/table,
+/obj/item/trash/can/food/beans,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"cvJ" = (
+/obj/structure/fence/cut/medium{
+ dir = 2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cvN" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cvS" = (
+/turf/closed/wall,
+/area/station/maintenance/department/medical/central)
+"cwe" = (
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"cwj" = (
+/obj/machinery/requests_console/directional/south{
+ department = "Atmospherics";
+ name = "Atmospherics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"cwn" = (
+/obj/structure/cable,
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cwr" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/courtroom)
+"cwu" = (
+/obj/structure/table/glass,
+/obj/item/storage/medkit/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/medkit/toxin,
+/obj/item/storage/medkit/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/door/window/right/directional/north{
+ name = "First-Aid Supplies";
+ red_alert_access = 1;
+ req_access = list("medical")
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/storage)
+"cwH" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"cwO" = (
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cwT" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"cxd" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/starboard)
+"cxg" = (
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"cxl" = (
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"cxp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/item/clothing/under/pants/track,
+/obj/item/clothing/suit/costume/wellworn_shirt/graphic/ian,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"cxt" = (
+/obj/structure/table,
+/obj/item/food/chococoin,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"cxz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"cxA" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"cxI" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Drone Bay"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/brown/corner{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"cxO" = (
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"cxP" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/mail_sorting/service/law_office,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"cxQ" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 1
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"cyh" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"cyo" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"cyA" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/spawner/random/structure/barricade,
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/office)
+"cyH" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cyI" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/mirror/directional/east,
+/obj/structure/sign/poster/official/random/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cyK" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Dock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "miner-passthrough"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/plating,
+/area/station/cargo/miningdock)
+"cyL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"cyU" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/north,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"cyX" = (
+/obj/machinery/recharge_station,
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"czi" = (
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"czj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"czl" = (
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/machinery/modular_computer/preset/cargochat/engineering,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"czq" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining External Airlock";
+ opacity = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"czv" = (
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"czD" = (
+/turf/closed/wall,
+/area/mine/laborcamp/security)
+"czR" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/camera/directional/south{
+ c_tag = "Solar Maintenance - South West"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"czW" = (
+/obj/structure/weightmachine,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"cAe" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"cAi" = (
+/obj/effect/turf_decal/tile/purple/anticorner,
+/turf/open/floor/iron/corner{
+ dir = 1
+ },
+/area/station/hallway/primary/starboard)
+"cAo" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"cAr" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 1
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"cAu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"cAB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"cAC" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"cAG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"cAI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/depsec/medical,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"cAJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cAK" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"cAL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"cAM" = (
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_y = 4
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"cAR" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/engineering/atmos/storage/gas)
+"cAT" = (
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
+"cBk" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"cBv" = (
+/obj/machinery/button/door/directional/east{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_y = 6;
+ req_access = list("xenobiology")
+ },
+/obj/machinery/button/door/directional/east{
+ id = "xenobiomain";
+ name = "Xenobiology Containment Blast Door";
+ pixel_y = -6;
+ req_access = list("xenobiology")
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"cBG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/prisoner,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"cBP" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"cBT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"cBU" = (
+/obj/structure/table,
+/obj/machinery/camera/motion/directional/east{
+ c_tag = "AI Upload East";
+ network = list("aiupload")
+ },
+/obj/item/folder/blue,
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"cCb" = (
+/obj/structure/flora/tree/pine/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"cCt" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/rnd_all,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"cCu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/science/genetics)
+"cCG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/flasher{
+ pixel_y = -30;
+ id = "GulagCell 2"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"cCW" = (
+/obj/machinery/conveyor/inverted{
+ dir = 6;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"cDb" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"cDh" = (
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"cDk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"cDv" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/stack/rods/fifty,
/obj/structure/rack,
/obj/item/stack/cable_coil{
@@ -55615,6 +63824,7 @@
amount = 10
},
/obj/effect/decal/cleanable/dirt,
+<<<<<<< HEAD
/obj/structure/sign/poster/contraband/random/directional/north,
/turf/open/floor/iron,
/area/station/maintenance/department/electrical)
@@ -56111,10 +64321,13457 @@
/turf/open/floor/plating,
/area/station/engineering/atmos/pumproom)
"qII" = (
+=======
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"cDw" = (
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/door/airlock/glass{
+ name = "Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"cDz" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cDH" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole,
+/turf/open/floor/wood,
+/area/station/service/library)
+"cDK" = (
+/obj/structure/window/reinforced/plasma/spawner/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/power/energy_accumulator/tesla_coil/anchored,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"cDQ" = (
+/obj/effect/spawner/random/vending/snackvend,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"cDT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 5
+ },
+/obj/effect/landmark/start/depsec/medical,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"cEe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/wood/large,
+/area/station/service/bar)
+"cEi" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/medical_all,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"cEl" = (
+/obj/effect/turf_decal/siding/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ pixel_x = -9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"cEo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/holopad,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"cEs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"cEv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"cEw" = (
+/turf/closed/wall,
+/area/station/engineering/atmos)
+"cEx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"cEz" = (
+/obj/structure/sign/departments/holy/directional/north,
+/turf/open/openspace,
+/area/station/service/chapel)
+"cEG" = (
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/cigbutt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"cEL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"cEM" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"cEP" = (
+/obj/structure/closet{
+ name = "evidence closet 3"
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Lower Brig Evidence"
+ },
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/evidence)
+"cFb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/smooth_edge,
+/area/station/security/lockers)
+"cFr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"cFJ" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"cFM" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"cFZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"cGe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/official/wtf_is_co2/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cGf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"cGl" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"cGt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/command/storage/eva)
+"cGu" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"cGA" = (
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"cGB" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"cGQ" = (
+/obj/structure/sign/poster/official/random/directional/west,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"cGS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"cGZ" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/service/hydroponics)
+"cHb" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"cHf" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/transit_tube,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/transit_tube)
+"cHh" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/service/library)
+"cHl" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"cHm" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cHs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"cHA" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/crate,
+/turf/open/floor/iron/smooth,
+/area/mine/living_quarters)
+"cHB" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cHO" = (
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"cHQ" = (
+/obj/machinery/vending/wardrobe/robo_wardrobe,
+/obj/machinery/button/door/directional/east{
+ id = "robotics2";
+ name = "Shutters Control Button";
+ req_access = list("robotics")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"cHY" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/holding_cell)
+"cHZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"cIa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/digital_clock/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"cIb" = (
+/obj/machinery/dna_scannernew,
+/obj/structure/sign/warning/test_chamber/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"cIc" = (
+/turf/closed/wall,
+/area/station/security/prison/work)
+"cIf" = (
+/obj/structure/fence/corner{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cIq" = (
+/obj/machinery/computer/slot_machine{
+ balance = 15;
+ money = 500
+ },
+/obj/item/coin/iron,
+/obj/item/coin/diamond,
+/obj/item/coin/diamond,
+/obj/item/coin/diamond,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cIK" = (
+/obj/structure/table/wood,
+/obj/item/pai_card,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"cIP" = (
+/obj/machinery/bookbinder,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"cIU" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"cIY" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security EVA"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"cJb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"cJd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/north{
+ id = "riot";
+ name = "Anti-Riot Shutters";
+ req_access = list("security")
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"cJi" = (
+/obj/structure/sign/warning,
+/turf/closed/wall/r_wall,
+/area/station/security/warden)
+"cJk" = (
+/obj/machinery/chem_mass_spec,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"cJs" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"cJt" = (
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"cJw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"cJB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"cJC" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/four,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"cJH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cJX" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"cKe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cKk" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/science/research)
+"cKq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cKv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side,
+/area/station/security/processing)
+"cKy" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"cKA" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"cKB" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/checker{
+ dir = 8
+ },
+/area/station/maintenance/port/fore)
+"cKD" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/obj/item/stock_parts/water_recycler,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cKF" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/carpet/blue,
+/area/station/medical/psychology)
+"cKL" = (
+/obj/effect/landmark/blobstart,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"cLo" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"cLp" = (
+/obj/structure/table,
+/obj/item/razor,
+/obj/item/storage/backpack/duffelbag/sec/surgery,
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"cLq" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"cLw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/paper_bin{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Door"
+ },
+/obj/structure/desk_bell{
+ pixel_x = 6
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Engineering Desk";
+ req_access = list("engineering")
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"cLB" = (
+/obj/machinery/computer/prisoner/gulag_teleporter_computer{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"cLD" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Equipment Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/lockers)
+"cLJ" = (
+/obj/structure/table/wood,
+/obj/item/paper{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 9;
+ pixel_y = 7
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"cLK" = (
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"cLN" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"cLR" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/closet/crate/wooden/toy,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"cMd" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"cMe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cMk" = (
+/turf/closed/wall/r_wall,
+/area/mine/production)
+"cMr" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/maintenance/starboard/fore)
+"cMA" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/warden)
+"cMG" = (
+/obj/structure/closet/crate/coffin,
+/obj/machinery/light/small/red/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Chapel Coffin Storage"
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/chapel)
+"cMI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ name = "Delivery Office"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/shipping,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"cMJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"cMN" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Medbay Security Post"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"cMS" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/service_all,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"cMT" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"cNe" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"cNm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"cNq" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/pen/red,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"cNI" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "Xenobio Pen 7 Blast Door"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"cNL" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"cNS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Public Garden"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/textured,
+/area/station/service/hydroponics/garden)
+"cOa" = (
+/obj/structure/sign/warning/secure_area{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM"
+ },
+/turf/closed/wall,
+/area/station/tcommsat/computer)
+"cOi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{
+ dir = 8
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"cOp" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"cOy" = (
+/obj/machinery/smartfridge,
+/obj/machinery/door/window/right/directional/south{
+ name = "Produce Access";
+ req_access = list("hydroponics")
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"cOC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/mecha_part_fabricator,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"cOP" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Crew Station"
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"cPd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"cPp" = (
+/obj/item/stack/cable_coil{
+ amount = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cPq" = (
+/obj/structure/closet/crate/coffin,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/chapel)
+"cPt" = (
+/obj/structure/railing/corner,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"cPE" = (
+/turf/open/floor/iron/smooth_half{
+ dir = 1
+ },
+/area/station/security/prison/garden)
+"cPK" = (
+/obj/structure/table,
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"cPQ" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"cQc" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/rag,
+/obj/item/clothing/head/collectable/tophat{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/effect/spawner/random/entertainment/gambling{
+ pixel_x = -13
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"cQf" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"cQh" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/depsec/supply,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"cQi" = (
+/obj/machinery/disposal/delivery_chute{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Loop Chute Access"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"cQs" = (
+/obj/structure/table,
+/obj/item/computer_disk{
+ pixel_x = -2
+ },
+/obj/item/computer_disk{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"cQw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/mine/eva)
+"cQx" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"cQA" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/station/ai_monitored/command/storage/eva)
+"cQL" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"cQV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/siding/dark_blue,
+/obj/effect/turf_decal/trimline/dark_blue/filled/line,
+/obj/effect/turf_decal/trimline/dark_blue/filled/mid_joiner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/morgue)
+"cRg" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/warden)
+"cRq" = (
+/obj/structure/table,
+/obj/item/holosign_creator/atmos{
+ pixel_x = -5
+ },
+/obj/item/holosign_creator/atmos{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"cRu" = (
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cRy" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"cRC" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"cRE" = (
+/obj/structure/rack,
+/obj/item/wirecutters,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"cRF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cRK" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"cRN" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"cRO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/closed/wall,
+/area/station/engineering/atmos)
+"cSe" = (
+/obj/structure/table,
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/wirecutters,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"cSj" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"cSw" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"cSx" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cSE" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"cSH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"cTh" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"cTs" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"cTv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"cTz" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"cTD" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood/large,
+/area/station/commons/vacant_room/office)
+"cTR" = (
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/science/research)
+"cTV" = (
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"cUd" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Locker Room Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"cUB" = (
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cUF" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Aft Primary Hallway North"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"cUS" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"cVk" = (
+/obj/item/storage/box/evidence{
+ pixel_x = -10;
+ pixel_y = 12
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"cVz" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/port)
+"cVD" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "labor";
+ name = "Labor Camp Blast Door"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"cVV" = (
+/obj/machinery/newscaster/directional/north,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/security/brig)
+"cWq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"cWE" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/service/chapel/office)
+"cWG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"cWH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/organic/plant5,
+/obj/machinery/camera/directional/west{
+ c_tag = "Labor Camp Cellblock";
+ network = list("labor")
+ },
+/obj/machinery/button/flasher{
+ pixel_y = -30;
+ id = "GulagCell 1"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"cWX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"cXc" = (
+/obj/effect/turf_decal/arrows,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"cXl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"cXp" = (
+/obj/structure/bed/pod,
+/obj/effect/spawner/random/bedsheet/any,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/fore)
+"cXy" = (
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_half{
+ dir = 1
+ },
+/area/station/security/prison/garden)
+"cXG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"cXI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"cXR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"cXV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"cXX" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 11";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"cXZ" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"cYi" = (
+/obj/effect/turf_decal/trimline/dark_red/line,
+/obj/effect/turf_decal/trimline/dark_red/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_blue/mid_joiner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"cYj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"cYo" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"cYq" = (
+/obj/structure/reflector/double/anchored{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"cYv" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"cYC" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"cYE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"cYK" = (
+/obj/machinery/netpod,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/cargo/bitrunning/den)
+"cYL" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/ore_box,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"cYT" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"cYY" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/service/chapel)
+"cZa" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"cZc" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"cZd" = (
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/button/door/directional/south{
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 5;
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/tile/red/full,
+/obj/machinery/light_switch/directional/south{
+ pixel_x = -6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"cZe" = (
+/obj/structure/ladder,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"cZf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"cZk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"cZm" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"cZt" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"cZv" = (
+/obj/machinery/holopad/secure,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"cZD" = (
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"cZN" = (
+/obj/structure/table/wood,
+/obj/item/soap/nanotrasen,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"cZO" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"cZT" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "Test Chamber Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"cZU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"dad" = (
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/official/the_owl/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"daf" = (
+/obj/structure/table,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"dak" = (
+/obj/item/clothing/suit/apron/surgical,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dal" = (
+/obj/structure/table/wood,
+/obj/machinery/libraryscanner{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"daq" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"dat" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"daE" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"daH" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"daM" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/airalarm/directional/north,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage_shared)
+"daO" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/button/door/directional/east{
+ id = "drone_bay";
+ name = "Shutter Control"
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"daR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/aft/greater)
+"daS" = (
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"daT" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/rack,
+/obj/item/hatchet,
+/obj/item/cultivator,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"dbm" = (
+/obj/machinery/door/airlock{
+ name = "Private Restroom"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/captain,
+/turf/open/floor/iron/freezer,
+/area/station/command/heads_quarters/captain)
+"dbn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"dbr" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"dbs" = (
+/obj/structure/cable,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"dbw" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"dbx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"dbB" = (
+/turf/closed/wall/ice,
+/area/icemoon/underground/explored/graveyard)
+"dbH" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/mess)
+"dbL" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"dbO" = (
+/obj/machinery/door/airlock/wood{
+ name = "Backstage"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/service/theatre,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/theater)
+"dcd" = (
+/obj/structure/ladder,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"dck" = (
+/obj/structure/cable,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"dcq" = (
+/obj/structure/bed,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/button/door/directional/east{
+ id = "Dorm3";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"dcs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"dct" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dcw" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/prison/workout)
+"dcx" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"dcC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"dcE" = (
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/end{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"dcG" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"dcI" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dcO" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering Emitter Room Starboard";
+ network = list("ss13","engine")
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"dcW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"dcX" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/security{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/suit/hooded/wintercoat/security{
+ pixel_x = -8
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots{
+ pixel_x = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"ddd" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/directional/east,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"ddh" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"ddi" = (
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/fore)
+"ddk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit,
+/area/station/science/robotics/mechbay)
+"ddm" = (
+/mob/living/basic/pet/penguin/emperor{
+ name = "Club"
+ },
+/obj/item/toy/snowball{
+ pixel_x = -9;
+ pixel_y = 17
+ },
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"ddp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"ddr" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"ddu" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ddw" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/loading_area/white,
+/turf/open/floor/wood/large,
+/area/station/service/bar/atrium)
+"ddz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"ddA" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ddK" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/seeds/onion,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/obj/effect/turf_decal/siding/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"ddQ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/kirbyplants/random,
+/obj/structure/sign/calendar/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ddZ" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/green{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/large,
+/area/station/service/hydroponics/garden)
+"deg" = (
+/obj/structure/cable/layer3,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"dei" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/vending/cigarette,
+/obj/structure/sign/poster/official/nanotrasen_logo/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"det" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"deD" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Chief Engineer's Office"
+ },
+/obj/machinery/requests_console/directional/west{
+ department = "Chief Engineer's Desk";
+ name = "Chief Engineer's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"deN" = (
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"deO" = (
+/obj/structure/closet/crate,
+/obj/effect/landmark/blobstart,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/construction)
+"deP" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Chapel Office"
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"deY" = (
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"dfa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light_switch/directional/east,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"dfe" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/science/xenobiology)
+"dfq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"dfw" = (
+/obj/structure/reagent_dispensers/wall/peppertank/directional/west,
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/secure_closet/security/science,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"dfz" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_edge{
+ dir = 1
+ },
+/area/station/security/lockers)
+"dfB" = (
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/primary/starboard)
+"dfQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/storage/gas)
+"dfR" = (
+/obj/item/toy/snowball{
+ pixel_y = 3;
+ pixel_x = 3
+ },
+/obj/item/toy/snowball,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+"dga" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"dgl" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"dgp" = (
+/obj/machinery/modular_computer/preset/engineering,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/incident_display/delam/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"dgt" = (
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ id_tag = "virology_airlock_exterior";
+ name = "Virology Exterior Airlock"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/virology)
+"dgx" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/contraband/permabrig_gear,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"dgA" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"dgR" = (
+/obj/machinery/smartfridge,
+/turf/open/floor/iron/dark,
+/area/station/service/kitchen)
+"dgZ" = (
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"dha" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "permaouter";
+ name = "Permabrig Transfer"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "perma-entrance"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"dhi" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/railing,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/security/brig)
+"dhj" = (
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"dhq" = (
+/turf/closed/mineral/random/labormineral/ice,
+/area/icemoon/surface/outdoors/labor_camp)
+"dhv" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"dhH" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"dhL" = (
+/obj/machinery/computer/upload/ai{
+ dir = 1
+ },
+/obj/machinery/flasher/directional/south{
+ id = "AI"
+ },
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 9
+ },
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"dhR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/bookcase/random,
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"dhS" = (
+/obj/machinery/door/airlock{
+ name = "Permabrig Showers"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"dhU" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side,
+/area/station/security/processing)
+"dhV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/departments/exodrone/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"dhY" = (
+/obj/machinery/computer/security/mining{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"dia" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"dik" = (
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_y = 6
+ },
+/obj/structure/table/glass,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/lab)
+"dip" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"diq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/hos)
+"dit" = (
+/obj/machinery/requests_console/directional/north{
+ department = "Chapel";
+ name = "Chapel Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"diu" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"dix" = (
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"diC" = (
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"diI" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"diL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"diN" = (
+/obj/structure/closet,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"diV" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/mine/living_quarters)
+"djr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"djC" = (
+/obj/effect/decal/remains/human,
+/obj/item/reagent_containers/cup/glass/bottle/wine{
+ desc = "A fine bottle of amontillado wine. Yes, for the love of god!";
+ name = "bottle of amontillado wine";
+ pixel_x = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"djD" = (
+/obj/machinery/door/airlock{
+ name = "Crematorium"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/service/crematorium,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"djG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"djH" = (
+/obj/item/stack/sheet/animalhide/lizard{
+ desc = "Landssslidessss, the landssslidesss...";
+ name = "Tanks-The-Floor"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"djO" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Foyer"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"djU" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dka" = (
+/obj/machinery/firealarm/directional/west{
+ pixel_y = -4
+ },
+/obj/machinery/light_switch/directional/west{
+ pixel_y = 5
+ },
+/obj/machinery/photocopier,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"dkb" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"dkg" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/records/medical/laptop,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/requests_console/directional/north{
+ department = "Chief Medical Officer's Desk";
+ name = "Chief Medical Officer's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/announcement,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"dkn" = (
+/obj/machinery/space_heater,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"dkr" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"dku" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/structure/chair_flipped{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dkK" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"dkT" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"dkY" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"dkZ" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/landmark/start/cook,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"dlt" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dlH" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/smartfridge/drying,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"dlK" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"dlR" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/construction)
+"dlS" = (
+/obj/item/crowbar/red,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/spawner/random/maintenance,
+/obj/structure/rack,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"dmk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"dms" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dmt" = (
+/obj/structure/ladder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dmw" = (
+/obj/structure/fence/end{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"dmG" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"dmI" = (
+/obj/machinery/chem_master,
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"dmL" = (
+/obj/machinery/light_switch/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"dmU" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"dmV" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio10";
+ name = "Xenobio Pen 10 Blast Door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"dng" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Research Director's Office - Observation Deck";
+ network = list("ss13","rd")
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"dnk" = (
+/obj/structure/dresser,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"dnn" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/curtain/cloth/fancy/mechanical/start_closed{
+ id = "cantena_curtains"
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"dnq" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dnz" = (
+/obj/effect/turf_decal/siding/wideplating_new/light{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/work)
+"dnE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"dnI" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dnL" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dnM" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"dnT" = (
+/obj/machinery/vending/wardrobe/sec_wardrobe,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"dnX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/lockers)
+"dom" = (
+/turf/closed/wall/ice,
+/area/station/service/kitchen/coldroom)
+"don" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"dop" = (
+/obj/structure/fence/door/opened{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"doq" = (
+/obj/machinery/flasher/directional/north{
+ id = "transferflash"
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/obj/item/radio/intercom/prison/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"dos" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/station/maintenance/starboard/upper)
+"dow" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/any/security/general,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"doG" = (
+/obj/structure/rack,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/light_switch/directional/north,
+/obj/item/radio/off{
+ pixel_y = 4
+ },
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"doM" = (
+/obj/structure/table,
+/obj/item/paper{
+ pixel_y = 7
+ },
+/obj/item/paper{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"doW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"dpb" = (
+/obj/structure/table/wood,
+/obj/item/food/pie/cream,
+/obj/item/bikehorn,
+/obj/machinery/status_display/evac/directional/west,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"dpc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "EVA Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/eva,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/command/storage/eva)
+"dpl" = (
+/obj/machinery/light/directional/south,
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/bluespace_vendor/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"dpq" = (
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"dpw" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"dpx" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dpB" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"dpC" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/spawner/random/contraband/prison,
+/obj/item/trash/sosjerky,
+/obj/item/trash/boritos,
+/obj/item/trash/can,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"dpH" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"dpU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"dqw" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"dqx" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"dqI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/ordnance/office)
+"dqL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"dqO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "medsecprivacy";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/security/checkpoint/medical)
+"dqR" = (
+/obj/machinery/computer/rdconsole,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"dqW" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"drb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"drd" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/structure/cable,
+/obj/item/mod/module/plasma_stabilizer,
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/mod/module/signlang_radio,
+/obj/item/mod/module/thermal_regulator,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"drh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"drr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"drs" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"drt" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"dry" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit,
+/area/station/science/robotics/mechbay)
+"drD" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/mine/living_quarters)
+"drE" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/meson,
+/obj/item/storage/bag/ore,
+/obj/item/pickaxe,
+/obj/item/mining_scanner,
+/obj/item/flashlight,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/gps/mining,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"drH" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"drJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"drK" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{
+ dir = 8
+ },
+/obj/machinery/airlock_sensor/incinerator_atmos{
+ pixel_y = 32
+ },
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"drP" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"drR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"drZ" = (
+/obj/structure/flora/grass/both,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dsf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/paper_bin/carbon{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/status_display/supply{
+ pixel_x = -32
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"dsj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"dsl" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 1
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"dsn" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Airlock"
+ },
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"dso" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"dsR" = (
+/obj/machinery/conveyor/inverted{
+ dir = 10;
+ id = "garbage"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"dsU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"dsZ" = (
+/obj/structure/noticeboard/directional/west,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"dtb" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/station/service/library)
+"dtc" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"dth" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Power Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"dtr" = (
+/obj/machinery/computer/records/medical,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"dty" = (
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dtz" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/processing)
+"dtC" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"dtR" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"dtU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"duh" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/transit_tube)
+"duE" = (
+/obj/machinery/atmospherics/components/binary/tank_compressor{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"duS" = (
+/obj/machinery/door/airlock{
+ name = "Labor Camp Library"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"duT" = (
+/obj/item/chair/stool/bar{
+ pixel_y = -2
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"duY" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"duZ" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Closet"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/mine/eva)
+"dvf" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/camera/directional/south{
+ c_tag = "Arrivals Lobby South"
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/effect/landmark/start/hangover,
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/sofa/bench{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"dvi" = (
+/obj/structure/flora/grass/both/style_random,
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/thinplating,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"dvl" = (
+/obj/machinery/camera/motion/directional/north{
+ c_tag = "Armory - External"
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dvq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"dvw" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"dvK" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/breath/medical,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/machinery/camera/directional/east{
+ c_tag = "Virology Module South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"dvO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"dvY" = (
+/obj/structure/flora/tree/dead/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dvZ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dwb" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"dwj" = (
+/obj/machinery/atmospherics/components/binary/pump/off,
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airlock_sensor/incinerator_ordmix{
+ pixel_y = 32
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"dwo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/openspace/icemoon/keep_below,
+/area/station/maintenance/port/lesser)
+"dws" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"dww" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dwy" = (
+/obj/structure/window/reinforced/plasma/spawner/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/power/energy_accumulator/grounding_rod/anchored,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"dwI" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/wallet_storage,
+/obj/effect/spawner/random/clothing/kittyears_or_rabbitears,
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"dwY" = (
+/obj/machinery/light_switch/directional/west,
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"dwZ" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"dxg" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/cable_coil,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"dxh" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"dxm" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/toggle/labcoat,
+/obj/effect/spawner/random/clothing/gloves,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"dxn" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering East"
+ },
+/obj/structure/closet/toolcloset,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"dxq" = (
+/obj/structure/closet/secure_closet/chief_medical,
+/obj/item/screwdriver,
+/obj/machinery/camera/directional/north{
+ c_tag = "Chief Medical Officer Bedroom";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"dxs" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/item/clothing/gloves/boxing/green,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dxu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"dxA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"dxE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"dxI" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/safety_internals/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"dxK" = (
+/turf/closed/wall/r_wall,
+/area/station/command/meeting_room)
+"dxO" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"dxU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"dyf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"dyg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/plating/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dyA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"dyE" = (
+/obj/structure/chair/pew/right{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"dyN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dzi" = (
+/obj/machinery/status_display/ai/directional/south,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"dzl" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"dzt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/status_display/door_timer{
+ id = "Isolation_Cell";
+ name = "Isolation Cell";
+ pixel_x = -32
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"dzy" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"dzJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"dzL" = (
+/obj/machinery/newscaster/directional/north,
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"dzZ" = (
+/obj/structure/fence/cut/medium{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dAc" = (
+/obj/item/radio/intercom/directional/north,
+/obj/item/storage/belt/utility{
+ pixel_y = -4
+ },
+/obj/item/clothing/gloves/color/fyellow{
+ pixel_y = 2
+ },
+/obj/item/clothing/gloves/color/fyellow{
+ pixel_y = 4
+ },
+/obj/structure/rack,
+/obj/machinery/camera/directional/north{
+ c_tag = "Primary Tool Storage"
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"dAh" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "Biohazard Containment Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"dAl" = (
+/obj/machinery/smartfridge/extract/preloaded,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"dAm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"dAx" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/cultivator/rake,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"dAB" = (
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ name = "Research Director Observation";
+ req_access = list("rd")
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/command/heads_quarters/rd)
+"dAP" = (
+/obj/structure/cable,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"dAQ" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/machinery/modular_computer/preset/civilian,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/light_switch/directional/north{
+ pixel_x = -6
+ },
+/obj/machinery/button/door/directional/north{
+ id = "stationawaygate";
+ name = "Gateway Access Shutter Control";
+ req_access = list("gateway");
+ pixel_x = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"dAZ" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/visit)
+"dBb" = (
+/obj/structure/chair/sofa/right/brown,
+/obj/item/toy/plush/moth{
+ name = "Dr. Moff"
+ },
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/carpet/blue,
+/area/station/medical/psychology)
+"dBh" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"dBp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"dBB" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/sign/poster/official/help_others/directional/west,
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"dBJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"dBK" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"dBN" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/requests_console/auto_name/directional/north,
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/duct,
+/obj/machinery/light/small/directional/north,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"dBQ" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "MiniSat AI Chamber South";
+ network = list("aicore")
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"dBX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"dBY" = (
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"dBZ" = (
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"dCq" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"dCy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"dCF" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"dDm" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/science/explab)
+"dDp" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"dDt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"dDw" = (
+/turf/closed/wall,
+/area/station/medical/surgery/fore)
+"dDy" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/corner,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"dDz" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance/two,
+/obj/item/sign,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dDC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ name = "Supply multi deck pipe adapter"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"dDR" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dDV" = (
+/obj/effect/spawner/random/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dEf" = (
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"dEg" = (
+/obj/effect/turf_decal/trimline/blue/end,
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/end,
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"dEv" = (
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"dEz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/security/prison/rec)
+"dEI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"dEL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump/off/supply/visible/layer4{
+ dir = 8;
+ name = "Air Out"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"dEQ" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Public Mining Ladder"
+ },
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"dER" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"dEV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"dFi" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"dFj" = (
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"dFo" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"dFp" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Air to Mix"
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"dFt" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/exit/departure_lounge)
+"dFA" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"dFC" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dFF" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"dFG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dFO" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/departments/evac/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"dFR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/mine/laborcamp)
+"dFW" = (
+/turf/open/floor/iron/white/side,
+/area/station/science/research)
+"dFX" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/station/security/prison/safe)
+"dFZ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dGe" = (
+/obj/effect/decal/cleanable/food/egg_smudge,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dGq" = (
+/obj/machinery/computer/records/medical,
+/obj/structure/cable,
+/obj/machinery/button/door/directional/north{
+ id = "medsecprivacy";
+ name = "Privacy Shutters Control";
+ req_access = list("security")
+ },
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"dGK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dGO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/commons/fitness)
+"dGS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/obj/structure/rack,
+/obj/machinery/camera/directional/south{
+ c_tag = "Chapel Electrical Maintenace Lower"
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/department/chapel)
+"dGU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Captain's Office Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/captain,
+/turf/open/floor/plating,
+/area/station/maintenance/central/lesser)
+"dHa" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/button/elevator/directional/north{
+ id = "publicElevator"
+ },
+/obj/machinery/door/window/elevator/left/directional/west{
+ elevator_mode = 1;
+ transport_linked_id = "publicElevator"
+ },
+/obj/machinery/lift_indicator/directional/north{
+ linked_elevator_id = "publicElevator"
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"dHb" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/item/throwing_star/toy,
+/turf/open/misc/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/station/security/prison/rec)
+"dHf" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Service - Botany Upper Entrance"
+ },
+/obj/structure/table/glass,
+/obj/machinery/fax/auto_name,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"dHg" = (
+/obj/machinery/door/airlock{
+ name = "Unit B"
+ },
+/turf/open/floor/iron/textured,
+/area/station/commons/toilet)
+"dHi" = (
+/obj/structure/chair/stool/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"dHk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"dHl" = (
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/restraints/handcuffs,
+/obj/item/wrench,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"dHw" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"dHF" = (
+/obj/structure/railing,
+/obj/structure/marker_beacon/cerulean,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dHJ" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"dIl" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"dIx" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dIy" = (
+/obj/effect/turf_decal/trimline/neutral/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"dIG" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/south,
+/obj/item/book/bible{
+ pixel_y = 8
+ },
+/obj/item/storage/fancy/candle_box{
+ pixel_x = 4
+ },
+/obj/item/storage/fancy/candle_box,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"dIL" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dJx" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "Xenobio Pen 3 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"dJy" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 8
+ },
+/obj/machinery/air_sensor/ordnance_freezer_chamber,
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"dJY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"dJZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"dKe" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"dKh" = (
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"dKk" = (
+/obj/machinery/light/directional/west,
+/obj/structure/displaycase,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"dKy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "Brig Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig)
+"dKA" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ location = "Security"
+ },
+/obj/structure/plasticflaps/opaque,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"dKC" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/service/lawoffice)
+"dKK" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"dKP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/processing)
+"dKW" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_x = 32;
+ pixel_y = 36
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = 28
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dLe" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"dLf" = (
+/turf/closed/wall/r_wall,
+/area/station/cargo/storage)
+"dLo" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"dLr" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"dLA" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/toy/figure/chef,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/service/kitchen/coldroom)
+"dLL" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"dLN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"dLQ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"dLR" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"dMi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/fore)
+"dMl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"dMn" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"dMo" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dMp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"dMv" = (
+/obj/item/clothing/gloves/color/rainbow,
+/obj/item/clothing/head/soft/rainbow,
+/obj/item/clothing/shoes/sneakers/rainbow,
+/obj/item/clothing/under/color/rainbow,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"dMH" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"dMK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"dMX" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Engineering Station"
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"dNt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"dNw" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/landmark/start/geneticist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"dNA" = (
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"dNC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Space"
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"dNG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"dNH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Permabrig Cold Room";
+ network = list("ss13","prison")
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"dNN" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"dOp" = (
+/obj/structure/table/wood,
+/obj/item/instrument/saxophone,
+/obj/item/instrument/piano_synth,
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Theater"
+ },
+/turf/open/floor/iron/grimy,
+/area/station/commons/lounge)
+"dOq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"dOw" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"dOC" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"dOF" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door";
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/bridge)
+"dOH" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dOK" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dOY" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/effect/turf_decal/tile/red/half,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"dPj" = (
+/obj/structure/ladder,
+/obj/effect/turf_decal/tile/neutral/diagonal_centre,
+/obj/effect/turf_decal/tile/dark_blue/diagonal_edge,
+/turf/open/floor/iron/dark/diagonal,
+/area/station/engineering/atmos/storage)
+"dPy" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Kill Chamber";
+ network = list("ss13","rd","xeno")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"dPH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/camera/directional/north{
+ c_tag = "Mining Mech Bay";
+ network = list("ss13", "mine")
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"dPT" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dQd" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Station Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/maintenance/department/cargo)
+"dQl" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"dQo" = (
+/obj/machinery/button/door/directional/east{
+ id = "pharmacy_shutters2";
+ name = "Pharmacy Shutter Control";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"dQy" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/closet/secure_closet/hydroponics,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"dQI" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"dQN" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"dQZ" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 9";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"dRc" = (
+/obj/structure/table,
+/obj/machinery/firealarm/directional/west,
+/obj/item/storage/medkit/regular,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"dRk" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/ore_box,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"dRz" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"dRB" = (
+/obj/machinery/door/airlock/hydroponics/glass{
+ name = "Hydroponics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/hydroponics)
+"dRD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/station/command/gateway)
+"dRX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "Xenobio Pen 5 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"dSj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/mine/production)
+"dSm" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"dSJ" = (
+/obj/machinery/flasher/directional/north{
+ id = "visitorflash"
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Visitation North";
+ network = list("ss13","prison")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"dSO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"dSX" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"dTa" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"dTm" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/obj/effect/mob_spawn/corpse/human/skeleton,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"dTq" = (
+/obj/structure/fireplace,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"dTr" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Judge"
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"dTs" = (
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"dTC" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Door"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"dTD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"dTF" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "mining_internal"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"dTI" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/fake_stairs/wood/directional/north,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dTW" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"dUe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"dUh" = (
+/obj/machinery/light/small/directional/north,
+/obj/item/kirbyplants/random,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"dUm" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"dUn" = (
+/obj/machinery/shieldgen,
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"dUr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/holopad,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"dUv" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/item/clothing/glasses/meson/engine/tray,
+/obj/item/clothing/glasses/meson/engine/tray,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"dUG" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Showers"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"dUL" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "maint1"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dUO" = (
+/turf/closed/wall,
+/area/station/security/brig)
+"dUR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"dUW" = (
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"dVb" = (
+/obj/structure/table,
+/obj/item/toy/cards/deck,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"dVc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"dVj" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"dVt" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"dVF" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dVJ" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/engineering/lobby)
+"dVN" = (
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"dVS" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"dWf" = (
+/obj/item/trash/pistachios,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dWl" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"dWn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Upper Permabrig Cafeteria";
+ network = list("ss13","prison")
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"dWI" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/item/kirbyplants/organic/plant2,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"dWK" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/shovel/spade,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"dWL" = (
+/obj/structure/railing,
+/obj/machinery/vending/cytopro,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"dWP" = (
+/obj/structure/table/wood,
+/obj/item/pen/red{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/cup/glass/mug/britcup{
+ pixel_x = 8;
+ pixel_y = 1
+ },
+/obj/item/pen/blue{
+ pixel_y = -2
+ },
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"dWZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dXh" = (
+/obj/item/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/structure/table,
+/obj/machinery/status_display/supply{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"dXi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"dXk" = (
+/obj/structure/railing/wooden_fence{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"dXn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"dXp" = (
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/hydroponics)
+"dXr" = (
+/obj/structure/minecart_rail{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"dXv" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"dXx" = (
+/obj/machinery/duct,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dXF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"dXI" = (
+/obj/machinery/chem_master,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"dXP" = (
+/obj/effect/turf_decal/trimline/yellow/filled/shrink_cw{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"dXU" = (
+/obj/effect/decal/cleanable/generic,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"dYj" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dYr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"dYt" = (
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"dYx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"dYA" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/directional/east,
+/obj/structure/sign/departments/security/directional/east,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"dYC" = (
+/obj/structure/closet/firecloset,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dYH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"dYI" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"dYP" = (
+/obj/item/toy/snowball{
+ pixel_x = -11;
+ pixel_y = -2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"dYS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dYU" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light/directional/south,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"dZc" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"dZq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"dZJ" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"dZN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"dZQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dZS" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"dZW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/prison)
+"dZX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"eaa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/research)
+"ead" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering Supermatter Starboard";
+ network = list("ss13","engine")
+ },
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"eag" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/landmark/start/scientist,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"eaq" = (
+/obj/structure/table,
+/obj/item/paper_bin/carbon,
+/obj/item/pen,
+/obj/structure/cable,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"eat" = (
+/obj/machinery/washing_machine,
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/no_erp/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"eay" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/structure/cable,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"eaE" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/cargo/lobby)
+"eaG" = (
+/obj/structure/sign/departments/vault/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/surface/outdoors/nospawn)
+"eaQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eaT" = (
+/obj/machinery/bluespace_vendor/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ebb" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ebd" = (
+/obj/structure/flora/rock/pile/icy/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ebr" = (
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"ebv" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"ebB" = (
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"ebH" = (
+/obj/structure/sign/departments/medbay/alt/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ebL" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/structure/closet/crate/goldcrate,
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"ebO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"ebW" = (
+/obj/structure/fence/cut/medium{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ecs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"ecw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/door/airlock/research/glass{
+ name = "Genetics Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/genetics,
+/turf/open/floor/iron,
+/area/station/science/genetics)
+"ecJ" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"ecU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"ecW" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"edc" = (
+/obj/item/flashlight/lantern/on,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"edd" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-med-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ede" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access";
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"edn" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/machinery/ore_silo,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"edq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"edw" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"edN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"edR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eea" = (
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"eei" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"ees" = (
+/obj/structure/kitchenspike,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"eeD" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"eeF" = (
+/obj/item/cigbutt/cigarbutt,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"eeT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/engineering/atmospherics,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"eff" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"efk" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white/side,
+/area/station/science/explab)
+"efv" = (
+/obj/item/toy/snowball{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"efx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/turf_decal/trimline/red/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"efy" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/station/service/chapel)
+"efE" = (
+/obj/structure/reflector/box/anchored{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"efH" = (
+/obj/structure/table/glass,
+/obj/item/food/grown/harebell{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/food/grown/harebell{
+ pixel_y = 3
+ },
+/obj/item/food/grown/harebell,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"efI" = (
+/obj/structure/lattice,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"efK" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"efM" = (
+/obj/structure/closet/crate/grave,
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"efR" = (
+/obj/structure/ladder,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"efV" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"ega" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"egj" = (
+/obj/structure/rack,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/effect/spawner/random/armory/riot_armor,
+/obj/effect/spawner/random/armory/riot_helmet,
+/obj/effect/spawner/random/armory/riot_shield,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"egm" = (
+/obj/structure/table,
+/obj/item/restraints/handcuffs,
+/obj/item/assembly/timer,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/security/office)
+"egp" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"egz" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/prison,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"egF" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/documents,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"egL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/command/storage/eva)
+"egS" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"egT" = (
+/obj/item/circuitboard/machine/stasis,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/item/wrench/medical,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"egV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"egY" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "hop";
+ name = "Privacy Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hop)
+"eha" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ehd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ehh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"ehp" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ehq" = (
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ehD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/transport/linear{
+ radial_travel = 0
+ },
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/mine/storage)
+"ehJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"ehL" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/deepfryer,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"ehO" = (
+/obj/machinery/door/window/brigdoor/right/directional/west{
+ name = "Observation Deck";
+ req_access = list("xenobiology")
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ehP" = (
+/obj/structure/sign/warning/cold_temp,
+/turf/closed/wall/r_wall,
+/area/station/engineering/storage_shared)
+"ehR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"ehU" = (
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"ehZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/table/wood,
+/obj/effect/spawner/random/entertainment/toy_figure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"eic" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"eig" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/restraints/handcuffs{
+ pixel_y = 5
+ },
+/obj/item/restraints/handcuffs{
+ pixel_y = 1
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = 1;
+ pixel_y = -4
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Holding Cells"
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"eik" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ein" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Gas to Chamber"
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"eiH" = (
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"eiI" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"eiJ" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/status_display/evac/directional/north,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage_shared)
+"ejb" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/security/glass{
+ name = "Permabrig Visitation"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/security/brig,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"ejn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ejo" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"ejL" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"ejN" = (
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{
+ name = "Burn Chamber Exterior Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"ejQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"ejX" = (
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"ekh" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics - Central"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port to Infiltrate"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ekj" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/clothing/costume,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/effect/spawner/random/clothing/gloves,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ekm" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "chemistry_lower_shutters";
+ name = "Chemistry Exterior Shutters"
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"ekn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"ekq" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"ekE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"ekW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"elj" = (
+/obj/effect/landmark/start/depsec/engineering,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/engineering)
+"elk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/science/explab)
+"elw" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/upper)
+"elE" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"elT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{
+ dir = 8
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"emp" = (
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/starboard)
+"emx" = (
+/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"emK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/command/heads_quarters/rd)
+"emM" = (
+/obj/machinery/door/window/brigdoor/security/cell/left/directional/west{
+ id = "Cell 1";
+ name = "Cell 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth_half{
+ dir = 1
+ },
+/area/station/security/brig)
+"emT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ena" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"eni" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/turf_decal/trimline/red/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"enq" = (
+/obj/machinery/doppler_array{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"ens" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"enH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"enI" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Tool Storage Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/commons/storage/primary)
+"enR" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"enX" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"enY" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eos" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"eoy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"eoD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"eoE" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"eoJ" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"eoL" = (
+/obj/structure/table,
+/obj/item/taperecorder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eoO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"eoP" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"eoS" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth";
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/service/chapel)
+"eoY" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"epw" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"epB" = (
+/obj/structure/chair/pew/left{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"epC" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"epH" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"epN" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"epY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/engineering/storage)
+"eqj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"eqq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"equ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/primary/starboard)
+"eqE" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"eqH" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"eqI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"eqN" = (
+/obj/structure/fence/door,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"eqP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eqS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"eqU" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"eqV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"erd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"eri" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/chief_engineer,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"erk" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"erl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/greenglow,
+/obj/structure/sign/poster/official/safety_eye_protection/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ero" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"erw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"erA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/construction)
+"erI" = (
+/obj/structure/rack,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_y = 3
+ },
+/obj/item/tank/internals/emergency_oxygen,
+/obj/structure/sign/warning/cold_temp/directional/west,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/white,
+/area/station/hallway/secondary/exit/departure_lounge)
+"erK" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters{
+ id = "vacantofficemaintshutter";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/office)
+"erM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"erN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"erV" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"erY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"erZ" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"esc" = (
+/obj/machinery/computer/order_console/mining,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"eso" = (
+/obj/machinery/telecomms/receiver/preset_left,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"esv" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"esC" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"esE" = (
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"esF" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"esI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/gateway)
+"esK" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/glass/reinforced,
+/area/station/security/brig/entrance)
+"esS" = (
+/obj/machinery/computer/shuttle/labor{
+ dir = 8
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"eta" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Central Hallway East"
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ete" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/commons/lounge)
+"etv" = (
+/obj/machinery/chem_heater/withbuffer,
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"etw" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"etz" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"etB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"etH" = (
+/obj/structure/closet/crate/coffin,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/chapel)
+"etO" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"etW" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"etY" = (
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"euc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"eud" = (
+/obj/item/food/chococoin,
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"euf" = (
+/obj/structure/bed{
+ dir = 4
+ },
+/obj/item/bedsheet/captain{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"euq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"euw" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"euI" = (
+/obj/structure/statue/snow/snowman,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"euM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"euZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"evb" = (
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"evh" = (
+/obj/structure/flora/tree/pine/style_random{
+ pixel_x = -15
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"evk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"evp" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"evw" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/closet/emcloset,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"evP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"evT" = (
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"ewi" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "Janitor"
+ },
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/maintenance/department/medical/central)
+"ewo" = (
+/obj/structure/fence/post{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"ewC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"ewI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"ewM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"ewT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"exe" = (
+/obj/effect/turf_decal/siding/yellow/end{
+ dir = 8
+ },
+/obj/machinery/plumbing/receiver,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"exm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "robotics";
+ name = "Robotics Lab Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/obj/machinery/door/window/left/directional/south{
+ name = "Robotics Desk";
+ req_access = list("robotics")
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"exn" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"exu" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+"exv" = (
+/obj/effect/gibspawner/human/bodypartless,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"exw" = (
+/turf/closed/wall,
+/area/station/service/hydroponics)
+"exL" = (
+/obj/item/trash/cheesie,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/fore)
+"exN" = (
+/obj/effect/spawner/random/trash,
+/obj/machinery/light/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"exQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eyb" = (
+/turf/closed/wall,
+/area/station/security/processing)
+"eyc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"eyf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/public/glass{
+ name = "Arrivals"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"eyj" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"eyk" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"eym" = (
+/obj/structure/girder,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"eyP" = (
+/turf/open/misc/ice/coldroom,
+/area/station/service/kitchen/coldroom)
+"eyR" = (
+/obj/machinery/processor/slime,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"ezf" = (
+/obj/machinery/door/airlock{
+ name = "Private Restroom"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/iron/freezer,
+/area/station/medical/break_room)
+"ezl" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"ezq" = (
+/obj/structure/table,
+/obj/item/stamp,
+/obj/item/poster/random_official,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ezs" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/red/anticorner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_corner{
+ dir = 4
+ },
+/area/station/security/office)
+"ezu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "viroview"
+ },
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"ezJ" = (
+/obj/machinery/light/directional/east,
+/turf/open/floor/glass/reinforced,
+/area/station/science/ordnance/office)
+"ezK" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ezN" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Station Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"eAb" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/toy/sword,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"eAg" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/closed/wall,
+/area/station/security/prison/toilet)
+"eAh" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"eAj" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eAk" = (
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/west{
+ id = "lower_chapel_shutters";
+ name = "Graveyard Shutters";
+ pixel_y = -8
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"eAu" = (
+/obj/structure/flora/grass/green/style_2,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eAw" = (
+/obj/structure/cable/multilayer/multiz,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eAx" = (
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"eAQ" = (
+/obj/structure/rack,
+/obj/item/storage/box/lights/mixed{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/storage/box/lights/tubes,
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"eAW" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/warning/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"eBd" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"eBe" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"eBg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"eBz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eBB" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"eBI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eBV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/station/security/checkpoint/engineering)
+"eCg" = (
+/obj/structure/tank_holder/oxygen,
+/obj/effect/decal/cleanable/wrapping,
+/obj/structure/sign/poster/official/safety_internals/directional/north,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"eCn" = (
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"eCp" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"eCq" = (
+/obj/structure/chair/plastic{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/splatter,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"eCt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eCD" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Prison Common Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/work)
+"eCE" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"eCR" = (
+/obj/structure/no_effect_signpost{
+ desc = "Now, where to go from here? That's a timeless question."
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"eCT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"eDc" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/suit_storage_unit/medical,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"eDg" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/item/radio/intercom/prison/directional/west,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/security/prison)
+"eDh" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "teledoor";
+ name = "MiniSat Teleport Access"
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"eDj" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"eDq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/visit)
+"eDs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"eDC" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"eDH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"eDJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Mix to Space"
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eDM" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Head of Security"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/hos,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/smooth_large,
+/area/station/command/heads_quarters/hos)
+"eEO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"eEY" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"eFd" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/storage/gas)
+"eFh" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/cigarette_pack,
+/obj/item/lighter/greyscale{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"eFn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"eFt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"eFu" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/sign/warning/gas_mask/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"eFG" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/flag/nanotrasen/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"eFH" = (
+/obj/structure/flora/rock/icy/style_random,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"eFO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eFS" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mech Bay Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"eFW" = (
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"eGg" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/obj/item/seeds/watermelon,
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/fore)
+"eGr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"eGs" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"eGw" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"eGy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"eGA" = (
+/obj/machinery/computer/prisoner/management{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"eGB" = (
+/obj/effect/spawner/random/entertainment/arcade,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/eighties,
+/area/station/commons/lounge)
+"eGK" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/entertainment/drugs,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"eGM" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"eGN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"eGV" = (
+/obj/effect/spawner/random/lavaland_mob/raptor,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"eGW" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"eHb" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 2
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/mapping_helpers/mail_sorting/service/dormitories,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"eHe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/department/medical/central)
+"eHg" = (
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"eHj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/item/clothing/under/costume/jabroni,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"eHo" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/shower/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"eHC" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eHT" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"eHV" = (
+/obj/structure/plasticflaps/opaque{
+ dir = 4
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "Research Division"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"eHX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ dir = 4;
+ name = "Arrivals Dock"
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"eHZ" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"eId" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"eIg" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/here_for_your_safety/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"eIk" = (
+/obj/structure/filingcabinet,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"eIv" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"eIC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"eII" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/cup/beaker,
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"eIR" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eIU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/obj/structure/sign/warning/electric_shock/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"eJe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"eJf" = (
+/obj/structure/lattice,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"eJx" = (
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"eJz" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L12"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"eJI" = (
+/obj/structure/closet/emcloset,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"eJK" = (
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eJU" = (
+/obj/machinery/door/airlock/security{
+ name = "Permanent Cell 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/safe)
+"eJV" = (
+/obj/structure/table,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"eJX" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/cigarette_pack,
+/obj/effect/spawner/random/entertainment/lighter,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"eKb" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/aft)
+"eKl" = (
+/obj/effect/turf_decal/stripes/box,
+/obj/machinery/destructive_scanner,
+/turf/open/floor/iron/textured_large,
+/area/station/hallway/primary/starboard)
+"eKI" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/sign/departments/medbay/alt/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"eKJ" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"eKN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon/keep_below,
+/area/station/maintenance/port/lesser)
+"eKW" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"eLl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/department/chapel)
+"eLm" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/monkeycubes,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"eLn" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"eLr" = (
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/research)
+"eLs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"eLB" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Service - Gambling Lounge"
+ },
+/obj/machinery/computer/slot_machine{
+ name = "two-armed bandit"
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"eLM" = (
+/obj/structure/cable/multilayer/multiz,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"eLN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4,
+/obj/machinery/meter/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"eLS" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/statue/snow/snowman{
+ name = "Cecil";
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/mine/mechbay)
+"eMa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"eMn" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM"
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/aft/greater)
+"eMr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"eME" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/box/red/corners{
+ dir = 4
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"eMG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"eMH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/assistant,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"eMK" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 4;
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"eMT" = (
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eNh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"eNl" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark/start/head_of_security,
+/obj/structure/cable,
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/hos)
+"eNm" = (
+/obj/structure/fermenting_barrel{
+ desc = "A dried up barrel of what appeared to once have been full of wine.";
+ name = "cask"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"eNC" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/item/kirbyplants/random,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"eND" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/visit)
+"eNE" = (
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"eNH" = (
+/obj/machinery/door/airlock/command{
+ name = "Chief Medical Officer"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/medical/cmo,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"eNK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"eOl" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"eOm" = (
+/obj/structure/sign/poster/official/no_erp/directional/west,
+/turf/closed/wall,
+/area/station/maintenance/starboard/fore)
+"eOw" = (
+/obj/machinery/computer/shuttle/labor,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"eOx" = (
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Research Division";
+ name = "Research Division Fax Machine";
+ pixel_x = 1
+ },
+/obj/structure/sign/departments/science/directional/south,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"eOB" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"eOJ" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/stairs/medium,
+/area/station/cargo/storage)
+"ePi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"ePj" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/coin{
+ pixel_x = -7
+ },
+/obj/effect/spawner/random/clothing/bowler_or_that,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"ePm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ePn" = (
+/obj/structure/closet,
+/obj/item/clothing/under/suit/black/skirt,
+/obj/item/clothing/under/suit/black,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"ePr" = (
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/hos)
+"ePu" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"ePB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"ePP" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Starboard Primary Hallway Center West"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ePR" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ePT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/sign/warning/chem_diamond/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"ePV" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/structure/sign/warning/pods/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"eQz" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eQA" = (
+/obj/item/kitchen/rollingpin,
+/obj/structure/table,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"eQF" = (
+/obj/structure/railing/corner,
+/obj/structure/sign/departments/holy/directional/west,
+/turf/open/floor/iron/dark/side{
+ dir = 9
+ },
+/area/station/service/chapel)
+"eQH" = (
+/obj/structure/sign/departments/medbay/alt/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"eQT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"eQX" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"eRf" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eRh" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"eRp" = (
+/obj/structure/bed{
+ dir = 1;
+ pixel_x = -2
+ },
+/obj/machinery/flasher/directional/north{
+ id = "Cell 1"
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+"eRw" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"eRx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/maintenance/glass,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"eRE" = (
+/obj/structure/fence/post{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eRH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"eRO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"eRZ" = (
+/obj/structure/table,
+/obj/item/papercutter{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"eSj" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/quantum_server,
+/obj/effect/decal/cleanable/oil/streak,
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 4
+ },
+/area/station/cargo/bitrunning/den)
+"eSn" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/service/library)
+"eSq" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"eSr" = (
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"eSA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"eSC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"eSJ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"eSY" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"eTa" = (
+/obj/effect/spawner/random/structure/tank_holder,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"eTb" = (
+/obj/structure/fireplace,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/carpet/black,
+/area/station/security/prison/safe)
+"eTe" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"eTi" = (
+/obj/machinery/telecomms/broadcaster/preset_left,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"eTv" = (
+/obj/machinery/door/airlock/security{
+ name = "Permanent Cell 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/safe)
+"eTx" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/large,
+/area/station/engineering/main)
+"eTC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"eTM" = (
+/obj/effect/turf_decal/trimline/blue/corner,
+/obj/effect/turf_decal/trimline/blue/corner,
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"eTP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"eTY" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/stripes/box,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"eUf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"eUi" = (
+/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/structure/table/glass,
+/obj/item/seeds/tower,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"eUm" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"eUx" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/table,
+/obj/item/paper_bin/construction,
+/obj/item/stack/pipe_cleaner_coil/random,
+/obj/item/stack/pipe_cleaner_coil/random,
+/obj/item/stack/pipe_cleaner_coil/random,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/commons/storage/art)
+"eUz" = (
+/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{
+ pixel_x = 32
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/station/service/chapel)
+"eUA" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/green/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"eUB" = (
+/obj/structure/table,
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_x = -5
+ },
+/obj/item/clothing/suit/hooded/wintercoat/security{
+ pixel_x = 5
+ },
+/obj/item/clothing/suit/hooded/wintercoat/security{
+ pixel_x = 5
+ },
+/obj/item/clothing/suit/hooded/wintercoat/security{
+ pixel_x = 5
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"eUI" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"eUK" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/plasteel/twenty{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"eUL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"eUN" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/machinery/button/door/directional/south{
+ id = "surgery";
+ name = "Surgery Shutter Control"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"eUO" = (
+/mob/living/simple_animal/hostile/asteroid/polarbear{
+ move_force = 999;
+ name = "Dewey"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eUU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eUW" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/landmark/start/janitor,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"eUY" = (
+/obj/effect/gibspawner/human,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"eVa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"eVl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ id_tag = "cargooffice";
+ name = "Cargo Office"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/shipping,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"eVp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"eVw" = (
+/obj/effect/spawner/random/trash,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eVC" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"eVI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"eVO" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"eVV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"eVY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"eVZ" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"eWb" = (
+/obj/structure/table,
+/obj/item/aicard,
+/obj/item/ai_module/reset,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"eWc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"eWh" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 2";
+ req_access = list("xenobiology")
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "Xenobio Pen 2 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"eWj" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"eWB" = (
+/obj/structure/rack,
+/obj/item/electropack,
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"eWF" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Arrivals Escape Pod 2"
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"eWQ" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"eWT" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"eWV" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"eXa" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/wtf_is_co2/directional/north,
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/station/maintenance/port/fore)
+"eXc" = (
+/obj/effect/spawner/random/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eXf" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Fitness Room North"
+ },
+/obj/structure/closet/masks,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/flag/ssc/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"eXD" = (
+/obj/structure/minecart_rail{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/holosign/barrier/atmos/sturdy,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "minecraft_shutter";
+ name = "Cart Shutters"
+ },
+/turf/open/floor/iron/textured,
+/area/station/service/hydroponics)
+"eXH" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/chemistry)
+"eYe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"eYm" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/fore)
+"eYn" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"eYx" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eYz" = (
+/obj/machinery/mineral/processing_unit/gulag{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"eYC" = (
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"eYF" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"eYH" = (
+/obj/machinery/power/smes/super/full,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"eYK" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/shoes/winterboots,
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/delivery/red,
+/obj/machinery/camera/directional/north{
+ c_tag = "Arrivals External Access"
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/textured,
+/area/station/hallway/secondary/entry)
+"eYR" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_y = 4
+ },
+/obj/item/pen/red,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"eYS" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/trash/food_packaging,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"eYT" = (
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 11;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"eYX" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 1
+ },
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"eYY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eZc" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"eZi" = (
+/obj/machinery/drone_dispenser,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"eZp" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"eZu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"eZz" = (
+/obj/item/storage/fancy/cigarettes/cigpack_mindbreaker,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"eZA" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"eZK" = (
+/obj/machinery/recycler{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/structure/sign/warning/secure_area/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"eZL" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"eZO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eZP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eZW" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"fab" = (
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fad" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - HoS Office"
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_x = -6;
+ pixel_y = 16;
+ start_on = 0
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/item/stamp/head/hos{
+ pixel_x = 10;
+ pixel_y = 6
+ },
+/obj/machinery/recharger{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/phone{
+ pixel_x = -9;
+ pixel_y = 7
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/hos)
+"faf" = (
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"faq" = (
+/obj/machinery/newscaster/directional/west,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"faG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"faJ" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"faL" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"faV" = (
+/obj/machinery/atmospherics/components/unary/passive_vent/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/mine/laborcamp/security)
+"faW" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"fbl" = (
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"fbw" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Bridge Conference Room"
+ },
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"fbA" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/science/cytology)
+"fbF" = (
+/obj/effect/landmark/navigate_destination/dockarrival,
+/obj/effect/turf_decal/bot_white,
+/obj/structure/plaque/static_plaque/golden/commission/icebox,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"fbM" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"fbY" = (
+/obj/effect/spawner/random/trash/hobo_squat,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"fca" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"fcg" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"fcu" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/chair,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"fcA" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"fcI" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fcN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fcP" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fcQ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{
+ dir = 8
+ },
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"fcY" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"fdb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/fence{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fde" = (
+/obj/structure/table,
+/obj/item/paper{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"fdj" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Escape";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/exit/departure_lounge)
+"fdm" = (
+/obj/structure/falsewall,
+/turf/open/floor/iron,
+/area/station/security/prison/safe)
+"fdp" = (
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"fdy" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"fdF" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/plastic,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"fdG" = (
+/obj/structure/cable,
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"fdH" = (
+/obj/machinery/meter,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fdN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"fdV" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/item/bikehorn/rubberducky,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"fdX" = (
+/obj/item/toy/cards/deck{
+ pixel_x = -9;
+ pixel_y = 13
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"fdY" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden,
+/turf/closed/wall,
+/area/station/medical/cryo)
+"fed" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fep" = (
+/obj/structure/no_effect_signpost,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"fez" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/item/seeds/wheat,
+/obj/item/seeds/wheat,
+/obj/item/seeds/tomato,
+/obj/item/seeds/onion,
+/obj/item/seeds/garlic,
+/obj/item/seeds/carrot,
+/obj/item/seeds/ambrosia,
+/obj/item/seeds/apple,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"feD" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"feJ" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/security/armory/upper)
+"feQ" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"feU" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle/epinephrine,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/machinery/light/directional/north,
+/obj/machinery/button/door/directional/north{
+ id = "pharmacy_shutters3";
+ name = "Pharmacy Shutter Controls";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"ffe" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/aft/lesser)
+"ffp" = (
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"ffQ" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/machinery/smartfridge/chemistry/virology/preloaded,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"ffZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"fgc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"fgo" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"fgs" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"fgx" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"fgJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"fgN" = (
+/obj/structure/bonfire/prelit,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"fgQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination/eva,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"fgU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"fgV" = (
+/obj/structure/railing/wooden_fence{
+ dir = 8
+ },
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"fhb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/science/genetics)
+"fhg" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Dormitory South"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"fhu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/processing)
+"fhw" = (
+/obj/machinery/piratepad/civilian,
+/obj/effect/turf_decal/loading_area,
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"fhz" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"fhL" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"fhU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"fhW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fhX" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fij" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 8
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"fil" = (
+/obj/structure/table/glass,
+/obj/machinery/microwave/engineering/cell_included,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"fio" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"fiq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"fiu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"fiv" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fiA" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"fiD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"fiE" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fiL" = (
+/turf/closed/wall/r_wall,
+/area/station/security/evidence)
+"fiN" = (
+/obj/structure/table/wood,
+/obj/structure/secure_safe/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"fiO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"fiS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"fiT" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/item/kirbyplants/random,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"fiU" = (
+/obj/machinery/door/poddoor/massdriver_ordnance,
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"fiY" = (
+/obj/machinery/ntnet_relay,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"fja" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"fjg" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/trimline/blue,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"fjt" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 9";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio9";
+ name = "Xenobio Pen 9 Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"fjz" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"fjD" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/commons/storage/primary)
+"fjF" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fjG" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"fjH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"fjN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/duct,
+/obj/effect/turf_decal/siding/dark{
+ dir = 10
+ },
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+"fjQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"fki" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/light/directional/east,
+/obj/machinery/newscaster/directional/north,
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"fkj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fkk" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"fkt" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/icemoon,
+/area/station/maintenance/port/lesser)
+"fkw" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fkD" = (
+/obj/structure/chair/sofa/right/brown{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"fkF" = (
+/obj/item/weldingtool,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fkN" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"fkO" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "Atmospherics Delivery";
+ req_access = list("atmospherics")
+ },
+/obj/effect/turf_decal/loading_area,
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/turf/open/floor/iron/textured_half{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"fkV" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Permabrig Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"fkX" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/openspace,
+/area/station/science/ordnance/office)
+"fld" = (
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"fle" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"flx" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=HOP";
+ location = "CHE"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"flD" = (
+/obj/effect/spawner/random/structure/tank_holder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"flH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"flI" = (
+/obj/machinery/vending/wardrobe/jani_wardrobe,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"flK" = (
+/obj/effect/spawner/random/entertainment/arcade,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/eighties,
+/area/station/commons/lounge)
+"flW" = (
+/obj/machinery/atmospherics/components/tank/air,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"flZ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/fluff/tram_rail,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"fma" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"fmc" = (
+/turf/closed/wall,
+/area/station/hallway/primary/aft)
+"fmf" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"fmg" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 1
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"fmm" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/rods/fifty,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"fmq" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 12;
+ height = 18;
+ name = "BoxStation emergency evac bay";
+ shuttle_id = "emergency_home";
+ width = 32
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fmr" = (
+/obj/effect/turf_decal/siding/yellow/end{
+ dir = 4
+ },
+/obj/machinery/plumbing/sender,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"fmA" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"fmU" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"fng" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"fnj" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/entertainment/deck,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"fnt" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"fnA" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fnC" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"fnF" = (
+/obj/structure/chair/sofa/middle/brown,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"fnS" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"fnW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"fog" = (
+/obj/machinery/rnd/production/techfab/department/medical,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"foI" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/item/storage/box/matches,
+/obj/effect/spawner/random/entertainment/cigar,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"foO" = (
+/turf/open/floor/carpet,
+/area/station/security/prison/rec)
+"foT" = (
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"foW" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"fpa" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"fps" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 9
+ },
+/area/station/security/prison/safe)
+"fpA" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/fore)
+"fpD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fpJ" = (
+/obj/structure/fireaxecabinet/directional/west,
+/obj/machinery/suit_storage_unit/atmos,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"fqv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fqA" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"fqG" = (
+/obj/structure/fluff/fokoff_sign,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/obj/structure/sign/departments/security/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"fqH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/red/half,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"fqJ" = (
+/obj/effect/turf_decal/trimline/white/filled/warning,
+/turf/open/genturf,
+/area/icemoon/underground/unexplored/rivers/deep)
+"fqM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"fqQ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"fqR" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Starboard Primary Hallway West"
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fqW" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/carbon{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/ethanol{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/chlorine{
+ pixel_x = 1
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"frd" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"fro" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"frq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Antechamber"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "ai-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"frt" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"frz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/item/chair,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"frD" = (
+/obj/machinery/air_sensor/oxygen_tank,
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"frE" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"frF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/lesser)
+"frN" = (
+/obj/machinery/power/shieldwallgen,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"frS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/evidence)
+"fsj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"fsm" = (
+/obj/structure/flora/rock/pile/icy/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fsp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/red/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"fsv" = (
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"fsx" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern/on,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"fsz" = (
+/obj/structure/table/glass,
+/obj/machinery/vending/wallmed/directional/north,
+/obj/item/book/manual/wiki/surgery{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/surgery_tray/full,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Surgery A";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"fsF" = (
+/obj/effect/spawner/structure/window,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"fsJ" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fsK" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/execution/education)
+"fsQ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/engineering/atmos)
+"fsS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"fsZ" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ftk" = (
+/obj/item/chair/wood,
+/obj/item/toy/plush/moth{
+ name = "Ariadne"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/flag/nanotrasen/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ftA" = (
+/obj/structure/table,
+/obj/item/storage/box/prisoner,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"ftJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "gene_desk_shutters";
+ name = "Genetics Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/right/directional/east{
+ name = "Genetics Desk";
+ req_access = list("genetics")
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"ftN" = (
+/obj/machinery/rnd/destructive_analyzer,
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"ftS" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"ftY" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/obj/structure/flora/grass/both/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fuc" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/landmark/navigate_destination/hydro,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fue" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 14
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"fuf" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fum" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"fuD" = (
+/obj/structure/tank_holder/extinguisher,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"fuH" = (
+/turf/closed/mineral/snowmountain/coldroom,
+/area/icemoon/underground/explored)
+"fuM" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=CHE";
+ location = "AIE"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fuX" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"fuY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fuZ" = (
+/obj/structure/railing,
+/obj/structure/flora/tree/pine/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fvj" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/exoscanner{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/machine/exoscanner,
+/obj/item/circuitboard/machine/exoscanner{
+ pixel_y = -3
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo Bay Drone Bay"
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/drone_bay)
+"fvk" = (
+/turf/open/floor/glass/reinforced,
+/area/station/science/xenobiology)
+"fvx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"fvA" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Engineering Lobby";
+ name = "Engineering Lobby Fax Machine"
+ },
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"fvK" = (
+/obj/structure/rack,
+/obj/item/storage/box/petridish,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/security/prison/work)
+"fvO" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"fvR" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/open/floor/iron/dark/textured,
+/area/station/maintenance/disposal/incinerator)
+"fwh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"fwm" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L14"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fwq" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port to Filter"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fwx" = (
+/obj/structure/flora/tree/pine/style_random,
+/obj/structure/marker_beacon/cerulean,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fwB" = (
+/turf/closed/mineral/snowmountain/coldroom,
+/area/station/service/kitchen/coldroom)
+"fwC" = (
+/obj/structure/railing/wooden_fence{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"fwD" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"fwI" = (
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"fwL" = (
+/obj/structure/sink/kitchen/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"fwM" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"fwO" = (
+/obj/machinery/space_heater,
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"fwQ" = (
+/obj/structure/secure_safe/caps_spare,
+/obj/structure/table/reinforced,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"fwS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"fxd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"fxl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"fxn" = (
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/machinery/newscaster/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security Post - Cargo"
+ },
+/obj/machinery/computer/security/mining{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"fxR" = (
+/obj/machinery/telecomms/hub/preset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"fxT" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fxV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fxY" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small/directional/north,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron,
+/area/mine/production)
+"fyc" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"fyr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "AI Core"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"fyw" = (
+/obj/machinery/telecomms/server/presets/service,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"fyI" = (
+/turf/closed/wall/mineral/wood/nonmetal,
+/area/icemoon/underground/explored)
+"fyQ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fyR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"fyZ" = (
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fza" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fzo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"fzv" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"fzy" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fzD" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"fzG" = (
+/obj/structure/closet{
+ name = "evidence closet 5"
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/evidence)
+"fzJ" = (
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
+ },
+/obj/structure/girder,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"fzK" = (
+/turf/closed/wall,
+/area/station/service/bar)
+"fzO" = (
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/door/airlock/maintenance{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fzQ" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/landmark/start/geneticist,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"fzU" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"fAF" = (
+/obj/structure/rack,
+/obj/item/clothing/gloves/boxing/green,
+/obj/item/reagent_containers/cup/glass/waterbottle,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fAH" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"fAV" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"fAW" = (
+/obj/structure/fence/door/opened,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fBc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/yellow/line,
+/obj/effect/turf_decal/trimline/yellow/line{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/window{
+ dir = 8;
+ id = "drone_bay";
+ name = "Drone Bay Shutters"
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner,
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"fBs" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/west{
+ c_tag = "Labor Camp Cell 3";
+ network = list("labor")
+ },
+/obj/machinery/flasher/directional/west{
+ id = "GulagCell 3"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"fBw" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"fBy" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/camera/directional/north{
+ network = list("ss13","medbay");
+ c_tag = "Virology Airlock"
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"fBF" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"fBJ" = (
+/obj/machinery/modular_computer/preset/civilian,
+/obj/machinery/requests_console/directional/north{
+ department = "Ordnance";
+ name = "Ordnance Lab Requests Console"
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"fBM" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"fBQ" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"fBR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fCm" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/closed/mineral/random/snow,
+/area/icemoon/underground/explored)
+"fCA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"fCM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/medbay/lobby)
+"fCR" = (
+/obj/structure/fence/end{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fCW" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/processing)
+"fDc" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/start/warden,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"fDe" = (
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"fDf" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/box/red/corners{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"fDl" = (
+/obj/machinery/light/small/built/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"fDn" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"fDI" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/records/medical/laptop{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"fDJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"fDP" = (
+/obj/structure/cable,
+/obj/item/radio/intercom/prison/directional/north,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"fEd" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stock_parts/capacitor,
+/obj/structure/sign/poster/random/directional/north,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"fEe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Dormitory"
+ },
+/obj/effect/landmark/navigate_destination,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/dorms)
+"fEA" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance{
+ name = "Transport Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/security/processing)
+"fEL" = (
+/obj/machinery/holopad,
+/obj/machinery/duct,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/lobby)
+"fER" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"fEV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/airlock/maintenance/glass{
+ name = "Expedition Planning Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"fEX" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"fEZ" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/commons/dorms)
+"fFb" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fFe" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"fFi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/light/cold/directional/south,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/engineering/transit_tube)
+"fFn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"fFx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"fFy" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fFC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"fFD" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/greenglow,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"fFQ" = (
+/obj/structure/tank_dispenser,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"fGn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"fGq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"fGI" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"fGM" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"fGQ" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/hangover,
+/obj/structure/sign/warning/electric_shock/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fGY" = (
+/obj/machinery/smartfridge/organ,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "surgery";
+ name = "Surgery Shutter"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"fHg" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/turf/open/floor/iron/dark/side,
+/area/station/security/prison)
+"fHo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"fHK" = (
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"fHO" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"fHQ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/dark_green/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_green/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"fHS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"fHV" = (
+/obj/machinery/mineral/stacking_unit_console{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Disposals"
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"fHZ" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"fIs" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"fIt" = (
+/turf/closed/wall/r_wall,
+/area/icemoon/underground/explored)
+"fIx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"fIK" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"fJe" = (
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"fJl" = (
+/obj/machinery/computer/accounting{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"fJm" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace,
+/area/station/science/ordnance/office)
+"fJA" = (
+/obj/structure/bodycontainer/morgue/beeper_off{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/medical/morgue)
+"fJF" = (
+/obj/structure/table,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"fJL" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{
+ dir = 1
+ },
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"fJS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"fJZ" = (
+/obj/effect/turf_decal/tile/red,
+/obj/structure/railing/corner,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"fKe" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering West"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"fKf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"fKi" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/bed/medical/emergency,
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fKr" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"fKv" = (
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/fluff/tram_rail,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"fKw" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"fKF" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L7"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fKI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fKO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fKR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"fKV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"fKW" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Upper Permabrig Hallway North";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"fKZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/obj/machinery/door/airlock{
+ name = "Kitchen"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/kitchen)
+"fLb" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/maintenance/starboard/fore)
+"fLe" = (
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"fLh" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"fLl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"fLq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"fLs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/security/armory/upper)
+"fLu" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"fLx" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/service/chapel)
+"fLC" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"fLK" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"fLP" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fLQ" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/button/door/directional/north{
+ id = "surgery";
+ name = "Surgery Shutter Control"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"fLS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"fLT" = (
+/obj/machinery/door/airlock{
+ name = "Restroom"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"fLY" = (
+/obj/structure/table,
+/obj/item/stock_parts/micro_laser{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 2
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/drone_bay)
+"fMc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fMt" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/engine_smes)
+"fMC" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/dice{
+ pixel_y = 5;
+ pixel_x = -4
+ },
+/obj/effect/spawner/random/entertainment/money_small,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"fME" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fMZ" = (
+/obj/structure/cable,
+/obj/item/wrench,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"fNa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fNp" = (
+/obj/structure/girder,
+/turf/open/floor/plating/snowed/icemoon,
+/area/mine/eva/lower)
+"fNr" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/no_smoking/directional/north,
+/obj/machinery/light/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering SMES"
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/engine_smes)
+"fNv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fNB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"fNK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/port)
+"fNN" = (
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"fNZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "kitchencounter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"fOl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"fOq" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fOs" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Quartermaster's Office"
+ },
+/obj/structure/table,
+/obj/item/coin/silver,
+/obj/item/computer_disk/quartermaster,
+/obj/item/computer_disk/quartermaster,
+/obj/item/computer_disk/quartermaster,
+/obj/item/clipboard,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"fOH" = (
+/obj/structure/fence/post{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"fOR" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/disposal/bin/tagger,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/lab)
+"fOS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"fOU" = (
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fPb" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fPc" = (
+/obj/structure/fence{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fPv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"fPA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"fPB" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"fPI" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/kirbyplants/organic/plant10,
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fPP" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fPX" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Escape Airlock"
+ },
+/obj/effect/landmark/navigate_destination/dockesc,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"fPY" = (
+/obj/structure/table/reinforced,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/item/gun/energy/laser/carbine/practice{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/gun/energy/laser/practice,
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"fPZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"fQc" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fQe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Service - Electrical Maintenace Lower"
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/lesser)
+"fQk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"fQu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"fQz" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"fQG" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/prison)
+"fRb" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fRq" = (
+/obj/structure/closet/boxinggloves,
+/obj/machinery/light/directional/north,
+/obj/item/clothing/shoes/jackboots,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/clock/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"fRv" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"fRz" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 1
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"fSi" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/sign/nanotrasen{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"fSj" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fSm" = (
+/obj/structure/fence/door/opened{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"fSs" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"fSv" = (
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"fSB" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"fSP" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/utility/welding,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"fTb" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"fTi" = (
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"fTo" = (
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -3
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 3
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/item/knife/plastic,
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/prison/directional/north,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"fTq" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"fTx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fTB" = (
+/obj/machinery/power/turbine/core_rotor{
+ dir = 8;
+ mapping_id = "main_turbine"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"fTC" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"fTF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"fTG" = (
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"fTH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"fTR" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/station/hallway/primary/central)
+"fTT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/breakroom)
+"fTW" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"fTX" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"fUc" = (
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"fUh" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fUj" = (
+/obj/structure/bed/medical/emergency,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"fUr" = (
+/obj/machinery/airalarm/directional/south,
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"fUL" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"fUM" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/research_director,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"fUR" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/entry)
+"fUW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"fVf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"fVm" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemical Storage"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fVo" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"fVy" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"fVD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fVE" = (
+/obj/machinery/power/turbine/turbine_outlet{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"fVJ" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/item/book/manual/wiki/cooking_to_serve_man,
+/obj/structure/table/reinforced,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"fVK" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/east{
+ name = "Pharmacy Desk";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "pharmacy_shutters2";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/iron,
+/area/station/medical/pharmacy)
+"fVS" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"fVU" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"fWa" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"fWe" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/plant_analyzer,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"fWo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"fWw" = (
+/obj/structure/railing/corner,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"fWL" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -11;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"fWN" = (
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"fWO" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"fWQ" = (
+/obj/machinery/flasher/directional/north{
+ id = "Cell 2"
+ },
+/obj/structure/bed{
+ dir = 1;
+ pixel_x = -2
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+"fWS" = (
+/obj/structure/mineral_door/wood,
+/obj/structure/barricade/wooden/crude/snow,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"fWX" = (
+/obj/structure/cable/multilayer/multiz,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"fXb" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Captain's Quarters"
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"fXr" = (
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/science/research)
+"fXu" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"fXw" = (
+/obj/machinery/chem_master/condimaster{
+ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";
+ name = "HoochMaster Deluxe"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+"fXy" = (
+/obj/structure/cable,
+/obj/machinery/computer/prisoner/management,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"fXL" = (
+/obj/structure/sign/poster/official/here_for_your_safety/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"fXO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"fXQ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fXX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance_hatch{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fYi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"fYz" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"fYE" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/modular_computer/preset/id{
+ dir = 1
+ },
+/obj/item/paper/fluff/ids_for_dummies,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"fYH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"fYJ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+"fYO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"fYQ" = (
+/obj/machinery/light/small/directional/west,
+/mob/living/basic/mouse/brown/tom,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"fYS" = (
+/turf/closed/wall,
+/area/station/commons/storage/primary)
+"fYT" = (
+/obj/structure/fence/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"fYW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"fYY" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"fZb" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "miner-passthrough"
+ },
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Dock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/plating,
+/area/station/cargo/miningdock)
+"fZg" = (
+/obj/machinery/computer/teleporter{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/command/teleporter)
+"fZq" = (
+/obj/structure/curtain/cloth,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"fZy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/openspace,
+/area/station/science/ordnance/office)
+"fZA" = (
+/obj/machinery/button/door/directional/west{
+ id = "xenobio5";
+ name = "Xenobio Pen 5 Blast Door";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"fZH" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck{
+ pixel_y = 13;
+ pixel_x = 6
+ },
+/obj/effect/spawner/random/entertainment/cigarette,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"fZK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/structure/sign/clock/directional/north,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"fZV" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"gad" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/table/reinforced,
+/obj/item/crowbar,
+/obj/item/pickaxe/emergency{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat/cargo{
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat/medical/paramedic{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"gak" = (
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"gam" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining/glass{
+ id_tag = "cargooffice";
+ name = "Cargo Office"
+ },
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/general,
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"gaq" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/glass/coffee,
+/obj/item/reagent_containers/cup/glass/coffee{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gas" = (
+/obj/structure/table,
+/obj/machinery/camera/directional/east{
+ c_tag = "Ordnance Office";
+ network = list("ss13","rd")
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"gav" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"gax" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/corners,
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"gaA" = (
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored/graveyard)
+"gaC" = (
+/obj/structure/closet/lasertag/red,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"gaF" = (
+/obj/item/toy/snowball{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"gaS" = (
+/obj/item/hot_potato/harmless/toy,
+/obj/structure/table/wood,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/eighties/red,
+/area/station/security/prison/safe)
+"gaT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/modular_computer/preset/id{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth_corner{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"gbd" = (
+/obj/item/radio/off{
+ pixel_y = 6
+ },
+/obj/item/radio/off{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/radio/off{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/radio/off,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"gbh" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"gbu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"gbv" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"gbJ" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"gbK" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/utility/beekeeper_suit,
+/obj/item/clothing/head/utility/beekeeper_head,
+/obj/item/melee/flyswatter,
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Botany Lower Entrance"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"gbL" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/sign/warning/directional/north,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"gbP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"gck" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance{
+ name = "Vestibule Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/security/processing)
+"gcu" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"gcP" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/chair/stool/bar/directional/east,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"gcT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gcU" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"gcV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"gcZ" = (
+/obj/structure/table,
+/obj/item/storage/bag/tray,
+/obj/item/food/piedough,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"gdc" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gdv" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gdz" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/door/window/right/directional/south{
+ name = "First-Aid Supplies";
+ red_alert_access = 1;
+ req_access = list("medical")
+ },
+/obj/structure/table/glass,
+/obj/item/mod/module/plasma_stabilizer,
+/obj/item/mod/module/thermal_regulator,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/item/mod/module/signlang_radio,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/storage)
+"gdC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"gdN" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gdP" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"gdY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"gea" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gec" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/table_or_rack,
+/obj/effect/spawner/random/engineering/toolbox,
+/obj/effect/spawner/random/engineering/toolbox,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/obj/structure/sign/poster/contraband/the_griffin/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"gee" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"geg" = (
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"gel" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/south,
+/obj/item/radio/intercom/directional/west,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"gem" = (
+/obj/structure/railing,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"geq" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"get" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/status_display/supply{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"geJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"geV" = (
+/obj/structure/ladder,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_large,
+/area/station/engineering/lobby)
+"geW" = (
+/obj/structure/cable,
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"geZ" = (
+/obj/structure/sink/directional/south,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"gfb" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/central/greater)
+"gff" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Module North";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gfo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"gfw" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"gfC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/light_construct/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gfF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair/stool/directional/south,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/storage/art)
+"gga" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/spawner/random/trash/hobo_squat,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"gge" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"ggn" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden,
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"ggz" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/minecart_rail{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south{
+ frequency = 1453;
+ name = "Kitchen Intercom"
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ggG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"ggR" = (
+/obj/machinery/computer/teleporter{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"ggV" = (
+/obj/machinery/conveyor{
+ id = "gulag"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"ghb" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ghl" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ghx" = (
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"ghz" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"ghD" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/vending/wardrobe/hydro_wardrobe,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ghE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Lower Hallway South"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"ghJ" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/landmark/start/captain,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"ghN" = (
+/obj/structure/sink/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"ghY" = (
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"gib" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"gif" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/plastic,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"giv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"giN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/yellow/line,
+/turf/open/floor/iron/dark/side,
+/area/station/security/prison/workout)
+"giO" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"giP" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"giQ" = (
+/obj/item/radio/intercom/directional/north,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"giV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"gjc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"gjg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/storage/medkit/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/medkit/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/storage/medkit/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/healthanalyzer,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"gjq" = (
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"gjI" = (
+/obj/effect/spawner/random/structure/tank_holder,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"gjM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"gjP" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/cargo_gauntlet,
+/obj/item/clothing/gloves/cargo_gauntlet,
+/obj/item/clothing/gloves/cargo_gauntlet,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gjS" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Judge"
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"gjW" = (
+/obj/structure/chair,
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"gjZ" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"gka" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter/room)
+"gko" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mining_internal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/bouldertech/refinery/smelter,
+/turf/open/floor/iron,
+/area/mine/production)
+"gks" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gky" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"gkK" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 4;
+ name = "Supply multi deck pipe adapter"
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 4;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/effect/turf_decal/stripes/box,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"gkN" = (
+/obj/machinery/vending/autodrobe/all_access,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"gkP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gkT" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"gkX" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle/epinephrine,
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/syringe,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"gkY" = (
+/obj/machinery/atmospherics/components/binary/pump/off{
+ dir = 1;
+ name = "N2 To Pure"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gkZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"glc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"glh" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/port/aft)
+"glk" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/department/chapel)
+"gls" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/turf_decal/tile/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"glz" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"glC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/evidence)
+"glI" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"glP" = (
+/obj/structure/railing/corner,
+/obj/item/storage/belt/utility,
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/light/directional/north,
+/obj/item/clothing/glasses/welding,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"glS" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "MiniSat Pod Access";
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"glX" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gmb" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"gmf" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gmJ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port to Infiltrate/Filter"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gmL" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/transmitter,
+/obj/item/stock_parts/subspace/transmitter,
+/obj/item/stock_parts/subspace/treatment,
+/obj/item/stock_parts/subspace/treatment,
+/obj/item/stock_parts/subspace/treatment,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"gmO" = (
+/obj/structure/frame/machine,
+/obj/item/circuitboard/machine/chem_master,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"gmR" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/north,
+/obj/structure/reagent_dispensers/fueltank/large,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"gmW" = (
+/turf/closed/wall,
+/area/station/commons/fitness)
+"gnb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"gnh" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/cargo)
+"gnj" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "atmos-entrance"
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/machinery/duct,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/atmos,
+/obj/effect/mapping_helpers/airlock/access/any/security/general,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"gnq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"gnw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gnJ" = (
+/obj/effect/turf_decal/siding/thinplating/dark,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"gnL" = (
+/obj/structure/closet/bombcloset/security,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"gnM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"gnT" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/sign/departments/medbay/alt/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gnX" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"goa" = (
+/obj/machinery/chem_heater/withbuffer,
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"gob" = (
+/obj/structure/closet/wardrobe/black,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"god" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/door/window/left/directional/west{
+ name = "Secure Art Exhibition";
+ req_access = list("library")
+ },
+/obj/effect/spawner/random/structure/table_fancy,
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"goe" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"gov" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Janitorial Delivery";
+ req_access = list("janitor")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"goy" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"goB" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"goE" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Pure to Port"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"goF" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/virology{
+ name = "Break Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"goI" = (
+/obj/structure/curtain/bounty/start_closed,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/commons/vacant_room/office)
+"goY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gpj" = (
+/obj/structure/chair/sofa/corp/right{
+ dir = 8
+ },
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"gpo" = (
+/obj/structure/sign/warning/directional/south,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"gpp" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"gpr" = (
+/obj/machinery/restaurant_portal/bar,
+/obj/effect/turf_decal/delivery/red,
+/obj/machinery/barsign/directional/south,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"gps" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/machinery/microwave,
+/obj/machinery/camera/directional/north{
+ c_tag = "Mining B-1 Crater Observatory";
+ network = list("ss13", "mine")
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"gpt" = (
+/obj/machinery/button/door/directional/east{
+ id = "kanyewest";
+ name = "Privacy Shutters"
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"gpB" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"gpM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"gpR" = (
+/obj/structure/cable,
+/obj/machinery/light/dim/directional/south,
+/obj/machinery/requests_console/directional/south{
+ department = "Medbay";
+ name = "Medbay Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"gpS" = (
+/obj/effect/turf_decal/loading_area/white{
+ dir = 8
+ },
+/obj/structure/noticeboard/directional/south,
+/turf/open/floor/wood/large,
+/area/station/service/bar/atrium)
+"gpU" = (
+/obj/structure/frame/computer,
+/obj/item/stack/cable_coil/five,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"gpZ" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/firealarm/directional/west,
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/rods/fifty,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"gqh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/kitchen/directional/north{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"gqj" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"gqm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "robo1"
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"gqv" = (
+/obj/structure/sign/poster/contraband/random/directional/west,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"gqB" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"gqK" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"gqT" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"gra" = (
+/obj/effect/mapping_helpers/airlock/access/all/medical/coroner,
+/obj/machinery/door/airlock/medical/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"grk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"grp" = (
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+"grr" = (
+/obj/structure/table,
+/obj/item/storage/box/shipping,
+/obj/item/clothing/head/soft,
+/obj/item/clothing/head/soft,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"grA" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/item/wrench{
+ pixel_y = 17
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"grD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Psychology"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/psychology,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/psychology)
+"grI" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"grL" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored/graveyard)
+"grN" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"grT" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"gsd" = (
+/obj/structure/fence/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"gsk" = (
+/obj/structure/reflector/single/anchored{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"gst" = (
+/turf/closed/wall,
+/area/station/commons/vacant_room/commissary)
+"gsI" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"gsK" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gsN" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"gsT" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"gta" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table,
+/obj/item/folder,
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"gtg" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gti" = (
+/turf/open/openspace,
+/area/station/maintenance/starboard/aft)
+"gtw" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"gtB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/fore)
+"gtF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"gtG" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"guA" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"guO" = (
+/obj/item/stack/sheet/mineral/wood,
+/obj/effect/decal/cleanable/generic,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"guS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"guU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/turf/closed/wall,
+/area/station/engineering/atmos)
+"gvc" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining Mech Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "mining-mechbay-external"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"gvd" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 9
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"gvf" = (
+/obj/machinery/button/door/directional/east{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast DOors";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"gvj" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"gvp" = (
+/obj/item/chair/stool{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"gvr" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"gvK" = (
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"gwl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/machinery/light/directional/north,
+/obj/machinery/button/door/directional/north{
+ id = "Secure Gate";
+ name = "Cell Shutters";
+ req_access = list("brig")
+ },
+/obj/machinery/button/door/directional/north{
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ req_access = list("brig");
+ pixel_y = 35
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"gwp" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/machinery/holopad,
+/turf/open/floor/iron/large,
+/area/station/commons/locker)
+"gwq" = (
+/obj/machinery/computer/records/security,
+/obj/machinery/requests_console/directional/north{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"gwy" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/machinery/light/warm/directional/north,
+/turf/open/misc/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/station/security/prison/rec)
+"gwz" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"gwJ" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 5
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/effect/turf_decal/tile/dark/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/mine/living_quarters)
+"gwK" = (
+/turf/closed/wall/r_wall,
+/area/station/security/checkpoint/engineering)
+"gwM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/small/dim/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/station/maintenance/port/fore)
+"gwW" = (
+/obj/structure/ladder,
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"gxg" = (
+/obj/structure/cable,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"gxh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gxq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gxx" = (
+/obj/item/radio/intercom/prison/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/rec)
+"gxO" = (
+/obj/structure/table/reinforced,
+/obj/item/hand_labeler{
+ pixel_y = 8
+ },
+/obj/item/hand_labeler{
+ pixel_y = 8
+ },
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"gxP" = (
+/obj/structure/reagent_dispensers/plumbed,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/large,
+/area/station/engineering/atmos)
+"gxR" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/rods/fifty,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"gxS" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/ore_box,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/mine/eva)
+"gxU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"gya" = (
+/obj/structure/table/wood,
+/obj/item/storage/medkit/regular,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"gyd" = (
+/obj/machinery/space_heater,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gyg" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 10
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/reagent_containers/cup/watering_can,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"gyH" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"gyO" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/cytology{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/item/storage/box/swab{
+ pixel_y = 7;
+ pixel_x = 7
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"gyR" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/main)
+"gyY" = (
+/obj/machinery/vending/wardrobe/viro_wardrobe,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"gzz" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/obj/machinery/computer/monitor{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"gzH" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"gzI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"gzJ" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/box,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"gzV" = (
+/obj/structure/mineral_door/paperframe{
+ name = "Meditation Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"gzY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"gAk" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light/directional/east,
+/obj/item/extinguisher,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/gateway)
+"gAn" = (
+/obj/machinery/door/firedoor/border_only,
+/turf/open/openspace,
+/area/station/security/prison)
+"gAt" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gAu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"gAz" = (
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"gAB" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"gAD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"gAM" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/obj/structure/sign/warning/cold_temp/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"gAR" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/station/security/prison)
+"gAV" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/stairs/south,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/security/prison)
+"gAZ" = (
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gBb" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 3";
+ req_access = list("xenobiology")
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "Xenobio Pen 3 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"gBc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"gBe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gBv" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "Engineering Delivery";
+ req_access = list("engineering")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/textured_large,
+/area/station/engineering/storage)
+"gBx" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gBJ" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
},
/obj/machinery/duct,
+<<<<<<< HEAD
/obj/machinery/light/directional/north,
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
@@ -56146,6 +77803,35083 @@
/obj/machinery/duct,
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"gBX" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/prison/work)
+"gCd" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"gCh" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"gCn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"gCo" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"gCq" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"gCs" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/sign/poster/contraband/missing_gloves/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"gCu" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gCK" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"gCV" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"gCY" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Engineering External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "Engineering-External"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"gDe" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Prosecution"
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"gDh" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"gDp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"gDq" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gDv" = (
+/obj/structure/table,
+/obj/item/clothing/suit/apron/chef,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/processor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gDz" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/glass/bottle/amaretto{
+ pixel_x = -5;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/glass/bottle/fernet{
+ pixel_x = 7;
+ pixel_y = 16
+ },
+/obj/item/reagent_containers/cup/soda_cans/sol_dry,
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = 10
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gDE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Xenobiology Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gDN" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"gDS" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gDV" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"gDZ" = (
+/turf/open/floor/wood,
+/area/station/maintenance/port/fore)
+"gEd" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "MiniSat External SouthWest";
+ network = list("minisat");
+ start_active = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gEn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"gEq" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"gEr" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"gEy" = (
+/obj/structure/table,
+/obj/item/computer_disk/ordnance,
+/obj/item/computer_disk/ordnance{
+ pixel_y = 4;
+ pixel_x = -5
+ },
+/obj/item/computer_disk{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/aicard,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/command/heads_quarters/rd)
+"gEE" = (
+/turf/open/openspace,
+/area/station/service/chapel)
+"gER" = (
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"gET" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gEV" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"gFj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"gFH" = (
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gFI" = (
+/obj/machinery/telecomms/server/presets/security,
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"gFL" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"gFX" = (
+/turf/closed/wall,
+/area/icemoon/underground/explored)
+"gGf" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"gGj" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"gGs" = (
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"gGt" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"gGx" = (
+/obj/machinery/dna_scannernew,
+/obj/machinery/camera/directional/west{
+ c_tag = "Research Division Genetics Lab";
+ network = list("ss13","rd")
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"gGE" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/shoes/winterboots,
+/obj/machinery/firealarm/directional/south,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/white,
+/area/station/hallway/secondary/exit/departure_lounge)
+"gGF" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gGH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/light_construct/directional/west,
+/turf/open/floor/plating,
+/area/station/construction)
+"gGI" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Storage";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"gGZ" = (
+/obj/machinery/computer/bank_machine,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"gHe" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gHg" = (
+/obj/machinery/mineral/processing_unit_console,
+/turf/closed/wall,
+/area/mine/laborcamp)
+"gHl" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gHq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"gHA" = (
+/mob/living/simple_animal/hostile/asteroid/polarbear{
+ move_force = 999;
+ name = "Louie"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gHD" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"gHF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/red/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"gHN" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gHP" = (
+/obj/machinery/space_heater/improvised_chem_heater,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"gHS" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"gHY" = (
+/obj/effect/landmark/start/scientist,
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"gIh" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gIs" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/machinery/light/warm/directional/east,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"gIt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"gIu" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/mine/mechbay)
+"gIF" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"gII" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"gIJ" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"gIL" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Secure Walkway"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"gIN" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"gIY" = (
+/turf/closed/wall,
+/area/station/medical/medbay/central)
+"gJs" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"gJz" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/commons/storage/art)
+"gJC" = (
+/obj/structure/chair/stool/directional/east,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"gJD" = (
+/obj/item/reagent_containers/cup/soda_cans/beer{
+ pixel_x = -7;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gJK" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"gJN" = (
+/obj/machinery/rnd/production/circuit_imprinter,
+/obj/machinery/requests_console/directional/east{
+ department = "Engineering";
+ name = "Engineering Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"gJT" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/command/heads_quarters/rd)
+"gJX" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gKd" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Cargo Warehouse External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "cargo-warehouse-external"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"gKl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Secondary Storage"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"gKn" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"gKE" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"gKG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"gKQ" = (
+/turf/closed/wall,
+/area/station/security/courtroom)
+"gKU" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door";
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/bridge)
+"gLj" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"gLk" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gLn" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/structure/railing/corner/end{
+ dir = 1
+ },
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"gLu" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"gLF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"gLN" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"gLU" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Public Mining Storage";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"gLX" = (
+/obj/structure/railing/wooden_fence{
+ dir = 9
+ },
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"gLY" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/theater,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"gLZ" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/open/floor/wood,
+/area/station/maintenance/port/fore)
+"gMd" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"gMl" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/stock_parts/power_store/cell/high,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"gMq" = (
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/west,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"gMt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"gMK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gMM" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gMZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gNg" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "MiniSat External South";
+ network = list("minisat");
+ start_active = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gNi" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/dropper,
+/turf/open/floor/iron/cafeteria,
+/area/station/science/lab)
+"gNC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/command/gateway)
+"gNH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"gNL" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"gNP" = (
+/obj/machinery/oven/range,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"gNT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gOa" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/box/red/corners{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"gOb" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "cmoprivacy";
+ name = "CMO Office"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/cmo)
+"gOg" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "MiniSat Atmospherics";
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"gOi" = (
+/obj/structure/rack,
+/obj/item/clothing/glasses/sunglasses/big{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/clothing/glasses/sunglasses/big{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/taperecorder,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"gOx" = (
+/obj/effect/turf_decal/loading_area,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"gOy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gOA" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"gOI" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/openspace,
+/area/station/cargo/storage)
+"gOS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"gOU" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/mine/production)
+"gOY" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"gPn" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/ai_monitored/security/armory/upper)
+"gPp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"gPC" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/openspace,
+/area/station/science/ordnance/office)
+"gPR" = (
+/obj/effect/turf_decal/trimline/green/filled/warning,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gPY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"gQe" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"gQp" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"gQq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"gQw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"gQD" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/red{
+ dir = 8
+ },
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"gQE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"gQI" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm4";
+ name = "Dorm 4"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"gQO" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel Office"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination{
+ location = "Chapel Office"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"gRg" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/sign/warning/gas_mask/directional/north{
+ desc = "A sign that warns of dangerous gasses in the air, instructing you to wear internals."
+ },
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"gRm" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"gRp" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"gRs" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"gRt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"gRA" = (
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/test_chamber/directional/east{
+ name = "Xenobio Monitor"
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"gRI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"gRZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"gSd" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gSl" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/closet/secure_closet/medical1,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gSq" = (
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/machinery/button/door/directional/north{
+ id = "rnd";
+ name = "Shutters Control Button";
+ req_access = list("research");
+ dir = 2
+ },
+/obj/machinery/light_switch/directional/north{
+ pixel_y = 35
+ },
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"gSr" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/utility/radiation,
+/obj/item/clothing/head/utility/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/geiger_counter,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"gSy" = (
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"gSE" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gSN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/table,
+/obj/item/circuitboard/aicore,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/smooth,
+/area/station/command/heads_quarters/rd)
+"gSO" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"gSV" = (
+/obj/machinery/light/directional/south,
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/chapel/office)
+"gTa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/chair/stool/bar/directional/north,
+/obj/structure/cable,
+/turf/open/floor/eighties,
+/area/station/commons/lounge)
+"gTi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gTq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"gTr" = (
+/obj/structure/cable,
+/obj/structure/holosign/barrier/atmos/sturdy,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "minecraft_shutter";
+ name = "Cart Shutters"
+ },
+/obj/structure/minecart_rail{
+ dir = 1
+ },
+/turf/open/floor/iron/textured,
+/area/station/service/kitchen/coldroom)
+"gTw" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/security/prison)
+"gTK" = (
+/turf/closed/wall,
+/area/station/engineering/engine_smes)
+"gTW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"gUa" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gUg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"gUp" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"gUr" = (
+/obj/item/trash/sosjerky,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gUs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/security/processing)
+"gUv" = (
+/obj/machinery/holopad,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"gUx" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"gUQ" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"gUY" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gVe" = (
+/obj/structure/table,
+/obj/effect/spawner/random/trash/food_packaging,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"gVm" = (
+/obj/item/coin/silver{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/obj/item/toy/plush/moth{
+ name = "Marcellus";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"gVt" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"gVx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"gVB" = (
+/obj/structure/chair/stool/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"gVD" = (
+/obj/structure/closet/firecloset,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"gVN" = (
+/obj/structure/flora/grass/green/style_random,
+/obj/structure/sign/warning/directional/north,
+/obj/machinery/light/small/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"gVO" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"gVP" = (
+/obj/item/wrench,
+/obj/item/screwdriver,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/commissary)
+"gVS" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"gVV" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/curtain/cloth/fancy/mechanical/start_closed{
+ id = "cantena_curtains"
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"gWf" = (
+/obj/item/storage/box/lights/mixed,
+/obj/structure/table,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/medical/morgue)
+"gWh" = (
+/obj/structure/rack,
+/obj/machinery/light/small/dim/directional/north,
+/obj/structure/sign/departments/maint/alt/directional/north,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gWi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/freezer{
+ desc = "The freezer where the chef keeps all the stuff that needs to be kept cold. Ice cold.";
+ name = "The Ice Box"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/turf/open/floor/plating,
+/area/station/service/kitchen/coldroom)
+"gWn" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped{
+ dir = 4;
+ name = "Exfiltrate Filter"
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/warning{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"gWV" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"gWX" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"gXh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/evidence)
+"gXk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"gXm" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth_edge{
+ dir = 8
+ },
+/area/station/maintenance/department/medical/central)
+"gXp" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/station/service/library)
+"gXr" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"gXy" = (
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "gulag2";
+ name = "Cell 2"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"gXJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"gXN" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"gYa" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"gYd" = (
+/obj/structure/stairs/north,
+/turf/open/floor/iron/stairs/medium,
+/area/station/cargo/storage)
+"gYg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"gYi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced,
+/turf/open/floor/plating,
+/area/mine/living_quarters)
+"gYm" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "riot";
+ name = "Security Shutters"
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/fore)
+"gYp" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gYq" = (
+/obj/item/toy/snowball{
+ pixel_y = -7;
+ pixel_x = 5
+ },
+/turf/open/misc/asteroid/snow/coldroom,
+/area/station/service/kitchen/coldroom)
+"gYt" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Research Division Delivery";
+ req_access = list("research")
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"gYv" = (
+/obj/machinery/newscaster/directional/north,
+/obj/structure/table/wood,
+/obj/machinery/light/small/directional/north,
+/obj/item/toy/figure/mime{
+ pixel_x = -6
+ },
+/obj/item/toy/figure/clown{
+ pixel_x = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"gYz" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 12
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"gYG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gYT" = (
+/obj/machinery/light/cold/directional/east,
+/obj/machinery/status_display/ai/directional/east,
+/obj/structure/railing,
+/obj/structure/lattice/catwalk,
+/turf/open/openspace,
+/area/station/service/kitchen/coldroom)
+"gZb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"gZc" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"gZq" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"gZt" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"gZP" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/security{
+ name = "Recreation Block"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/prison)
+"gZT" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 9
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics - HFR North"
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"hac" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"haf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Gas to Cooling Loop"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"han" = (
+/obj/structure/table,
+/obj/item/plate,
+/obj/item/kitchen/fork,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"hap" = (
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"hay" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"haC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"haD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"haG" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/chair,
+/obj/effect/landmark/start/bitrunner,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"haJ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"hbt" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/clothing/mafia_outfit,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/bureaucracy/briefcase{
+ pixel_y = 8
+ },
+/obj/item/toy/gun,
+/obj/effect/spawner/random/entertainment/money_small,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/spawner/random/trash/box,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"hby" = (
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"hbI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"hbR" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"hbY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"hce" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet3";
+ name = "Unit 3"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"hcg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hcs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"hcw" = (
+/obj/docking_port/stationary/random/icemoon{
+ dir = 8;
+ name = "lavaland";
+ shuttle_id = "pod_2_lavaland"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hcG" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"hcL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"hcT" = (
+/obj/structure/closet/crate/internals,
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Cargo Bay B-1"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hcZ" = (
+/obj/structure/railing/wooden_fence,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"hdb" = (
+/obj/machinery/shower/directional/south,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"hdh" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hdj" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"hdn" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"hdp" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/mine/living_quarters)
+"hdw" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hdH" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"hdV" = (
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 3
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"heg" = (
+/obj/effect/spawner/random/engineering/canister,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hex" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining Mech Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "mining-mechbay-external"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"heE" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 9
+ },
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"heX" = (
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"hfc" = (
+/obj/structure/lattice/catwalk,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"hfd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"hff" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/service/library)
+"hfg" = (
+/obj/structure/reagent_dispensers/plumbed{
+ name = "service reservoir"
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/turf_decal/delivery/white{
+ color = "#307db9"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron/textured,
+/area/station/maintenance/starboard/fore)
+"hfs" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/spawner/random/entertainment/musical_instrument,
+/obj/item/instrument/harmonica,
+/turf/open/floor/iron/grimy,
+/area/station/commons/lounge)
+"hfv" = (
+/obj/machinery/processor{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"hfy" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/turretid{
+ name = "AI Chamber turret control";
+ pixel_x = 5;
+ pixel_y = -24
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"hfA" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"hfI" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"hfL" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/closet/l3closet/scientist,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hgc" = (
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"hgh" = (
+/turf/closed/wall,
+/area/station/medical/medbay/lobby)
+"hgr" = (
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/secondary/entry)
+"hgK" = (
+/obj/structure/ladder,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/maintenance/department/medical/central)
+"hgM" = (
+/turf/closed/wall,
+/area/station/security/execution/transfer)
+"hgY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"hhr" = (
+/obj/structure/weightmachine/weightlifter,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"hht" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/checker,
+/area/station/engineering/atmos)
+"hhu" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/camera/directional/south{
+ c_tag = "Ordnance Lower Mix Lab";
+ network = list("ss13","rd")
+ },
+/obj/structure/sign/warning/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"hhz" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/chapel/office)
+"hhO" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "kitchencounter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/structure/displaycase/forsale/kitchen,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"hhP" = (
+/obj/machinery/newscaster/directional/south,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/lab)
+"hhT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"hil" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hir" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/reagent_dispensers/plumbed{
+ name = "dormitory reservoir"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/turf_decal/delivery/white{
+ color = "#307db9"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron/textured,
+/area/station/maintenance/fore)
+"hjc" = (
+/obj/structure/closet/emcloset,
+/obj/item/pickaxe,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hjh" = (
+/obj/machinery/computer/records/security{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hjl" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/wood/large,
+/area/station/service/bar)
+"hjp" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/camera/directional/south{
+ c_tag = "Research Division Testing Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+"hjt" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hjv" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/hydroponics/garden)
+"hjz" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"hjA" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hjE" = (
+/turf/closed/wall/r_wall,
+/area/station/science/explab)
+"hjH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hjI" = (
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hjJ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hjM" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/medical/morgue)
+"hjQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"hjR" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/project)
+"hjV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "viroview"
+ },
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"hjX" = (
+/obj/machinery/requests_console/directional/north{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/red/anticorner,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured_corner{
+ dir = 1
+ },
+/area/station/security/office)
+"hkd" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"hkp" = (
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"hkt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hku" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/thinplating_new/light{
+ dir = 10
+ },
+/obj/machinery/barsign/directional/north,
+/turf/open/floor/wood/large,
+/area/station/hallway/primary/starboard)
+"hkI" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"hkQ" = (
+/obj/structure/table/optable,
+/obj/effect/decal/cleanable/xenoblood,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"hkS" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/structure/closet/secure_closet/cytology,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"hkU" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"hkY" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_edge{
+ dir = 1
+ },
+/area/station/security/lockers)
+"hll" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"hlp" = (
+/obj/structure/chair/stool/directional/south{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"hlv" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/delivery,
+/obj/item/bikehorn/rubberducky,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"hlE" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"hmb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"hme" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/station/security/prison)
+"hmt" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/right/directional/north{
+ name = "Security Checkpoint";
+ req_access = list("security")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/paper,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs/auxiliary)
+"hmx" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay Lobby";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"hmE" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/departments/medbay/alt/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"hmF" = (
+/obj/effect/spawner/random/entertainment/arcade,
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/eighties,
+/area/station/commons/lounge)
+"hmX" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 8;
+ name = "Supply multi deck pipe adapter"
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"hmZ" = (
+/obj/structure/sink/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/mirror/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"hnd" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"hnt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"hnC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"hnN" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Pens Observation - Port Aft";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"hnP" = (
+/obj/machinery/photocopier,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"hnV" = (
+/obj/structure/table/glass,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/screwdriver{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hoa" = (
+/obj/structure/sink/directional/east,
+/obj/machinery/button/door/directional/west{
+ id = "xenobio2";
+ name = "Xenobio Pen 2 Blast Door";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"hos" = (
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hoz" = (
+/obj/structure/fence/corner{
+ dir = 6
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"hoD" = (
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"hoM" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/structure/closet/l3closet/virology,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hoT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"hoV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"hoZ" = (
+/obj/effect/spawner/random/entertainment/arcade{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"hpd" = (
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"hpe" = (
+/obj/structure/table/wood,
+/obj/machinery/camera/directional/east{
+ c_tag = "Captain's Office"
+ },
+/obj/item/storage/lockbox/medal{
+ pixel_y = 8
+ },
+/obj/item/pinpointer/nuke{
+ pixel_y = -9
+ },
+/obj/item/disk/nuclear{
+ pixel_y = -8
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"hph" = (
+/obj/structure/reagent_dispensers/plumbed{
+ dir = 1;
+ name = "hydroponics reservoir"
+ },
+/obj/effect/turf_decal/delivery/white{
+ color = "#307db9"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/maintenance/starboard/lesser)
+"hpl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"hpm" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Starboard Primary Hallway East"
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/station/hallway/primary/starboard)
+"hpp" = (
+/obj/structure/sign/departments/chemistry/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hpr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hpx" = (
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"hpB" = (
+/obj/machinery/vending/coffee,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"hpC" = (
+/obj/machinery/requests_console/directional/north{
+ department = "Robotics";
+ name = "Robotics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/rnd/production/circuit_imprinter/department/science,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"hpE" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"hpF" = (
+/obj/structure/table,
+/obj/machinery/door/poddoor/shutters{
+ id = "visitation";
+ name = "Visitation Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/right/directional/north,
+/obj/machinery/door/window/right/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"hpI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"hpM" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Drone Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/iron/smooth,
+/area/station/cargo/drone_bay)
+"hpR" = (
+/obj/effect/spawner/random/entertainment/arcade{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"hpU" = (
+/obj/structure/chair/plastic{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"hpY" = (
+/obj/structure/closet/radiation,
+/obj/machinery/light/directional/north,
+/obj/machinery/requests_console/directional/north{
+ department = "Genetics";
+ name = "Genetics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"hqi" = (
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Security Delivery";
+ req_access = list("brig")
+ },
+/turf/open/floor/plating,
+/area/station/security/processing)
+"hqm" = (
+/obj/structure/table,
+/obj/item/storage/crayons,
+/obj/item/storage/crayons,
+/obj/item/chisel{
+ pixel_y = 7
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/commons/storage/art)
+"hqv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/cigarette{
+ pixel_x = 6;
+ pixel_y = 12
+ },
+/turf/open/floor/iron,
+/area/mine/eva)
+"hqx" = (
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"hqA" = (
+/obj/structure/table,
+/obj/item/crowbar/large,
+/obj/item/storage/box/lights/mixed,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hqE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hqH" = (
+/obj/machinery/door/airlock/research{
+ name = "Cytology Lab"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/ordnance)
+"hrh" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"hro" = (
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"hrJ" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"hrO" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Security Checkpoint"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigoutpost"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"hrS" = (
+/obj/item/trash/raisins,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hrY" = (
+/obj/structure/stairs/west,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"hrZ" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hsh" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"hsn" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"hso" = (
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/turf_decal/weather/snow,
+/turf/open/floor/plating/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hsr" = (
+/obj/structure/table/wood,
+/obj/item/newspaper,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"hsx" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"hsy" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"hsB" = (
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"hsN" = (
+/obj/structure/table,
+/obj/item/storage/box/firingpins,
+/obj/item/storage/box/firingpins,
+/obj/item/key/security,
+/obj/machinery/light/directional/east,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"hsQ" = (
+/obj/structure/tank_holder/oxygen,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"htd" = (
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hte" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"htg" = (
+/obj/structure/fireplace,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hth" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"htp" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "Xenobio Pen 2 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"htq" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"hts" = (
+/obj/structure/table/wood,
+/obj/item/wallframe/camera{
+ pixel_y = -2;
+ pixel_x = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hty" = (
+/obj/item/stack/rods,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"htB" = (
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"htH" = (
+/obj/structure/table/wood,
+/obj/machinery/fax{
+ fax_name = "Psychology Office";
+ name = "Psychology Office Fax Machine"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/machinery/camera/directional/east{
+ c_tag = "Medbay Psychology";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"htJ" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"htO" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/science,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"hue" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"hui" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"huj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"hul" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/vending/autodrobe/all_access,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"huq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"huB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/service/library)
+"huH" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sink/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"huI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"huJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/table,
+/obj/item/bodybag/environmental,
+/obj/item/bodybag/environmental,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/turf/open/floor/iron,
+/area/station/service/chapel)
+"huN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/trimline/purple/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"huS" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"huT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/status_display/ai/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"hvm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"hvt" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/surgery_tray/full/morgue,
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console/auto_name/directional/north,
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"hvQ" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"hvS" = (
+/obj/effect/landmark/start/depsec/engineering,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/engineering)
+"hvU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/brown{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"hwn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hwu" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "lawyer_blast";
+ name = "Privacy Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/service/lawoffice)
+"hwx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/construction)
+"hwC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"hwE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hwF" = (
+/obj/machinery/computer/cargo{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"hwR" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Equipment Room"
+ },
+/obj/structure/reagent_dispensers/wall/peppertank/directional/west,
+/turf/open/floor/glass/reinforced,
+/area/station/security/lockers)
+"hwW" = (
+/obj/machinery/light_switch/directional/south{
+ pixel_x = -9
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"hwZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"hxa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hxe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos)
+"hxs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/computer/records/medical{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"hxE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"hxJ" = (
+/obj/structure/fence/corner{
+ dir = 10
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"hyc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/aft)
+"hyd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"hye" = (
+/obj/structure/table/wood,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/box/white/corners,
+/obj/item/storage/fancy/cigarettes/cigars{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+"hyj" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/station/maintenance/disposal)
+"hyC" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"hyV" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/testlab)
+"hyY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hzb" = (
+/obj/structure/sign/xenobio_guide/directional/north,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"hzz" = (
+/obj/structure/table/glass,
+/obj/item/clothing/gloves/latex,
+/obj/item/healthanalyzer,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/science,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hzB" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"hzG" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_x = -6;
+ pixel_y = 14
+ },
+/obj/machinery/button/door/directional/north{
+ id = "Secure Gate";
+ name = "Cell Shutters";
+ req_access = list("brig");
+ pixel_x = 6
+ },
+/obj/machinery/button/door/directional/north{
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ req_access = list("brig");
+ pixel_y = 35;
+ pixel_x = 6
+ },
+/obj/machinery/button/door/directional/north{
+ id = "briggate";
+ name = "Front Gate Shutters";
+ req_access = list("brig");
+ pixel_y = 12;
+ pixel_x = 6
+ },
+/obj/machinery/button/door/directional/north{
+ id = "BrigLock";
+ name = "Brig Lockdown";
+ req_access = list("brig");
+ pixel_y = 0;
+ pixel_x = 6
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"hzH" = (
+/obj/machinery/camera/motion/directional/west{
+ c_tag = "MiniSat Core Hallway";
+ network = list("aicore")
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"hzJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"hzL" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/closet/wardrobe/white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hzN" = (
+/obj/machinery/camera/motion/directional/south{
+ c_tag = "Armory - Internal - Upper"
+ },
+/turf/open/openspace,
+/area/station/ai_monitored/security/armory/upper)
+"hzU" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hzV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"hzY" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "Security Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig/entrance)
+"hAl" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"hAm" = (
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/research)
+"hAE" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"hAG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"hAM" = (
+/obj/structure/fence/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hAO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"hAQ" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"hAT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"hAU" = (
+/obj/machinery/light_switch/directional/west,
+/obj/structure/closet{
+ name = "janitorial supplies"
+ },
+/obj/item/pushbroom,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"hBd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hBf" = (
+/obj/structure/fence/door{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hBg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"hBr" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/brig/entrance)
+"hBv" = (
+/obj/structure/kitchenspike,
+/obj/item/stack/sheet/leather,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"hBB" = (
+/obj/effect/spawner/random/structure/girder,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"hBE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics Incinerator"
+ },
+/obj/machinery/atmospherics/components/tank/plasma,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"hBF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"hBG" = (
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"hBZ" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/command,
+/obj/item/paper/fluff/jobs/engineering/frequencies,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"hCa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hCn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/eva)
+"hCv" = (
+/obj/structure/table,
+/obj/item/storage/bag/tray,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"hCC" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hCV" = (
+/obj/structure/table/wood,
+/obj/item/hand_tele{
+ pixel_y = 11
+ },
+/obj/item/melee/chainofcommand,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"hCY" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/folder/white{
+ pixel_x = -3;
+ pixel_y = 12
+ },
+/obj/structure/sign/poster/contraband/random/directional/south,
+/obj/item/folder/blue{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/folder/red{
+ pixel_x = 5;
+ pixel_y = 2
+ },
+/obj/item/folder,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"hDb" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hDc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/maintenance/port/fore)
+"hDe" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/button/door/directional/north{
+ id = "Lakeview_Bathroom";
+ req_access = list("robotics")
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/freezer,
+/area/mine/eva/lower)
+"hDf" = (
+/obj/structure/cable,
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"hDh" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"hDp" = (
+/turf/open/floor/engine,
+/area/station/science/genetics)
+"hDq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"hDv" = (
+/obj/machinery/shower/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"hDA" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"hDG" = (
+/obj/docking_port/stationary/random/icemoon{
+ dir = 4;
+ name = "lavaland";
+ shuttle_id = "pod_4_lavaland"
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hDK" = (
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"hDL" = (
+/obj/item/kirbyplants/random/dead,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hDU" = (
+/turf/closed/wall/r_wall,
+/area/station/command/gateway)
+"hDV" = (
+/obj/structure/plasticflaps,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"hEm" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"hED" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/broken/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"hEG" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/warden)
+"hEI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hEP" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -4
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hEW" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hEZ" = (
+/obj/structure/ladder,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hFb" = (
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"hFg" = (
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hFi" = (
+/obj/structure/frame/machine,
+/turf/open/floor/plating,
+/area/station/construction)
+"hFm" = (
+/obj/effect/spawner/random/structure/chair_flipped{
+ dir = 8
+ },
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hFr" = (
+/obj/structure/flora/grass/both/style_2,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hFw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"hFC" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/rack,
+/obj/item/storage/crayons,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"hFD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"hFJ" = (
+/obj/machinery/computer/station_alert,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/computer/security/telescreen/engine/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"hFL" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"hFR" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hFW" = (
+/obj/machinery/vending/wardrobe/det_wardrobe,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"hGh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"hGs" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"hGH" = (
+/turf/closed/wall,
+/area/station/security/lockers)
+"hGZ" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/healthanalyzer,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"hHb" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"hHg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hHl" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/status_display/shuttle{
+ pixel_x = -32;
+ shuttle_id = "arrival"
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"hHp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"hHq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"hHu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hHz" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"hHD" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Construction Area"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/construction)
+"hHG" = (
+/turf/open/cliff/snowrock,
+/area/icemoon/surface/outdoors/nospawn)
+"hHI" = (
+/obj/machinery/chem_dispenser,
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"hHN" = (
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hHV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{
+ dir = 1
+ },
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"hIj" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Port Hallway East"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"hIv" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hIA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"hIH" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hIN" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"hIO" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "Privacy Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hos)
+"hIU" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"hIW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/calendar/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"hJe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"hJi" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 6";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"hJo" = (
+/obj/structure/table,
+/obj/item/plate,
+/obj/item/food/piedough,
+/obj/effect/spawner/random/food_or_drink/cake_ingredients,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"hJp" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"hJx" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hJD" = (
+/obj/structure/ladder,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"hJE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hJG" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hJH" = (
+/turf/open/openspace,
+/area/station/science/research)
+"hJY" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"hKr" = (
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/infections{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/surgery{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/medicine{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/book/manual/wiki/chemistry{
+ pixel_x = 5
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"hKu" = (
+/obj/structure/sign/poster/official/cleanliness/directional/east,
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"hKI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"hKJ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"hKV" = (
+/obj/structure/chair,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hKY" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ location = "Medbay"
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/plasticflaps/opaque,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/medical/central)
+"hLf" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"hLk" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/west{
+ c_tag = "Labor Camp Cell 2";
+ network = list("labor")
+ },
+/obj/machinery/flasher/directional/west{
+ id = "GulagCell 2"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"hLw" = (
+/obj/structure/flora/grass/both/style_3,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hLS" = (
+/obj/machinery/computer/atmos_control/nitrous_tank{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/engineering/atmos)
+"hLW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"hLX" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hLY" = (
+/obj/structure/cable,
+/obj/structure/chair,
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hLZ" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"hMc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"hMg" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"hMr" = (
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"hMv" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"hMw" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hMz" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"hMA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/dim/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"hMB" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/servo,
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/lab)
+"hMH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/filled/end{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"hMJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"hMM" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hMQ" = (
+/obj/structure/sign/warning/xeno_mining/directional/east,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hMS" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/red/filled/line,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"hMZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"hNg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"hNh" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/landmark/start/lawyer,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"hNn" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"hNp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"hNq" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/structure/railing,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hNx" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Holodeck - South";
+ name = "holodeck camera"
+ },
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/station/holodeck/rec_center)
+"hNz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/large,
+/area/station/hallway/primary/port)
+"hNI" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"hNJ" = (
+/obj/machinery/power/solar_control{
+ id = "auxsolareast";
+ name = "Port Bow Solar Control"
+ },
+/obj/structure/cable,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"hNM" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"hNU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hOc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Door"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"hOk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/vending/wardrobe/chem_wardrobe,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/medical/chemistry)
+"hOo" = (
+/obj/machinery/mechpad,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"hOt" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hOu" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hOG" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"hOU" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Pens - Port Fore";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"hOX" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics - North West"
+ },
+/obj/machinery/light/directional/west,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hOY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/circuit,
+/area/station/science/robotics/mechbay)
+"hPe" = (
+/obj/structure/cable/multilayer/connected,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"hPf" = (
+/obj/structure/safe/vault,
+/obj/item/clothing/head/costume/bearpelt,
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass,
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass,
+/obj/item/gun/ballistic/revolver/russian,
+/obj/item/ammo_box/a357,
+/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka,
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"hPk" = (
+/obj/machinery/door/airlock/security{
+ name = "Permabrig Chapel"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"hPs" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/work)
+"hPv" = (
+/obj/structure/fence/corner{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hPz" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"hPD" = (
+/obj/structure/bodycontainer/morgue/beeper_off{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/medical/morgue)
+"hPK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/brown,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"hPO" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"hPT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"hPX" = (
+/obj/structure/frame/computer,
+/obj/structure/sign/poster/official/help_others/directional/north,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"hQc" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hQd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"hQi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"hQt" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/brig)
+"hQu" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hQv" = (
+/obj/item/kirbyplants/random/dead,
+/obj/machinery/light/small/broken/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hQK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/table,
+/obj/item/trash/candle{
+ pixel_y = 12
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hQP" = (
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red/half,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"hQQ" = (
+/obj/docking_port/stationary/escape_pod{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hQW" = (
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hRt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"hRw" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"hRA" = (
+/turf/closed/wall,
+/area/station/medical/psychology)
+"hRC" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Test Chamber";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hRD" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/computer/mechpad{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"hRE" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"hRG" = (
+/obj/machinery/shower/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/door/window/left/directional/north{
+ name = "Shower Cubicle"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/maintenance/starboard/fore)
+"hRH" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hRQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Xenobiology Pens Hall - Fore";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"hRX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"hSe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/railing/corner,
+/turf/open/floor/iron,
+/area/mine/eva)
+"hSl" = (
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark/smooth_corner,
+/area/station/ai_monitored/command/storage/eva)
+"hSq" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/bar/atrium)
+"hSt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"hSF" = (
+/obj/machinery/atmospherics/components/tank/air{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"hSJ" = (
+/obj/structure/chair/comfy{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"hSZ" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"hTk" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Supply Door Airlock";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"hTm" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hTq" = (
+/obj/structure/cable,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"hTu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-med-passthrough"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Research Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/turf_decal/tile/purple/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/maintenance/aft/greater)
+"hTw" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"hTx" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay Stasis Center South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hTB" = (
+/obj/structure/table,
+/obj/item/clothing/suit/jacket/leather{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/shoes/jackboots{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"hTI" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating/icemoon,
+/area/station/maintenance/port/lesser)
+"hTJ" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Solar Maintenance - North West Access"
+ },
+/obj/machinery/light/small/dim/directional/north,
+/obj/effect/spawner/random/engineering/tank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hTY" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/sign/clock/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hUe" = (
+/obj/effect/landmark/start/hangover,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"hUi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"hUx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hUy" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"hUz" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/prison)
+"hUD" = (
+/turf/closed/wall,
+/area/station/service/library)
+"hUI" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hUK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"hUV" = (
+/obj/item/radio/intercom/directional/north,
+/obj/structure/closet/crate,
+/obj/item/crowbar,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"hVc" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/machinery/digital_clock/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hVf" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/food_packaging,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"hVo" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hVq" = (
+/obj/effect/turf_decal/stripes/asteroid/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/dark{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/mine/living_quarters)
+"hVu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"hVz" = (
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hVB" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"hVI" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"hVR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hVX" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"hVY" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/prison/garden)
+"hWd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"hWi" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"hWl" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"hWt" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/dropper{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hWz" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Ordnance Lower Mix Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"hWD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"hWI" = (
+/obj/effect/turf_decal/box,
+/obj/effect/spawner/random/structure/closet_empty/crate/with_loot,
+/obj/effect/spawner/random/maintenance/six,
+/obj/structure/sign/poster/official/wtf_is_co2/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/starboard/aft)
+"hWR" = (
+/obj/structure/table/wood,
+/obj/item/paper/crumpled,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hWV" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/space_heater,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"hXC" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/east,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hXU" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"hYb" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination/disposals,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"hYy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/kirbyplants/random,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"hYD" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hYE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"hYG" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/plasticflaps{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"hYL" = (
+/obj/structure/closet/lasertag/blue,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"hYM" = (
+/obj/structure/lattice,
+/obj/structure/sign/poster/official/help_others/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"hYP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"hZb" = (
+/obj/structure/curtain/cloth/fancy/mechanical/start_closed{
+ id = "cantena_curtains"
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"hZc" = (
+/obj/effect/landmark/start/clown,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"hZe" = (
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/warning,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"hZf" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Bridge East Access"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hZo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/storage/box,
+/obj/effect/spawner/random/bureaucracy/birthday_wrap,
+/obj/effect/spawner/random/bureaucracy/birthday_wrap,
+/obj/machinery/light/small/directional/west,
+/obj/structure/sign/departments/maint/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"hZu" = (
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/obj/structure/flora/grass/both/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hZJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 4;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/structure/sign/poster/official/safety_eye_protection/directional/north,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"hZN" = (
+/obj/structure/sign/warning/secure_area/directional/west,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"hZQ" = (
+/obj/item/stack/sheet/iron/five,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hZT" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hZW" = (
+/obj/structure/sink/kitchen/directional/south,
+/obj/effect/turf_decal/siding/thinplating/dark/corner,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"iag" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"iam" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"iar" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio10";
+ name = "Xenobio Pen 10 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"iav" = (
+/obj/structure/closet/secure_closet/labor_camp_security,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"iay" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"iaB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/structure/sign/departments/botany/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"iaF" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"iaT" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iaU" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Emergency EVA Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/eva,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"iaV" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"iaY" = (
+/obj/machinery/door/airlock/command{
+ name = "MiniSat Access"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"iba" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"ibj" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ibk" = (
+/obj/structure/railing,
+/obj/structure/table,
+/obj/item/radio/off{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/obj/item/radio/off{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/item/radio/off{
+ pixel_y = 5
+ },
+/obj/item/radio/off{
+ pixel_y = 5
+ },
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"ibm" = (
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"ibw" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ibz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table/wood,
+/obj/effect/spawner/random/entertainment/gambling,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"ibJ" = (
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/computer/slot_machine{
+ name = "two-armed bandit"
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"ibM" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "lower_chapel_shutters";
+ name = "Graveyard Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"ich" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/station/hallway/secondary/entry)
+"ici" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ick" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"icu" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/mine/living_quarters)
+"icA" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/left/directional/east{
+ req_access = list("brig_entrance")
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "medsecprivacy";
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/medical)
+"icB" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"icE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"icF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Incinerator Output Pump";
+ target_pressure = 4500
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"icI" = (
+/obj/structure/table,
+/obj/item/retractor,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"icK" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/railing,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/xenobiology)
+"icQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"icS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"icU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"icV" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"icY" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Garden Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/service/hydroponics/garden)
+"idi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "Skynet_launch";
+ name = "Mech Bay"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"idj" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/depsec/science,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"idm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"idt" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"idv" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"idI" = (
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"idN" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ req_access = list("brig")
+ },
+/obj/effect/mapping_helpers/trapdoor_placer,
+/turf/open/floor/glass/reinforced,
+/area/station/security/courtroom)
+"idO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"idP" = (
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"idU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "Morgue";
+ dir = 4
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/morgue,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"iem" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/stairs/north,
+/turf/open/floor/iron/stairs/medium,
+/area/station/cargo/storage)
+"ieG" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ieJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ifa" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"ife" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"ifX" = (
+/obj/machinery/vending/wardrobe/cargo_wardrobe,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ifY" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/engineering/atmos)
+"ifZ" = (
+/obj/machinery/shower/directional/south,
+/obj/item/soap/nanotrasen,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"igd" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"igm" = (
+/turf/closed/wall/ice,
+/area/mine/living_quarters)
+"ign" = (
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"igt" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/plaques/kiddie/library{
+ pixel_x = 32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"igw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/sign/warning/radiation/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"igx" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"igB" = (
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/glass,
+/area/station/security/lockers)
+"igG" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"igL" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/mine/storage)
+"igM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"igQ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/central)
+"igX" = (
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ihb" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"ihc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/wood/large,
+/area/station/commons/vacant_room/office)
+"ihk" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ihu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"ihx" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Armory"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"ihB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"iih" = (
+/obj/effect/spawner/xmastree,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"iin" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"iio" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"iis" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"iiy" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Cargo Bay Office - Access"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"iiB" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"iiE" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/structure/displaycase/forsale/kitchen{
+ pixel_y = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"iiH" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig Walkway"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigoutpost"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/brig/entrance)
+"iiR" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"iiT" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"ijb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"ijd" = (
+/obj/structure/table/wood/poker,
+/obj/item/trash/candle{
+ pixel_y = 3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ijj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"ijn" = (
+/obj/structure/cable,
+/obj/item/reagent_containers/cup/glass/bottle/hooch,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/mapping_helpers/apc/cell_5k,
+/turf/open/floor/plating,
+/area/mine/storage)
+"ijp" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 9
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"ijv" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/medical/morgue)
+"ijC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"ijK" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "O2 to Airmix"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ijT" = (
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"ijU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"ijV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"ijY" = (
+/obj/structure/flora/rock/icy/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ijZ" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"ikb" = (
+/obj/item/door_seal,
+/obj/item/door_seal,
+/obj/item/door_seal,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"ikd" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/stripes/asteroid/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ikk" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/mail_sorting/security/detectives_office,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"ikm" = (
+/obj/structure/chair/office,
+/obj/machinery/camera/directional/north{
+ c_tag = "Library North"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/turf/open/floor/wood,
+/area/station/service/library)
+"ikz" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ikB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/central)
+"ikC" = (
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ikI" = (
+/obj/item/gun/energy/laser/carbine/practice{
+ pixel_y = 5
+ },
+/obj/item/gun/energy/laser/practice,
+/obj/item/gun/energy/laser/practice{
+ pixel_y = -5
+ },
+/obj/structure/rack,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"ikL" = (
+/obj/machinery/status_display/ai/directional/west,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"ikO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "qmprivacy";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/qm)
+"ikW" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/service/chapel)
+"iln" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"ilq" = (
+/obj/machinery/vending/games,
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"ilv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ily" = (
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"ilz" = (
+/obj/machinery/computer/exoscanner_control{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/cargo/drone_bay)
+"ilD" = (
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon/keep_below,
+/area/station/maintenance/port/lesser)
+"ilJ" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"ilN" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"ilZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"imd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"imi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"imH" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/gloves,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"imJ" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"imO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/sign/poster/official/fruit_bowl/directional/east,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/commons/storage/art)
+"ini" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"inn" = (
+/obj/structure/cable,
+/turf/open/floor/iron/stairs/left{
+ dir = 4
+ },
+/area/station/engineering/lobby)
+"inE" = (
+/turf/open/floor/iron/corner,
+/area/station/engineering/lobby)
+"inJ" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"inQ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/carbon{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/newspaper{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"iog" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/storage/medkit/emergency{
+ pixel_y = 5
+ },
+/obj/item/radio/off,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"iol" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "MiniSat Teleporter";
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"ior" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/light/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"iov" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm6";
+ name = "Cabin 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"iox" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/closet/crate/bin,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"ioz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"ioE" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/lobby)
+"ioK" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"ioO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/trimline/red/filled/warning{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "Atmospherics HFR Shutters"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"ioQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ipd" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Labor Camp Showers";
+ network = list("labor")
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"ipf" = (
+/turf/open/genturf,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"ipg" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"ipw" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"ipA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"ipE" = (
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"ipM" = (
+/obj/structure/transit_tube/curved{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"iqn" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/machinery/light/small/directional/south,
+/obj/item/toy/foamblade,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"iqu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"iqC" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"iqW" = (
+/obj/machinery/door/poddoor/massdriver_chapel{
+ dir = 4
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"irn" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"irp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/detective,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"iry" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"irA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"irD" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/cargo/storage)
+"irG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"irQ" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"isb" = (
+/obj/machinery/atmospherics/components/binary/pump/off{
+ dir = 1;
+ name = "Infiltrate to Exfiltrate"
+ },
+/obj/effect/turf_decal/loading_area{
+ color = "#439C1E";
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_red/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"isc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/mineral/labor_points_checker{
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"ise" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"isl" = (
+/obj/structure/fence/door{
+ name = "graveyard"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"isq" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"ist" = (
+/obj/structure/chair/sofa/left/brown,
+/obj/effect/landmark/start/psychologist,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet/blue,
+/area/station/medical/psychology)
+"isu" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/obj/machinery/air_sensor/incinerator_tank,
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"isz" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"isC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+"isP" = (
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"isU" = (
+/obj/structure/fluff/tram_rail,
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"isX" = (
+/obj/structure/closet/radiation,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"itf" = (
+/obj/effect/turf_decal/stripes/box,
+/obj/structure/ladder,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"itj" = (
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"itl" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"itt" = (
+/obj/machinery/door/window/brigdoor/right/directional/south{
+ name = "Research Director Observation";
+ req_access = list("rd")
+ },
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"itE" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"itN" = (
+/obj/item/toy/snowball{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"itY" = (
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"iub" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/engineering/lobby)
+"ium" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/eva)
+"iuq" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/cup/beaker,
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/dropper,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"iuu" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iuv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iuD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"iuH" = (
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"iuL" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"iuS" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/glass/reinforced,
+/area/station/ai_monitored/security/armory/upper)
+"ivi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"ivm" = (
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/closed/wall,
+/area/station/maintenance/port/aft)
+"ivo" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ivq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"ivw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"ivB" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ivF" = (
+/turf/closed/wall,
+/area/station/maintenance/disposal)
+"ivG" = (
+/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/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/crowbar,
+/obj/item/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"ivH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"iwf" = (
+/turf/closed/wall/r_wall,
+/area/mine/mechbay)
+"iwz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iwA" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"iwC" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/central/fore)
+"iwO" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"iwQ" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"iwS" = (
+/turf/closed/wall,
+/area/station/commons/dorms/laundry)
+"iwV" = (
+/obj/structure/railing,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ixa" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"ixb" = (
+/obj/machinery/button/door/directional/south{
+ id = "vacantofficemaintshutter";
+ name = "Privacy Shutters";
+ pixel_x = 4;
+ pixel_y = -28
+ },
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"ixl" = (
+/obj/structure/sign/plaques/kiddie/devils_tooth{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ixu" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Teleporter"
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"ixv" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ixw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"ixG" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"ixZ" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Chief Engineer"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/ce,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"iyd" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"iye" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"iyg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"iyE" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/mine/living_quarters)
+"iyJ" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/textured,
+/area/station/commons/toilet)
+"iyK" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"iyQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"iyY" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"izn" = (
+/obj/effect/spawner/random/decoration/generic,
+/turf/open/floor/plating,
+/area/station/security/prison)
+"izp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"izw" = (
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"izA" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 8";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"izC" = (
+/turf/closed/wall,
+/area/station/service/bar/atrium)
+"izD" = (
+/obj/machinery/light/directional/west,
+/obj/machinery/vending/assist,
+/obj/structure/sign/poster/official/science/directional/north,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"izI" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"izJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"izY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"iAc" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/obj/structure/sign/departments/telecomms/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"iAf" = (
+/turf/closed/wall/mineral/wood,
+/area/station/maintenance/space_hut/cabin)
+"iAk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"iAK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/south{
+ pixel_x = 5
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"iAO" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"iAQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/service/chapel)
+"iBa" = (
+/obj/structure/table,
+/obj/item/circular_saw,
+/obj/item/scalpel{
+ pixel_y = 12
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"iBe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"iBg" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"iBi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/food/grown/carrot,
+/obj/item/food/grown/carrot{
+ pixel_y = 4;
+ pixel_x = -2
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"iBl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/breakroom)
+"iBo" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/treatment_center)
+"iBF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"iBO" = (
+/obj/machinery/modular_computer/preset/civilian{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/explab)
+"iCg" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"iCj" = (
+/obj/machinery/computer/operating{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"iCo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"iCp" = (
+/obj/machinery/vatgrower,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/work)
+"iCq" = (
+/obj/structure/rack,
+/obj/item/stack/rods/ten,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iCz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "robotics2";
+ name = "Robotics Lab Shutters"
+ },
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/west{
+ name = "Robotics Desk";
+ req_access = list("robotics")
+ },
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"iCE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"iCX" = (
+/obj/machinery/power/solar_control{
+ dir = 4;
+ id = "portsolar";
+ name = "Port Quarter Solar Control"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"iDe" = (
+/obj/item/wrench,
+/obj/machinery/atmospherics/components/binary/pump/off/supply/visible/layer4{
+ dir = 1;
+ name = "Air In"
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"iDp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/closed/wall,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"iDq" = (
+/turf/closed/wall/r_wall,
+/area/station/security/warden)
+"iDt" = (
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"iDu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/item/kirbyplants/random,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"iDG" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 3";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"iDQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"iEA" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/masks,
+/obj/item/storage/box/syringes{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"iEN" = (
+/obj/structure/table,
+/obj/item/electropack,
+/obj/item/screwdriver,
+/obj/item/wrench,
+/obj/item/clothing/head/helmet,
+/obj/item/assembly/signaler,
+/obj/structure/cable,
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"iER" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/camera/directional/south{
+ c_tag = "Xenobiology Pens Hall - Aft";
+ network = list("ss13","rd","xeno_pens")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"iFe" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/prison/work)
+"iFg" = (
+/obj/structure/bed/dogbed/mcgriff,
+/obj/item/food/beef_wellington_slice,
+/obj/structure/cable,
+/mob/living/basic/pet/dog/pug/mcgriff,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"iFj" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"iFs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"iFw" = (
+/obj/structure/closet/bombcloset,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"iFL" = (
+/obj/structure/bed/dogbed/renault,
+/mob/living/basic/pet/fox/renault,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"iFX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iGa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"iGd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"iGj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Ultilities"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"iGH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"iGQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "botany_apiary";
+ name = "Apiary Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"iHc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"iHp" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/ai)
+"iHP" = (
+/obj/machinery/holopad,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/hydroponics)
+"iHV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"iHZ" = (
+/obj/structure/table/glass,
+/obj/item/storage/medkit/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/medkit/fire,
+/obj/item/storage/medkit/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "First-Aid Supplies";
+ red_alert_access = 1;
+ req_access = list("medical")
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/storage)
+"iIe" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"iIm" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/obj/machinery/door/airlock{
+ name = "Bar";
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/bar)
+"iIs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"iIA" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iIF" = (
+/obj/effect/landmark/start/hangover,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iIJ" = (
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"iIY" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"iJh" = (
+/obj/structure/sign/warning/gas_mask/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iJl" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"iJr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/light/warm/directional/east,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"iJC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"iJE" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/spawner/random/armory/rubbershot,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"iJI" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"iJK" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"iJL" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"iJN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"iJO" = (
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"iJV" = (
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/turf/open/floor/carpet/lone,
+/area/station/service/chapel)
+"iJX" = (
+/obj/item/target,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"iKd" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/closet/chefcloset,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/plating,
+/area/station/service/kitchen/coldroom)
+"iKh" = (
+/obj/machinery/incident_display/delam/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"iKj" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access";
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"iKl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"iKw" = (
+/obj/item/kitchen/fork/plastic,
+/obj/structure/table,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"iKG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iKQ" = (
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/openspace,
+/area/station/service/chapel)
+"iKX" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet1";
+ name = "Unit 1"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"iLa" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"iLf" = (
+/obj/machinery/atmospherics/pipe/smart/simple/brown/visible,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"iLh" = (
+/turf/closed/wall,
+/area/station/maintenance/port/lesser)
+"iLi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/command/gateway)
+"iLn" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"iLt" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"iLu" = (
+/obj/machinery/suit_storage_unit/captain,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"iLv" = (
+/obj/item/book/manual/wiki/tcomms{
+ pixel_x = 10;
+ pixel_y = -1
+ },
+/obj/item/book/manual/wiki/ordnance{
+ pixel_x = 10;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/experimentor{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"iLy" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/light/warm/directional/west,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/security/prison)
+"iLA" = (
+/obj/effect/turf_decal/loading_area,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"iLE" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"iLK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"iLY" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"iMb" = (
+/obj/structure/railing/corner,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"iMf" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"iMg" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/button/flasher{
+ id = "cell4";
+ pixel_y = -26
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"iMp" = (
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"iMu" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Arrivals Escape Pod 1"
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"iMw" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/cable,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"iMA" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"iMD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"iME" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"iMT" = (
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"iNa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"iNl" = (
+/obj/structure/fence/cut/large{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"iNn" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/geneticist,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"iNo" = (
+/turf/closed/mineral/random/snow,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"iNy" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"iNE" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"iNH" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"iNQ" = (
+/turf/open/floor/carpet,
+/area/station/maintenance/space_hut/cabin)
+"iNY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/white/corner,
+/area/station/command/heads_quarters/rd)
+"iOc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"iOs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"iOv" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"iOw" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva)
+"iOF" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "heads_meeting";
+ name = "Privacy Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/command/meeting_room)
+"iOM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iOS" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/table,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"iOZ" = (
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"iPm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"iPx" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"iPz" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"iPR" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"iPT" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/brig/entrance)
+"iQa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"iQd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/status_display/shuttle{
+ pixel_x = -32;
+ shuttle_id = "arrival"
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"iQj" = (
+/obj/item/radio/intercom/directional/north,
+/obj/structure/table/glass,
+/obj/machinery/computer/records/medical/laptop,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"iQx" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"iQF" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"iQK" = (
+/obj/structure/table,
+/obj/item/dice/d4{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/flashlight,
+/obj/item/radio/intercom/directional/west,
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"iQM" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"iQQ" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/library)
+"iQT" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"iQX" = (
+/obj/structure/chair/sofa/bench{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"iQY" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/curtain/cloth/fancy/mechanical/start_closed{
+ id = "cantena_curtains"
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"iRc" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ amount = 5
+ },
+/obj/item/flashlight,
+/turf/open/floor/plating,
+/area/station/construction)
+"iRo" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/customs/auxiliary)
+"iRp" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "gulag"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"iRr" = (
+/obj/effect/landmark/start/depsec/engineering,
+/obj/structure/chair/office,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/engineering)
+"iRw" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics - West"
+ },
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iRx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"iRz" = (
+/obj/structure/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iRA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iRJ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Port"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iRM" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/iron/twenty,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"iRN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/science/research)
+"iRV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"iSf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"iSl" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Mix to Port"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iSn" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/wood,
+/area/station/maintenance/port/fore)
+"iSo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"iSA" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"iSE" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"iSL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/edge{
+ dir = 8
+ },
+/area/station/engineering/lobby)
+"iSQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"iST" = (
+/obj/structure/chair/office,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"iSX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/fore)
+"iTr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"iTy" = (
+/obj/machinery/space_heater,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"iTB" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"iTC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iTJ" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/pen{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/folder/white{
+ pixel_x = 2
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"iTP" = (
+/obj/item/reagent_containers/cup/bucket,
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"iTY" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"iUm" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"iUo" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control"
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/iron,
+/area/station/security/warden)
+"iUr" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+"iUs" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"iUw" = (
+/obj/structure/closet/lasertag/blue,
+/obj/structure/sign/poster/official/random/directional/east,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"iUz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/transport/linear{
+ radial_travel = 0
+ },
+/obj/effect/landmark/transport/transport_id{
+ specific_transport_id = "publicElevator"
+ },
+/obj/machinery/light/floor,
+/obj/effect/abstract/elevator_music_zone{
+ linked_elevator_id = "publicElevator"
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/mine/storage)
+"iUG" = (
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"iUJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"iUM" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin/tagger,
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"iUO" = (
+/obj/machinery/camera/motion/directional/north{
+ c_tag = "EVA Storage North"
+ },
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"iUT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"iUW" = (
+/obj/structure/sign/poster/contraband/random/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"iVb" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"iVg" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 1
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics - South East"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iVv" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"iVA" = (
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"iVD" = (
+/obj/structure/chair/stool/directional/east,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"iVN" = (
+/obj/machinery/vending/sustenance,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"iVT" = (
+/obj/machinery/computer/camera_advanced/xenobio,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"iVU" = (
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iWj" = (
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"iWq" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"iWA" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/clothing/gloves,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"iWM" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iWP" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"iWS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ req_access = list("brig")
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"iWZ" = (
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iXc" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/genturf/orange,
+/area/icemoon/underground/unexplored/no_rivers)
+"iXg" = (
+/obj/structure/transit_tube,
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"iXh" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/firealarm/directional/east{
+ pixel_y = 6
+ },
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/east{
+ pixel_y = -5
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"iXk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/construction)
+"iXq" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "N2O to Pure"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/engineering/atmos)
+"iXu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"iXC" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"iXK" = (
+/obj/structure/reagent_dispensers/plumbed{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"iXM" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/five,
+/obj/item/stack/cable_coil/five,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"iXO" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/biogenerator,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"iXP" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"iYb" = (
+/turf/closed/wall,
+/area/station/maintenance/central/greater)
+"iYd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/duct,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"iYe" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/vending/wallmed/directional/west,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"iYq" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"iYs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/sink/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"iYt" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"iYy" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"iYA" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/mine/mechbay)
+"iYD" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/genturf/blue,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"iYG" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"iYU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"iZl" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/research)
+"iZn" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"iZo" = (
+/obj/effect/turf_decal/trimline/yellow/line,
+/turf/open/floor/iron/dark/side,
+/area/station/security/prison/workout)
+"iZq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"iZr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/electrolyzer,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"iZs" = (
+/obj/structure/table,
+/obj/item/kitchen/spoon/plastic,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"iZx" = (
+/obj/machinery/portable_atmospherics/canister/anesthetic_mix,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"iZz" = (
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"iZC" = (
+/obj/machinery/status_display/ai/directional/south,
+/obj/structure/chair/sofa/right/brown{
+ dir = 4
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"iZO" = (
+/obj/machinery/status_display/ai/directional/west,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"iZQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/science/xenobiology)
+"iZR" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"iZW" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small/directional/west,
+/obj/machinery/button/door/directional/south{
+ id = "AuxToilet2";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_x = -32;
+ spawn_loot_chance = 50
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"jag" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"jai" = (
+/obj/structure/fence/post{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"jak" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"jaq" = (
+/obj/effect/landmark/start/head_of_personnel,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"jaw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"jaE" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"jaO" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Turbine Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor/heavy,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jaW" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"jaX" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"jaY" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"jba" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jbb" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"jbe" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/surface/outdoors/nospawn)
+"jbf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/medical/cmo,
+/obj/effect/turf_decal/tile/purple/full,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"jbq" = (
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"jbx" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/storage)
+"jbz" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Library Art Gallery"
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/spawner/random/structure/table_fancy,
+/obj/machinery/light/blacklight/directional/north,
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"jbC" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Chemistry Stair Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry,
+/turf/open/floor/iron/dark,
+/area/station/medical/treatment_center)
+"jbG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"jbI" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"jbJ" = (
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"jbT" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/door/airlock/command/glass{
+ name = "Emergency EVA Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/eva,
+/turf/open/floor/iron/textured,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jbU" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/rd)
+"jco" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"jcr" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"jcs" = (
+/obj/machinery/door/morgue{
+ req_access = list("bar");
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"jct" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Upper Brig South"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/noticeboard/hos{
+ pixel_y = 36
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"jcA" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/departments/cargo/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"jcF" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"jcJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/status_display/supply{
+ pixel_y = -32
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jcP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"jdf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"jdm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"jdA" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/chair/sofa/corp/left{
+ dir = 8
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Medbay East";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"jdJ" = (
+/obj/structure/chair/wood,
+/turf/open/floor/carpet,
+/area/station/maintenance/space_hut/cabin)
+"jdK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jdQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"jdV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"jdW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/blobstart,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jdY" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"jeh" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/oxygen_input{
+ dir = 1
+ },
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"jek" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Server Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"jer" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"jez" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jeF" = (
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/glass/reinforced,
+/area/station/security/office)
+"jeI" = (
+/obj/item/food/grown/banana,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"jeJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"jeK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jeR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airlock_controller/incinerator_atmos{
+ pixel_x = 26
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jfc" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/hop)
+"jfF" = (
+/obj/structure/rack,
+/obj/item/shovel,
+/obj/item/clothing/mask/gas/plaguedoctor,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"jfR" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"jgl" = (
+/obj/effect/turf_decal/trimline/dark_blue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"jgn" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"jgs" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/glass,
+/area/station/security/lockers)
+"jgx" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"jgC" = (
+/obj/structure/minecart_rail{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"jgD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/wardrobe/pjs{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"jgG" = (
+/obj/structure/closet/secure_closet/security/sec,
+/turf/open/floor/iron/smooth_edge,
+/area/station/security/lockers)
+"jgL" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"jgV" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"jgW" = (
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"jhf" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"jhi" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/hallway/primary/central/fore)
+"jhj" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/chair/sofa/right/brown,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"jhy" = (
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jhC" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 4;
+ name = "Supply multi deck pipe adapter"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jhD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"jhH" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/item/book/manual/wiki/cytology{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/biopsy_tool{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/turf/open/floor/iron/grimy,
+/area/station/security/prison/work)
+"jhQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"jhS" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jiw" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/camera/directional/south{
+ c_tag = "Service - Botany Garden Access"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"jiB" = (
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/structure/table,
+/obj/machinery/door_buttons/access_button,
+/obj/item/clothing/mask/gas{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"jjk" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/openspace,
+/area/station/cargo/storage)
+"jjq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"jjt" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"jju" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"jjx" = (
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jjI" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/machinery/light/warm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"jjM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/turf_decal/trimline/green/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"jjO" = (
+/obj/structure/sink/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/mirror/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"jkn" = (
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"jkH" = (
+/obj/structure/training_machine,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"jkS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/machinery/duct,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jkW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jkX" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"jla" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"jle" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"jli" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"jlj" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/tank,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"jlk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jls" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jlu" = (
+/obj/structure/railing/corner,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"jly" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"jlF" = (
+/obj/machinery/computer/arcade/amputation{
+ dir = 4
+ },
+/obj/item/radio/intercom/prison/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"jlG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"jlJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/icemoon,
+/area/station/maintenance/solars/port/aft)
+"jlK" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"jlP" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"jlV" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jlX" = (
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/turf_decal/trimline/red/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"jmc" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/mine/laborcamp)
+"jms" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"jmy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"jmC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table,
+/obj/item/pen/red,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"jmD" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"jmI" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/workout)
+"jmR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"jmY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"jnp" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Cargo Bay North"
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/noticeboard/qm{
+ pixel_y = 36
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jnR" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"jnS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"jnV" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"jnW" = (
+/obj/structure/railing/wooden_fence{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"jnX" = (
+/obj/machinery/shower/directional/south,
+/obj/item/bikehorn/rubberducky/plasticducky,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"joa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ req_access = list("brig_entrance")
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "medsecprivacy";
+ name = "Privacy Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/medical)
+"joh" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/gloves/color/grey/protects_cold,
+/obj/item/clothing/mask/gas,
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron/textured,
+/area/station/ai_monitored/command/storage/eva)
+"jol" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"jpd" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"jpe" = (
+/obj/structure/rack,
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"jpg" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/landmark/start/bartender,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"jpo" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "maint2"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jpx" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jpy" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"jpC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"jpE" = (
+/obj/structure/closet/l3closet/security,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"jpN" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"jpS" = (
+/turf/closed/wall/r_wall,
+/area/station/cargo/warehouse)
+"jpT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/grille_or_waste,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"jqc" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jqj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"jqr" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"jqw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"jqx" = (
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jqE" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/grenades,
+/obj/item/book/manual/wiki/plumbing{
+ pixel_x = 5
+ },
+/obj/item/book/manual/wiki/chemistry{
+ pixel_x = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"jqT" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/storage/tech)
+"jre" = (
+/turf/closed/wall,
+/area/station/maintenance/starboard/lesser)
+"jrv" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"jrI" = (
+/obj/structure/transit_tube/curved/flipped,
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jrQ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/firealarm/directional/north,
+/obj/structure/cable,
+/obj/structure/railing/corner/end/flip,
+/turf/open/floor/iron,
+/area/mine/production)
+"jrX" = (
+/obj/item/cigbutt,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"jrZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"jsp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"jsq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/button/door/directional/north{
+ id = "teledoor";
+ name = "MiniSat Teleporter Shutters Control";
+ req_one_access = list("teleporter","minisat")
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"jss" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jsB" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"jsC" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"jsF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/port)
+"jsO" = (
+/obj/effect/spawner/random/maintenance/three,
+/obj/structure/closet/crate/wooden,
+/obj/effect/spawner/random/clothing/twentyfive_percent_cyborg_mask,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jtm" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4;
+ installation = /obj/item/gun/energy/e_gun
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"jtn" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jtt" = (
+/obj/structure/table,
+/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/machinery/requests_console/directional/south{
+ department = "Janitorial";
+ name = "Janitorial Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"jtx" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"jty" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Permabrig Library";
+ network = list("ss13","prison")
+ },
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"jtA" = (
+/obj/structure/reagent_dispensers/wall/peppertank/directional/south,
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"jtD" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/easel,
+/obj/item/canvas/twentythree_twentythree,
+/obj/item/canvas/twentythree_nineteen,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"jtE" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jtG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/item/stack/sheet/iron/twenty,
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jtH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"jtM" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jtN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"jug" = (
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"jul" = (
+/obj/machinery/conveyor{
+ id = "garbage"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"jum" = (
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron/dark/corner,
+/area/mine/eva)
+"juq" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"jur" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"juu" = (
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"juw" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"juH" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/mob/living/basic/parrot/poly,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"juQ" = (
+/obj/structure/rack,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"juS" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"jvj" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/chair,
+/obj/item/reagent_containers/blood/random,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"jvs" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"jvw" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"jvD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/mine/production)
+"jvL" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/detectives_office)
+"jvM" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"jvR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jvS" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jvU" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jwj" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/effect/mapping_helpers/airalarm/link{
+ chamber_id = "ordnancefreezer"
+ },
+/obj/effect/mapping_helpers/airalarm/mixingchamber_access,
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"jwl" = (
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jwn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "robo2"
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"jwt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jwv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/hobo_squat,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jww" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+"jwx" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"jwz" = (
+/obj/structure/flora/rock/icy/style_random,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"jwB" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"jwF" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"jwH" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"jwN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"jxb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"jxc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/genetics)
+"jxq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/command/nuke_storage)
+"jxv" = (
+/obj/effect/landmark/start/paramedic,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"jyl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"jyo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jyp" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"jyy" = (
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"jyz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"jyJ" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"jyL" = (
+/obj/structure/cable,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/closet/crate/preopen,
+/obj/item/stack/sheet/mineral/plasma/thirty,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"jyR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/engineering)
+"jzk" = (
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"jzn" = (
+/obj/structure/closet/secure_closet/captains,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"jzy" = (
+/obj/machinery/computer/exodrone_control_console{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/drone_bay)
+"jzC" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Walkway"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigentrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"jzH" = (
+/obj/machinery/modular_computer/preset/research{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/smooth_corner,
+/area/station/command/heads_quarters/rd)
+"jzY" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"jAk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/warden)
+"jAq" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"jAu" = (
+/obj/structure/rack,
+/obj/structure/cable,
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"jAv" = (
+/obj/structure/flora/grass/both/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"jAF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 5";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"jAG" = (
+/obj/structure/bed,
+/obj/item/bedsheet/cmo,
+/obj/machinery/light_switch/directional/south,
+/obj/effect/landmark/start/chief_medical_officer,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"jAI" = (
+/obj/machinery/module_duplicator,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"jAO" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jAQ" = (
+/obj/structure/window/reinforced/fulltile/ice{
+ name = "frozen window"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut/cabin)
+"jBc" = (
+/obj/machinery/dna_infuser,
+/obj/item/infuser_book,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"jBf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"jBh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"jBn" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 2;
+ height = 5;
+ name = "labor camp";
+ shuttle_id = "laborcamp_away";
+ width = 9
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"jBr" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/computer/security/telescreen/prison/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"jBB" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"jBR" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jCl" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jCr" = (
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jCw" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"jCD" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/fax{
+ fax_name = "Detective's Office";
+ name = "Detective's Fax Machine"
+ },
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"jCE" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/smartfridge/petri/preloaded,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"jCK" = (
+/obj/machinery/modular_computer/preset/cargochat/service,
+/obj/machinery/requests_console/auto_name/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/dark,
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+"jCL" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"jCT" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Bridge West Access"
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jCV" = (
+/obj/machinery/computer/order_console/mining,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Mining Bunks";
+ network = list("ss13", "mine")
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/production)
+"jDc" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/structure/sign/departments/restroom/directional/south,
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"jDl" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/cargo/miningdock)
+"jDm" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics2";
+ name = "Robotics Lab Shutters"
+ },
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"jDn" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/treatment_center)
+"jDt" = (
+/obj/machinery/pdapainter/security,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/hos)
+"jDz" = (
+/obj/machinery/light/small/directional/east,
+/obj/item/pickaxe,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"jDB" = (
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jDG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"jDM" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/flora/bush/sunny/style_random,
+/turf/open/floor/grass,
+/area/station/security/warden)
+"jDP" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"jDV" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jDW" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/structure/closet/crate/silvercrate,
+/obj/machinery/light_switch/directional/east{
+ pixel_y = 6
+ },
+/obj/item/radio/intercom/directional/east{
+ pixel_y = -8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"jDX" = (
+/obj/structure/training_machine,
+/obj/item/target,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"jEo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"jEs" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "gulag";
+ name = "labor camp conveyor"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"jED" = (
+/obj/machinery/modular_computer/preset/civilian{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot/left,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"jEE" = (
+/obj/structure/tank_holder/extinguisher,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jEJ" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/obey/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"jEK" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jFf" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/obj/item/paper/pamphlet/gateway,
+/obj/item/paper/pamphlet/gateway{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/structure/rack,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"jFJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/trimline/brown/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/cargo/bitrunning/den)
+"jFR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/mecha_part_fabricator,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"jFV" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"jFZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/sign/departments/chemistry/pharmacy/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jGg" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"jGh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"jGo" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"jGB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/lobby)
+"jGJ" = (
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"jHb" = (
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jHe" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"jHh" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"jHF" = (
+/obj/item/trash/boritos/red,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"jHG" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"jHQ" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jHX" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/landmark/navigate_destination/dockescpod1,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"jIg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"jIk" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jIm" = (
+/obj/machinery/rnd/production/techfab/department/security,
+/obj/structure/cable,
+/obj/structure/noticeboard/directional/east,
+/obj/machinery/light/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/office)
+"jIn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"jIp" = (
+/obj/item/beacon,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"jIr" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"jIv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"jIB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jII" = (
+/turf/closed/wall,
+/area/station/hallway/primary/central)
+"jIO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jIP" = (
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/station/science/server)
+"jIX" = (
+/obj/effect/turf_decal/siding/brown/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/brown/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"jIZ" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable/multilayer/connected,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"jJd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"jJe" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"jJl" = (
+/obj/effect/landmark/start/botanist,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/sign/calendar/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Botany Equipment"
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"jJA" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"jJM" = (
+/turf/open/floor/glass,
+/area/station/security/lockers)
+"jJQ" = (
+/obj/machinery/light_switch/directional/east,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/item/food/grown/tomato,
+/obj/item/food/grown/tomato{
+ pixel_y = 2;
+ pixel_x = 2
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"jJV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"jJX" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jJZ" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/paper_bin{
+ pixel_y = 6
+ },
+/obj/item/taperecorder{
+ pixel_x = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+"jKe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/engineering/main)
+"jKh" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"jKl" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/engine,
+/area/station/science/genetics)
+"jKr" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"jKs" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/landmark/navigate_destination/bar,
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ name = "Atrium"
+ },
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/bar/atrium)
+"jKy" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"jKA" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"jKG" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jKI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"jKJ" = (
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"jKK" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green,
+/obj/structure/sign/plaques/kiddie,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"jKN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"jKP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jKQ" = (
+/obj/structure/sign/warning/fire{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jKY" = (
+/turf/closed/mineral/random/snow/high_chance,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"jLa" = (
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/openspace,
+/area/station/commons/storage/mining)
+"jLc" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/chem_master/condimaster{
+ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments.";
+ name = "SapMaster XP"
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"jLf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jLl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/computer/atmos_control/nocontrol/master{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"jLo" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"jLt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"jLK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"jLM" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"jLO" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"jLQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jLW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/ordnance,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"jLX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jLZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "briggate";
+ name = "Security Shutters"
+ },
+/obj/item/restraints/handcuffs,
+/obj/item/radio/off,
+/obj/structure/cable,
+/obj/machinery/door/window/brigdoor/left/directional/west{
+ name = "Brig Reception";
+ req_access = list("security")
+ },
+/obj/machinery/door/window/right/directional/east{
+ name = "Brig Reception"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/brig/entrance)
+"jMc" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"jMn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jMr" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/spawner/random/trash/botanical_waste,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jMu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jMw" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1";
+ space_dir = 2
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"jMx" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Dormitory North"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/calendar/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"jME" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Supply Door Airlock";
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"jMO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jMY" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"jNf" = (
+/turf/closed/wall,
+/area/station/security/prison/garden)
+"jNg" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Control Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"jNo" = (
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"jNp" = (
+/turf/closed/wall/r_wall,
+/area/station/security/holding_cell)
+"jNB" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/turf/open/floor/carpet/blue,
+/area/station/hallway/secondary/entry)
+"jNZ" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jOj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jOp" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jOt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/hallway/primary/port)
+"jOy" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Central Hallway West"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/bluespace_vendor/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jOz" = (
+/obj/effect/turf_decal/trimline/blue/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/line,
+/obj/effect/turf_decal/trimline/blue/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/line,
+/obj/effect/landmark/start/paramedic,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"jOC" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Bar"
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"jOD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jOJ" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"jOK" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jOQ" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jOS" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Security Office";
+ name = "Security Office Fax Machine"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"jPc" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jPh" = (
+/obj/structure/grille/broken,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"jPi" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"jPl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/machinery/requests_console/directional/east{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"jPo" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"jPq" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jPs" = (
+/obj/effect/spawner/random/engineering/canister,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"jPu" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"jPv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jPx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/breakroom)
+"jPL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/botanical_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jPV" = (
+/obj/structure/sign/poster/random/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"jPY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jQd" = (
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"jQe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Gas to Filter"
+ },
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"jQh" = (
+/obj/structure/ladder,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"jQi" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jQz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"jQB" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Office"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"jQC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jQD" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"jQE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"jQI" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/meson,
+/obj/item/storage/bag/ore,
+/obj/item/pickaxe,
+/obj/item/mining_scanner,
+/obj/item/flashlight,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/gps/mining,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"jQS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"jQU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "briggate";
+ name = "Security Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig/entrance)
+"jRd" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"jRg" = (
+/obj/structure/table,
+/obj/machinery/camera/motion/directional/west{
+ c_tag = "AI Upload West";
+ network = list("aiupload")
+ },
+/obj/item/ai_module/supplied/freeform,
+/obj/effect/turf_decal/tile/dark_green,
+/obj/machinery/light/directional/west,
+/obj/structure/sign/nanotrasen{
+ pixel_x = -32
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"jRi" = (
+/obj/structure/fence{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"jRt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"jRu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"jRA" = (
+/turf/open/openspace,
+/area/station/service/bar/atrium)
+"jRC" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"jRI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"jRM" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 6
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jRP" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"jRS" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jRV" = (
+/obj/structure/chair/stool/directional/east,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jRX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"jSa" = (
+/obj/structure/table/wood/poker,
+/obj/item/storage/dice,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"jSe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jSf" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jSl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"jSt" = (
+/obj/machinery/door/airlock/external{
+ name = "Security Yard";
+ space_dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"jSC" = (
+/obj/structure/bookcase/random/reference,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"jSN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"jST" = (
+/obj/machinery/door/window/right/directional/north{
+ name = "Bridge Delivery";
+ req_access = list("command")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/central/greater)
+"jTf" = (
+/obj/structure/fence{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"jTg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"jTm" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"jTr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"jTw" = (
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jTG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "gene_shutters";
+ name = "Genetics Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"jTT" = (
+/obj/structure/chair/stool/directional/east,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/half{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"jTZ" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Server Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/rd,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"jUb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/mineral/coal{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"jUi" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"jUn" = (
+/obj/structure/table,
+/obj/item/folder/red{
+ pixel_x = 7;
+ pixel_y = 6
+ },
+/obj/item/folder/red{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/storage/box/evidence{
+ pixel_x = -6;
+ pixel_y = 9
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"jUs" = (
+/obj/machinery/door/airlock/external{
+ name = "Graveyard Access";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/coroner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"jUB" = (
+/turf/closed/wall,
+/area/station/medical/virology)
+"jUD" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"jUW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"jUY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/item/clothing/gloves/boxing,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"jUZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"jVa" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jVb" = (
+/obj/machinery/space_heater,
+/obj/machinery/light/small/directional/north,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"jVp" = (
+/obj/item/kirbyplants/fern,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jVs" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/folder/white{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -4
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"jVE" = (
+/obj/effect/turf_decal/box/white,
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"jWb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jWl" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"jWm" = (
+/obj/effect/turf_decal/box/red/corners{
+ dir = 4
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"jWq" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"jWt" = (
+/obj/structure/cable,
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"jWO" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/full,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security Post - Medbay";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"jWP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"jXe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"jXl" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jXm" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"jXr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jXH" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mining_internal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/mine/production)
+"jXL" = (
+/obj/machinery/newscaster/directional/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jXN" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"jXY" = (
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "gulag1";
+ name = "Cell 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"jYc" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"jYj" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/red/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"jYy" = (
+/obj/structure/sink/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mirror/directional/south,
+/turf/open/floor/iron/freezer,
+/area/station/medical/break_room)
+"jYF" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "Biohazard Containment Door"
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/noticeboard/rd{
+ pixel_y = 36
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"jYG" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"jYH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 9
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"jYS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jYV" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"jZe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"jZi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "cellblock1";
+ name = "Labor Camp Operations"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"jZj" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Service - Atrium Entrance"
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"jZo" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"jZr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva)
+"jZt" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"jZy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jZD" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/carpet/red,
+/area/station/commons/vacant_room/office)
+"jZI" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/station/security/prison)
+"jZM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jZU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/construction)
+"jZY" = (
+/obj/structure/tank_holder/extinguisher,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"kaw" = (
+/obj/machinery/photocopier,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"kaK" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron,
+/area/station/construction)
+"kaO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kbd" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/obj/item/clothing/shoes/workboots,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kbm" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/mechbay)
+"kbn" = (
+/obj/effect/decal/cleanable/food/pie_smudge,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"kbq" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"kbs" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kbx" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/microwave{
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kby" = (
+/obj/machinery/hydroponics/soil,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"kbJ" = (
+/obj/machinery/field/generator,
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"kbL" = (
+/obj/structure/table,
+/obj/machinery/light/small/dim/directional/west,
+/obj/item/camera{
+ pixel_y = 9;
+ pixel_x = -2
+ },
+/obj/item/reagent_containers/cup/glass/waterbottle/empty{
+ pixel_y = 5;
+ pixel_x = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"kbN" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/matches,
+/obj/item/toy/cards/deck{
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = 14;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = -18;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = -10;
+ pixel_y = 2
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"kbS" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"kcc" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Infirmary"
+ },
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"kce" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 4;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kcf" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kcm" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/command_all,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"kcC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/item/radio/intercom/prison/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"kcD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"kcE" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kcG" = (
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"kcM" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/prison/visit)
+"kcT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stock_parts/power_store/cell/high,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"kcZ" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/fore)
+"kdc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"kdg" = (
+/obj/structure/railing,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/science/ordnance)
+"kdy" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "secmechbay";
+ name = "Security Mech Bay Shutters"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"kdA" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"kdC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"kdF" = (
+/obj/effect/spawner/random/vending/snackvend,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kdS" = (
+/obj/structure/fence{
+ dir = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kdT" = (
+/obj/machinery/iv_drip,
+/obj/item/reagent_containers/blood,
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"kdU" = (
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"kdY" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics Waste Tank"
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"kei" = (
+/obj/docking_port/stationary/escape_pod,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kex" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"keA" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"keD" = (
+/obj/structure/easel,
+/obj/item/canvas/nineteen_nineteen,
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"keP" = (
+/turf/closed/wall,
+/area/station/engineering/atmos/storage/gas)
+"keS" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/central)
+"keZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kfa" = (
+/obj/machinery/air_sensor/air_tank,
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"kfc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"kfe" = (
+/obj/item/trash/energybar,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kfl" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/south,
+/obj/item/food/grown/poppy,
+/obj/item/food/grown/poppy{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/food/grown/poppy{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"kfr" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kfs" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"kfy" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"kfz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kfP" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/camera/motion/directional/south{
+ c_tag = "MiniSat AI Chamber North";
+ network = list("aicore")
+ },
+/obj/structure/cable,
+/obj/machinery/flasher/directional/south{
+ id = "AI";
+ pixel_x = -10
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"kfQ" = (
+/obj/machinery/atmospherics/components/binary/pressure_valve/on{
+ name = "Waste Release"
+ },
+/obj/structure/sign/poster/random/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kfS" = (
+/obj/machinery/atmospherics/components/tank/air/layer4{
+ initialize_directions = 2
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"kgc" = (
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kgg" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{
+ dir = 8
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"kgl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"kgm" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"kgo" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"kgw" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"kgy" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kgz" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/detectives_office)
+"kgD" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kgN" = (
+/obj/structure/girder,
+/obj/structure/lattice/catwalk,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"kgX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/west{
+ name = "Delivery Desk";
+ req_access = list("shipping")
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/table/reinforced,
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"kgY" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"khb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"khe" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"khs" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"khu" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/construction)
+"khy" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/crowbar/red,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"khR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/command/nuke_storage)
+"khV" = (
+/obj/structure/table,
+/obj/item/ai_module/reset,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"khW" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/fore)
+"kig" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"kii" = (
+/obj/effect/spawner/random/trash/food_packaging,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kin" = (
+/obj/machinery/pdapainter/supply,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"kir" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "lower-airlock-bend"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"kix" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Base"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/cargo/storage)
+"kiE" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/maintenance/disposal/incinerator)
+"kiL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"kiO" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"kiQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/command/heads_quarters/rd)
+"kiR" = (
+/obj/structure/table,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/item/paper_bin,
+/obj/item/pen/blue{
+ pixel_y = 5
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"kiX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 8;
+ name = "Supply multi deck pipe adapter"
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 8;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/structure/cable/multilayer/multiz,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kiY" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/effect/spawner/random/armory/bulletproof_armor,
+/obj/effect/spawner/random/armory/bulletproof_helmet,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"kjd" = (
+/obj/structure/plasticflaps{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"kjh" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kjo" = (
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kjt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"kjw" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/camera/directional/south{
+ c_tag = "Solar Maintenance - North West"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"kjx" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_half,
+/area/station/medical/chemistry)
+"kjy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"kjK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kjN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"kjP" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"kka" = (
+/obj/machinery/requests_console/auto_name/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "EVA Storage South"
+ },
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"kke" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kkl" = (
+/turf/closed/wall,
+/area/station/security/interrogation)
+"kkA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"kkB" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 locker"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+"kkD" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kkF" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/end,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"kkK" = (
+/obj/structure/table,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/crowbar,
+/obj/item/weldingtool,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"kkN" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/security/courtroom)
+"kkO" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/command{
+ name = "Gateway Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/gateway,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/gateway)
+"kkX" = (
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/science/research)
+"klc" = (
+/turf/closed/wall,
+/area/station/medical/cryo)
+"klk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"klo" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/table/reinforced,
+/obj/item/radio/intercom/directional/east,
+/obj/item/stack/cable_coil{
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/multitool,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/medical/chemistry)
+"klv" = (
+/obj/structure/chair/sofa/corp/corner{
+ dir = 8
+ },
+/obj/effect/spawner/random/contraband/prison,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"klW" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"klX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "cellblock1";
+ name = "Labor Camp Cellblock"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kmi" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"kmo" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"kmq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"kmA" = (
+/obj/structure/bed/medical/anchored{
+ dir = 4
+ },
+/obj/item/bedsheet/medical,
+/obj/machinery/camera/directional/east{
+ c_tag = "Labor Camp Infirmary";
+ network = list("labor")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/mine/laborcamp)
+"kmG" = (
+/obj/machinery/defibrillator_mount/directional/north,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/light/cold/directional/north,
+/obj/machinery/stasis{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"kmH" = (
+/obj/effect/spawner/random/entertainment/cigar,
+/obj/structure/table,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"kmM" = (
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"kmO" = (
+/obj/machinery/computer/mechpad,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"knd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"knf" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"knl" = (
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/station/holodeck/rec_center)
+"knq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"knU" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/light/directional/east,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"knX" = (
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"kod" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"koH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/commons/locker)
+"koO" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"kpg" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Chapel External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"kpj" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/mask/muzzle,
+/obj/machinery/flasher/directional/east{
+ id = "cell4";
+ pixel_y = -7
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"kpn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/kitchen/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kps" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kpA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"kpC" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/mix)
+"kpG" = (
+/obj/structure/table/reinforced,
+/obj/item/hfr_box/body/waste_output{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/item/hfr_box/body/moderator_input{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"kpH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kpX" = (
+/obj/structure/bed/medical{
+ dir = 4
+ },
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"kqc" = (
+/turf/closed/wall,
+/area/station/security/medical)
+"kqg" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/decoration/ornament,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kqh" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"kql" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"kqm" = (
+/obj/effect/turf_decal/trimline/green/filled/end{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/plant_analyzer,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/seeds/cabbage,
+/obj/item/seeds/berry,
+/obj/item/seeds/apple,
+/obj/item/seeds/aloe,
+/obj/item/seeds/garlic,
+/obj/item/seeds/poppy,
+/obj/item/seeds/tomato,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"kqn" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"kqq" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Air Outlet Pump"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/engineering/atmos)
+"kqs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/vending/sustenance/labor_camp,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kqw" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/exit/departure_lounge)
+"kqG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/small/directional/east,
+/obj/effect/spawner/random/engineering/tool{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/security/mechbay)
+"kqK" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"kqP" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/textured,
+/area/station/commons/toilet)
+"kqR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"kqS" = (
+/obj/machinery/atmospherics/components/binary/pump/off{
+ dir = 1;
+ name = "O2 To Pure"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kqV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "cargo-warehouse-external"
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Cargo Warehouse External Airlock";
+ opacity = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"kra" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/xenobiology)
+"krn" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"krv" = (
+/obj/structure/sign/directions/engineering{
+ pixel_x = -32;
+ pixel_y = -40
+ },
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kry" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"krC" = (
+/obj/machinery/atmospherics/components/tank/air{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"krN" = (
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"krQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"krS" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"krU" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"krY" = (
+/turf/closed/wall/r_wall,
+/area/station/science/breakroom)
+"krZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ksb" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/disposal/bin,
+/obj/structure/cable,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"ksc" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kse" = (
+/obj/structure/chair/sofa/bench/left{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"ksi" = (
+/obj/structure/displaycase,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"ksl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Fitness"
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/fitness)
+"ksn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"ksu" = (
+/mob/living/basic/mining/gutlunch/warrior,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"ksC" = (
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"kta" = (
+/turf/closed/wall,
+/area/station/commons/storage/mining)
+"ktf" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ktl" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"ktp" = (
+/obj/machinery/washing_machine,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"ktt" = (
+/obj/structure/sign/warning/electric_shock,
+/turf/closed/wall/r_wall,
+/area/station/security/prison/work)
+"ktw" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera/directional/south{
+ c_tag = "Engineering Supermatter Fore";
+ network = list("ss13","engine");
+ pixel_x = 23
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/mapping_helpers/airalarm/engine_access,
+/obj/effect/mapping_helpers/airalarm/link{
+ chamber_id = "engine"
+ },
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"ktz" = (
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/wood,
+/area/station/service/library)
+"ktB" = (
+/obj/effect/spawner/random/trash/hobo_squat,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"ktU" = (
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"ktW" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/radio/intercom/directional/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"ktX" = (
+/obj/structure/fence/post{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kub" = (
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"kuq" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/curtain/cloth/fancy/mechanical/start_closed{
+ id = "cantena_curtains"
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"kux" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"kuC" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"kuJ" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kuR" = (
+/obj/structure/barricade/wooden,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kuT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"kuV" = (
+/obj/effect/turf_decal/arrows/red,
+/obj/effect/turf_decal/tile/purple/half{
+ dir = 4
+ },
+/turf/open/floor/iron/half{
+ dir = 1
+ },
+/area/station/hallway/primary/starboard)
+"kuZ" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"kvf" = (
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/cargo/drone_bay)
+"kvj" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"kvu" = (
+/obj/machinery/door/airlock/security{
+ id_tag = "IsolationCell";
+ name = "Isolation Cell"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/smooth,
+/area/station/security/prison/safe)
+"kvE" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/fore)
+"kvR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"kvX" = (
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/service/chapel)
+"kwe" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"kwm" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{
+ dir = 4
+ },
+/obj/item/wrench,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kwn" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"kww" = (
+/obj/machinery/gibber,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/station/service/kitchen/coldroom)
+"kwz" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/stamp/head/captain,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"kwK" = (
+/obj/effect/turf_decal/tile/purple/half,
+/turf/open/floor/iron/half,
+/area/station/hallway/primary/starboard)
+"kwM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/tank/oxygen,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"kwU" = (
+/obj/machinery/computer/records/security,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"kwX" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"kxe" = (
+/obj/structure/rack,
+/obj/item/poster/random_official,
+/obj/effect/spawner/random/maintenance,
+/obj/item/relic,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"kxp" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Desk"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briggate";
+ name = "Security Shutters"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/brig/entrance)
+"kxs" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"kxv" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"kxA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"kxY" = (
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"kya" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kyf" = (
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"kyg" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/landmark/navigate_destination/dockescpod2,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"kyi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"kyp" = (
+/obj/effect/turf_decal/box/corners,
+/obj/effect/turf_decal/box/corners{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"kyu" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"kyy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/warden)
+"kyL" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kyM" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/stairs/medium,
+/area/mine/eva/lower)
+"kyU" = (
+/obj/machinery/modular_computer/preset/id,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"kyV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/trash/food_packaging,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kzv" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet/any,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"kzw" = (
+/turf/closed/wall/r_wall,
+/area/station/security/medical)
+"kzx" = (
+/obj/structure/closet/crate,
+/obj/item/food/breadslice/plain,
+/obj/item/food/breadslice/plain,
+/obj/item/food/breadslice/plain,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/onion,
+/obj/item/food/grown/onion,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/spawner/random/contraband/prison,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"kzA" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/engine_smes)
+"kzD" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/item/multitool{
+ pixel_x = 9;
+ pixel_y = 4
+ },
+/obj/machinery/button/door{
+ pixel_y = -3;
+ pixel_x = -3;
+ id = "bridge blast";
+ name = "Blast Door Control"
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"kzG" = (
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"kzO" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/multitool,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"kzZ" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kAk" = (
+/obj/structure/railing/wooden_fence{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"kAn" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"kAC" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"kAG" = (
+/obj/structure/table,
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"kAH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/ordnance)
+"kAK" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kAQ" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"kAT" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"kAW" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"kBc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "holodeck"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/station/commons/fitness)
+"kBi" = (
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"kBl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/circuit,
+/area/station/science/robotics/mechbay)
+"kBr" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/medkit/regular{
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"kBL" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sink/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"kBU" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/turf/open/floor/carpet/blue,
+/area/station/hallway/secondary/entry)
+"kBV" = (
+/obj/structure/table,
+/obj/item/circuitboard/machine/chem_dispenser/drinks,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"kBX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"kCg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/light/small/directional/west,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"kCn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kCo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"kCs" = (
+/obj/machinery/airalarm/directional/south,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"kCu" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"kCx" = (
+/obj/structure/table/wood,
+/obj/item/book/granter/action/spell/smoke/lesser{
+ name = "mysterious old book of cloud-chasing"
+ },
+/obj/item/reagent_containers/cup/glass/bottle/holywater{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/nullrod{
+ pixel_x = 4
+ },
+/turf/open/floor/cult,
+/area/station/service/chapel/office)
+"kCz" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/firealarm/directional/west,
+/obj/structure/chair/sofa/corp/left{
+ dir = 4;
+ pixel_x = -4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"kCC" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kCG" = (
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/machinery/photocopier,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"kCH" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"kCV" = (
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"kDc" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{
+ dir = 8
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"kDj" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"kDs" = (
+/turf/closed/mineral/snowmountain/cavern/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kDu" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"kDv" = (
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kDz" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/west{
+ id = "Toilet1";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"kDI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/eva)
+"kDO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kEj" = (
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"kEn" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Visitation South";
+ network = list("ss13","prison")
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"kEq" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kEC" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kEM" = (
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"kET" = (
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"kEY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kFc" = (
+/obj/structure/table/wood,
+/obj/item/circuitboard/machine/fax,
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/five,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kFu" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/storage/box/lights/mixed,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"kFx" = (
+/obj/machinery/door/window/brigdoor/left/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"kFH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 10
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"kFN" = (
+/obj/structure/chair/sofa/bench/right{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"kFO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/mine/eva)
+"kFW" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"kGc" = (
+/obj/structure/table/wood,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/fax{
+ fax_name = "Head of Security's Office";
+ name = "Head of Security's Fax Machine"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/hos)
+"kGe" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door";
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/bridge)
+"kGm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/cmo/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"kGx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"kGD" = (
+/obj/structure/secure_safe/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kGF" = (
+/obj/structure/table,
+/obj/item/camera_film,
+/obj/item/camera,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/camera/directional/east{
+ c_tag = "Art Storage"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/commons/storage/art)
+"kGP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"kGQ" = (
+/obj/structure/table,
+/obj/item/stamp/head/qm,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"kHb" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/item/clothing/head/costume/pirate/bandana,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"kHj" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/item/kirbyplants/random/fullysynthetic{
+ pixel_x = -8;
+ pixel_y = 21
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"kHl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"kHn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"kHr" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/project)
+"kHI" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kHL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"kHN" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"kHP" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"kHU" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/clothing/head/utility/welding,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 35
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"kIh" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"kIi" = (
+/obj/machinery/door/airlock{
+ name = "Perma Overlook Entrance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "perma-overlook"
+ },
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"kIl" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/library,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kIo" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"kIr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"kIt" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"kIy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kII" = (
+/obj/machinery/space_heater,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"kIL" = (
+/obj/structure/flora/grass/green/style_random,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kIU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"kJc" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"kJe" = (
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"kJm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"kJr" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/chair/stool/bar/directional/east,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"kJw" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"kJF" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/heavy{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"kJK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"kJO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kJU" = (
+/obj/structure/girder,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"kJV" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Server Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"kKv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/mail_sorting/science/genetics,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"kKy" = (
+/obj/structure/tank_holder/oxygen,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"kKH" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kKL" = (
+/turf/closed/wall,
+/area/station/maintenance/starboard/fore)
+"kKT" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"kKU" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kKX" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kLa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Station Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"kLb" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4,
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kLc" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"kLd" = (
+/obj/structure/fence/post{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"kLo" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"kLr" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"kLy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"kLZ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kMh" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kMv" = (
+/obj/effect/turf_decal/trimline/yellow/filled/shrink_cw{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"kMN" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"kMY" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/storage)
+"kNf" = (
+/obj/structure/table,
+/obj/item/flashlight/flare/candle{
+ pixel_y = 1;
+ pixel_x = -16
+ },
+/obj/item/paper/crumpled{
+ pixel_y = 3;
+ pixel_x = 1;
+ name = "used napkin"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kNi" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kNk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/effect/turf_decal/bot,
+/obj/structure/cable,
+/turf/open/floor/iron/large,
+/area/station/engineering/atmos/storage/gas)
+"kNp" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"kNA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"kNC" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/thinplating,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"kNQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"kNW" = (
+/turf/closed/wall,
+/area/station/cargo/warehouse)
+"kNZ" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kOc" = (
+/obj/structure/chair,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"kOi" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"kOk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"kOq" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=EVA2";
+ location = "Dorm"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kOt" = (
+/obj/structure/fence/corner{
+ dir = 2;
+ pixel_y = 0
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"kOx" = (
+/obj/structure/table/wood,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/box/white/corners{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+"kOM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"kON" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/restraints/handcuffs{
+ pixel_y = 5
+ },
+/obj/item/restraints/handcuffs{
+ pixel_y = 1
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = 1;
+ pixel_y = -4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"kOR" = (
+/obj/structure/railing/wooden_fence,
+/obj/item/flashlight/lantern/on,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"kOV" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"kOX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"kPg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kPo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/transport/linear{
+ radial_travel = 0
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/mine/storage)
+"kPq" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kPu" = (
+/obj/structure/table,
+/obj/item/crowbar/red,
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = 6;
+ pixel_y = -3
+ },
+/obj/structure/sign/poster/random/directional/west,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kPv" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"kPw" = (
+/obj/structure/flora/bush/flowers_yw/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"kPy" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"kPL" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"kQc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"kQf" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"kQg" = (
+/obj/machinery/atmospherics/components/tank/air,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kQi" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"kQt" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Gas to Mix"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"kQz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "ai-passthrough"
+ },
+/obj/structure/cable,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Atmospherics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"kQE" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"kQJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/light/cold/directional/south,
+/obj/structure/sign/warning/bodysposal/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"kQM" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"kQQ" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/analyzer,
+/obj/item/pipe_dispenser,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"kQY" = (
+/obj/effect/turf_decal/arrows/red{
+ dir = 4;
+ pixel_x = -15
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"kRc" = (
+/obj/machinery/light/directional/west,
+/obj/structure/closet/wardrobe/grey,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kRd" = (
+/obj/structure/bookcase,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kRw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/computer/atmos_control/nocontrol/incinerator{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"kRy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"kRE" = (
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"kRH" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Chemistry Lab Exit"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "chem-airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"kRJ" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics Distribution Loop"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Distro to Waste"
+ },
+/obj/effect/turf_decal/siding/wideplating,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"kRP" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/medical/central)
+"kRU" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/landmark/start/cargo_technician,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"kRV" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kSc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kSn" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"kSv" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"kSw" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/icemoon/underground/explored)
+"kSA" = (
+/obj/machinery/mining_weather_monitor/directional/east,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"kSD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kSG" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"kSM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"kSU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kTk" = (
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/chapel/office)
+"kTz" = (
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"kTC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/primary/port)
+"kTD" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"kTF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"kUb" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/fore/lesser)
+"kUn" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kUo" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/machinery/light/cold/directional/west,
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"kUt" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"kUu" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/station/engineering/transit_tube)
+"kUx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"kUz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"kUD" = (
+/turf/open/openspace,
+/area/mine/eva)
+"kUF" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/supply{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kUJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/built/directional/south,
+/obj/structure/mirror/directional/west,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"kUU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"kVa" = (
+/obj/machinery/light/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"kVe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"kVl" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kVv" = (
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/five,
+/obj/structure/sign/poster/contraband/little_fruits/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kVx" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kVA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/mining_weather_monitor/directional/north,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"kVF" = (
+/obj/structure/closet/secure_closet/courtroom,
+/obj/item/gavelhammer,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"kVI" = (
+/obj/structure/closet/firecloset,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"kVM" = (
+/obj/structure/chair/sofa/corp/right{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"kVN" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Mining B-1 Hallway South";
+ network = list("ss13", "mine")
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"kVS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"kWh" = (
+/obj/machinery/holopad/secure,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/hos)
+"kWi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"kWk" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"kWr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"kWw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"kWL" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/nitrogen{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/mercury{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/oxygen{
+ pixel_x = 1
+ },
+/obj/structure/sign/warning/no_smoking/circle/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"kWN" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kWO" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"kWV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kWW" = (
+/obj/machinery/door/airlock/atmos,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/trimline/yellow/corner,
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/atmos/hfr_room)
+"kXf" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"kXq" = (
+/obj/machinery/air_sensor/plasma_tank,
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"kXr" = (
+/turf/closed/wall,
+/area/station/cargo/storage)
+"kXs" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kXx" = (
+/obj/structure/table,
+/obj/item/food/spaghetti/meatballspaghetti{
+ pixel_x = -1;
+ pixel_y = 6
+ },
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_x = -11;
+ pixel_y = 11
+ },
+/obj/item/trash/candle{
+ pixel_x = 9;
+ pixel_y = -1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"kXA" = (
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"kXB" = (
+/obj/structure/table,
+/obj/item/pai_card,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kXD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"kXI" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"kXM" = (
+/obj/structure/closet/secure_closet/security/med,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/red/full,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"kXO" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"kXQ" = (
+/obj/machinery/power/solar_control{
+ id = "auxsolareast";
+ name = "Starboard Bow Solar Control"
+ },
+/obj/structure/cable,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"kXW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"kXY" = (
+/turf/open/floor/iron/dark,
+/area/station/security/prison/rec)
+"kYc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/meter/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"kYi" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kYq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/tcommsat/computer)
+"kYw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"kYF" = (
+/obj/structure/light_construct/directional/west,
+/mob/living/simple_animal/hostile/retaliate/goose/vomit,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"kYI" = (
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"kYL" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/large,
+/area/station/engineering/engine_smes)
+"kZa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"kZb" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"kZe" = (
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Cytology External Airlock"
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"kZh" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"kZi" = (
+/obj/machinery/space_heater,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"kZn" = (
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/rec)
+"kZt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"kZu" = (
+/turf/closed/wall,
+/area/mine/production)
+"kZC" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/command/storage/eva)
+"kZI" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/contraband/permabrig_weapon,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"laa" = (
+/obj/machinery/newscaster/directional/west,
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark,
+/area/station/commons/lounge)
+"lab" = (
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Secure Weapons Storage";
+ req_access = list("armory")
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"laf" = (
+/obj/structure/cable,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/storage/fancy/cigarettes,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lah" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Escape";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/exit/departure_lounge)
+"law" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Vestibule"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron/smooth,
+/area/station/security/processing)
+"laB" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"laD" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"laM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"laV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"laY" = (
+/obj/effect/spawner/random/maintenance/three,
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lbc" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lbf" = (
+/obj/structure/flora/bush/leavy/style_random,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"lbg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"lbk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig/upper)
+"lbm" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"lbs" = (
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"lby" = (
+/obj/effect/decal/cleanable/greenglow,
+/obj/effect/decal/cleanable/plastic,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lch" = (
+/obj/machinery/computer/monitor{
+ dir = 1;
+ name = "backup power monitoring console"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"lck" = (
+/obj/machinery/gateway/centerstation,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/gateway)
+"lcs" = (
+/obj/structure/reagent_dispensers/plumbed{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lct" = (
+/obj/structure/railing,
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/science/cytology)
+"lcu" = (
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"lcB" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"lcY" = (
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"ldi" = (
+/obj/structure/table,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"ldn" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "maint3"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ldr" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"ldw" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"ldz" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/dropper,
+/obj/item/storage/box/beakers{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/bottle/welding_fuel,
+/obj/item/reagent_containers/cup/bottle/welding_fuel,
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Permabrig Cytology";
+ network = list("ss13","prison")
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/security/prison/work)
+"ldH" = (
+/turf/closed/wall,
+/area/station/security/prison/mess)
+"ldJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ldQ" = (
+/obj/structure/barricade/wooden,
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ldR" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"ldV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"lec" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/shower/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"lei" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/bed/medical/emergency,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lej" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lek" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort2"
+ },
+/obj/machinery/requests_console/directional/west{
+ department = "Cargo Bay";
+ name = "Cargo Bay Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"leo" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"leM" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"leU" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"leW" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"lfo" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"lfp" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/mapping_helpers/apc/cell_10k,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"lfs" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"lfA" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/light/directional/north,
+/obj/machinery/door_buttons/airlock_controller{
+ pixel_y = 32;
+ idExterior = "virology_airlock_exterior";
+ idInterior = "virology_airlock_interior";
+ interior_airlock = "virology_airlock_control";
+ name = "Virology Access Controller";
+ req_access = list("virology")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"lfG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/supply/qm,
+/obj/machinery/door/airlock/command{
+ name = "Quartermaster's Office"
+ },
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"lfL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"lfU" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lgg" = (
+/obj/machinery/air_sensor/engine_chamber,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"lgk" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"lgw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lgx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+"lgz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/brig/entrance)
+"lgD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"lgK" = (
+/turf/closed/wall,
+/area/station/security/prison/visit)
+"lgO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/fore)
+"lgW" = (
+/obj/machinery/meter/monitored/distro_loop,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible,
+/obj/effect/turf_decal/siding/wideplating,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"lha" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/storage)
+"lhf" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"lhu" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Xenobiology Lab Access";
+ network = list("ss13","rd","xeno")
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"lhv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"lhC" = (
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"lhO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/engineering/transit_tube)
+"lhQ" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"lia" = (
+/turf/open/openspace,
+/area/station/service/kitchen/coldroom)
+"lik" = (
+/obj/effect/landmark/start/bartender,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"lil" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/random/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lis" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"lit" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"lix" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/meter/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"liz" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"liI" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "Output to Waste"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"liM" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"liS" = (
+/obj/structure/closet/crate/coffin,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/toy/figure/chaplain,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"liV" = (
+/obj/structure/chair/sofa/bench/left,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ljl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"ljo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ljp" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ljq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"ljx" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L1"
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ljz" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"ljB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/aft)
+"ljD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"ljE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/locker)
+"ljF" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"ljK" = (
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/greater)
+"ljL" = (
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"ljP" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"ljT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/textured,
+/area/station/commons/storage/primary)
+"lkb" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/inspector,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/security/office)
+"lke" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"lkj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"lko" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+"lkr" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lkz" = (
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"lkH" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/rxglasses,
+/obj/item/hand_labeler,
+/obj/item/gun/syringe,
+/obj/item/gun/syringe,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"lkI" = (
+/obj/machinery/computer/communications,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"lkS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/food/pie_smudge,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"lli" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lln" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"llw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"llD" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/carbon,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"llR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/pen/red,
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/folder/yellow,
+/obj/machinery/button/door/directional/west{
+ id = "qmprivacy";
+ name = "Privacy Shutters Control";
+ req_access = list("qm")
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"llT" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lme" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/fire/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lmf" = (
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"lms" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"lmv" = (
+/obj/machinery/mineral/ore_redemption{
+ input_dir = 8;
+ output_dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/east{
+ name = "Ore Redemtion Window";
+ req_access = list("mineral_storeroom")
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/office)
+"lmx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"lmy" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 5
+ },
+/obj/machinery/igniter/incinerator_atmos,
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"lmA" = (
+/obj/effect/turf_decal/trimline/dark_green/corner,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 6
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage)
+"lmK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"lmM" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"lmQ" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lmT" = (
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Chapel North"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"lnc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/commons/storage/tools)
+"lne" = (
+/obj/structure/table/glass,
+/obj/item/seeds/glowshroom,
+/obj/item/seeds/bamboo{
+ pixel_y = 3;
+ pixel_x = 4
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/structure/sign/poster/contraband/kudzu/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lnk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"lnp" = (
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"lnr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/confetti,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"lns" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"lnx" = (
+/obj/structure/closet/crate/preopen,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"lnC" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lnL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"lnY" = (
+/obj/structure/table/glass,
+/obj/structure/bedsheetbin,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"loc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "External Gas to Loop"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"log" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/central/lesser)
+"lok" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"lom" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"loq" = (
+/obj/structure/light_construct/directional/east,
+/turf/open/floor/iron,
+/area/station/construction)
+"loy" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/button/door/directional/east{
+ id = "secmechbay";
+ name = "Security Mech Garage Door Controls";
+ req_access = list("security")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"loF" = (
+/obj/structure/table/wood,
+/obj/item/toy/mecha/honk{
+ pixel_y = 12
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"loO" = (
+/obj/structure/statue/snow/snowman,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"loV" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lpj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "commissaryshutter";
+ name = "Vacant Commissary Shutter"
+ },
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"lpy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"lpC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-med-passthrough"
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Medbay"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/large,
+/area/station/maintenance/aft/greater)
+"lpH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"lpL" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"lpM" = (
+/turf/closed/wall/r_wall,
+/area/station/command/heads_quarters/captain)
+"lpS" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"lpW" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lpY" = (
+/obj/structure/chair/sofa/bench{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"lqi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/rcl/pre_loaded,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"lqj" = (
+/obj/structure/chair/pew/right{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"lqz" = (
+/obj/structure/cable,
+/turf/closed/wall,
+/area/station/ai_monitored/turret_protected/ai)
+"lqA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"lqE" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lqG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lqL" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lqM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lqN" = (
+/obj/structure/rack,
+/obj/item/controller{
+ pixel_x = -7
+ },
+/obj/item/compact_remote{
+ pixel_x = -7
+ },
+/obj/item/compact_remote{
+ pixel_x = -7
+ },
+/obj/item/integrated_circuit/loaded/speech_relay{
+ pixel_x = 7
+ },
+/obj/item/integrated_circuit/loaded/hello_world{
+ pixel_x = 7
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/structure/sign/warning/firing_range/directional/north,
+/turf/open/floor/iron/white/corner,
+/area/station/science/explab)
+"lqU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"lqZ" = (
+/obj/machinery/vending/wardrobe/coroner_wardrobe,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"lrc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lrl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"lrz" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"lrD" = (
+/obj/machinery/shower/directional/north,
+/obj/item/soap/deluxe,
+/obj/item/bikehorn/rubberducky,
+/obj/structure/curtain,
+/turf/open/floor/iron/freezer,
+/area/station/command/heads_quarters/captain)
+"lrM" = (
+/obj/effect/turf_decal/siding/wideplating_new/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/work)
+"lsa" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "robotics2";
+ name = "Robotics Lab Shutters"
+ },
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"lsi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"lsn" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/stairs/south,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/security/prison)
+"lso" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lsA" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"lsF" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"lsN" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/security/prison)
+"lsU" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"ltk" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ltE" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/random,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"ltH" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"ltP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ltV" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/commons/fitness)
+"ltW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"ltY" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Central Hallway North-East"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/sign/poster/official/random/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"lub" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"luk" = (
+/obj/structure/table/wood,
+/obj/machinery/fax{
+ fax_name = "Captain's Office";
+ name = "Captain's Fax Machine"
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"lup" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"lux" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"luD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_x = -3;
+ pixel_y = 9
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"luG" = (
+/obj/item/toy/snowball{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"luI" = (
+/obj/effect/spawner/random/lavaland_mob/raptor,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"luP" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"luR" = (
+/obj/structure/chair/office/tactical{
+ dir = 1
+ },
+/obj/effect/landmark/start/coroner,
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"lva" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"lvb" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 10
+ },
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_y = 8;
+ pixel_x = 6
+ },
+/obj/item/storage/box/syringes{
+ pixel_y = 8;
+ pixel_x = -5
+ },
+/obj/item/storage/box/beakers{
+ pixel_y = 5;
+ pixel_x = -9
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"lvk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"lvl" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Command Station"
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 29;
+ pixel_y = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"lvt" = (
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"lvA" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door";
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/bridge)
+"lvB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/south,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"lvF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"lvG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"lvQ" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"lvR" = (
+/obj/machinery/vatgrower{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"lvS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/flasher/directional/east{
+ id = "brigentry"
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"lvT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva)
+"lvU" = (
+/obj/structure/closet/crate,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/effect/turf_decal/siding/dark{
+ dir = 6
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/prison/work)
+"lvW" = (
+/obj/structure/table,
+/obj/effect/spawner/random/trash/food_packaging,
+/obj/effect/spawner/random/trash/food_packaging,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/radio/intercom/directional/north,
+/obj/item/radio/intercom/directional/north,
+/obj/item/newspaper,
+/obj/machinery/camera/directional/north{
+ c_tag = "Arrivals Lobby North"
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"lvY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"lwd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"lwi" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Mix to Filter"
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"lwF" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"lwI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lwO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"lwQ" = (
+/turf/closed/wall,
+/area/station/medical/treatment_center)
+"lwR" = (
+/turf/closed/wall/r_wall,
+/area/mine/living_quarters)
+"lwT" = (
+/obj/machinery/mechpad,
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"lxb" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"lxc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Auxiliary Tool Storage"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"lxi" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron,
+/area/station/construction)
+"lxu" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lxR" = (
+/obj/effect/spawner/random/structure/crate_abandoned,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"lxT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"lxU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lxY" = (
+/obj/structure/closet/crate,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"lye" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"lyg" = (
+/turf/closed/wall/r_wall,
+/area/station/security/brig)
+"lyq" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos/storage/gas)
+"lyu" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lantern,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"lyy" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/computer/gateway_control,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"lyG" = (
+/turf/open/floor/glass/reinforced,
+/area/station/ai_monitored/security/armory/upper)
+"lyH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"lyX" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"lzb" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/captain,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"lzq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/eva)
+"lzt" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"lzx" = (
+/obj/machinery/flasher/directional/east{
+ id = "executionflash"
+ },
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"lzy" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"lzD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"lzJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/sign/warning/radiation/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"lzM" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"lzO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"lzU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/sign/warning/pods/directional/north,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"lzX" = (
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"lAc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/chemistry)
+"lAu" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"lAw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"lAA" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"lAC" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1";
+ space_dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"lAL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"lAW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Fitness"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/fitness)
+"lBo" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"lBt" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"lBB" = (
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lBD" = (
+/obj/structure/flora/grass/green/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lBN" = (
+/obj/machinery/door/morgue{
+ name = "Coffin Storage";
+ req_access = list("chapel_office");
+ dir = 2
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"lBR" = (
+/turf/closed/wall,
+/area/station/security/prison/toilet)
+"lBS" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"lBZ" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 7";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"lCb" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"lCc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lCg" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"lCi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lCn" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"lCz" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"lCC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lCD" = (
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/lobby)
+"lCV" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lCY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"lDh" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/trash/tray,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lDo" = (
+/obj/structure/sign/directions/medical{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = -24
+ },
+/obj/structure/sign/directions/science{
+ dir = 4;
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = 32;
+ pixel_y = -40
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"lDq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"lDr" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lDD" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door/directional/north{
+ id = "labor";
+ name = "Labor Camp Lockdown";
+ req_access = list("brig")
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"lDF" = (
+/obj/structure/table,
+/obj/item/wrench,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lDH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"lDM" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/medical/cryo)
+"lDX" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/purple/filled/corner{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"lEa" = (
+/obj/structure/chair/sofa/corner/brown,
+/obj/structure/cable,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"lEg" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "AI Core Door";
+ req_access = list("ai_upload")
+ },
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"lEj" = (
+/turf/open/floor/iron/dark/textured,
+/area/station/security/processing)
+"lEo" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lEv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Launch Room"
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"lEz" = (
+/obj/structure/flora/bush/flowers_pp/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"lEA" = (
+/obj/machinery/power/smes/engineering,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/engine_smes)
+"lEE" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/port)
+"lEJ" = (
+/obj/structure/table,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"lEM" = (
+/obj/structure/rack,
+/obj/item/hand_labeler,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/button/door/directional/east{
+ id = "Trial Transfer";
+ name = "Trial Transfer Lockdown";
+ req_access = list("brig")
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"lEO" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/bar/atrium)
+"lEP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lET" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/briefcase/secure{
+ pixel_y = 5
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"lFb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"lFe" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/safe)
+"lFg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"lFp" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"lFq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lFA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"lFG" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Bow Solar Access"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"lFL" = (
+/obj/effect/turf_decal/trimline/red/warning,
+/obj/effect/turf_decal/stripes/red/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"lFW" = (
+/obj/effect/spawner/xmastree/rdrod,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"lGb" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/flashlight{
+ pixel_y = 2
+ },
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera/directional/south{
+ c_tag = "Ordnance Lower Mix Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"lGd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"lGf" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/genturf/blue,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"lGh" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/warning,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"lGp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering Supermatter Aft";
+ network = list("ss13","engine");
+ pixel_x = 23
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"lGs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"lGz" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"lGH" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lGK" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/button/door{
+ id = "Interrogation";
+ name = "Interrogation Shutters";
+ pixel_x = -22
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"lGL" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Arrivals Hallway South"
+ },
+/obj/machinery/newscaster/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"lGN" = (
+/obj/effect/landmark/start/botanist,
+/obj/structure/chair/office/light,
+/turf/open/floor/glass,
+/area/station/service/hydroponics)
+"lHu" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"lHA" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/fore)
+"lHC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/engineering/general,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"lHE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/stool/directional/east,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"lHL" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/north{
+ id = "secmechbay";
+ name = "Security Mech Garage Door Controls";
+ req_access = list("security")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"lHV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/smartfridge/organ,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"lIk" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/breakroom)
+"lIp" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/machinery/light/small/directional/north,
+/obj/item/razor{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/open/floor/iron/freezer,
+/area/station/command/heads_quarters/captain)
+"lIt" = (
+/obj/machinery/modular_computer/preset/cargochat/security{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/machinery/light/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"lIy" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"lIC" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lII" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Telecommunications"
+ },
+/obj/effect/landmark/navigate_destination,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"lIP" = (
+/obj/effect/mapping_helpers/trapdoor_placer,
+/turf/open/floor/catwalk_floor/iron_white,
+/area/station/medical/medbay/central)
+"lIQ" = (
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/restraints/legcuffs/beartrap,
+/obj/item/storage/box/mousetraps,
+/obj/item/storage/box/mousetraps,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"lIR" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"lIW" = (
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"lJg" = (
+/obj/structure/closet/crate/trashcart/laundry,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/clock/directional/north,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"lJn" = (
+/obj/effect/decal/cleanable/confetti,
+/obj/structure/closet/crate/cardboard,
+/obj/item/storage/cans/sixbeer,
+/obj/effect/spawner/random/food_or_drink/cups,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lJO" = (
+/turf/closed/wall,
+/area/station/maintenance/port/fore)
+"lKc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"lKk" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"lKq" = (
+/turf/closed/wall,
+/area/station/science/xenobiology)
+"lKs" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"lKt" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"lKN" = (
+/obj/machinery/door/window/left/directional/west{
+ req_access = list("hydroponics");
+ name = "Hydroponics Equipment"
+ },
+/turf/open/floor/iron/half,
+/area/station/service/hydroponics)
+"lLf" = (
+/obj/structure/table/wood,
+/obj/item/storage/dice,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"lLl" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"lLm" = (
+/turf/open/floor/iron/cafeteria,
+/area/station/maintenance/port/aft)
+"lLA" = (
+/obj/structure/sign/warning/fire{
+ pixel_y = 32
+ },
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"lLD" = (
+/obj/structure/closet/firecloset,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"lLE" = (
+/obj/machinery/netpod,
+/obj/machinery/camera/autoname/directional/south,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/cargo/bitrunning/den)
+"lLN" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"lLY" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/recharge_floor,
+/area/mine/mechbay)
+"lMa" = (
+/obj/item/trash/pistachios,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lMd" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/item/storage/box/bandages{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/food/cheesiehonkers,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"lMg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"lMh" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"lMC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"lNa" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/mechbay)
+"lNc" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"lNi" = (
+/obj/effect/spawner/random/trash/moisture_trap,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lNj" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lNy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/status_display/evac/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"lNC" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"lNG" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"lNH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"lNI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"lNP" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/east,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"lNV" = (
+/obj/structure/closet/wardrobe/grey,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"lOa" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"lOr" = (
+/obj/structure/railing,
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/security/brig)
+"lOt" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"lOA" = (
+/obj/structure/minecart_rail{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/west{
+ frequency = 1453;
+ name = "Kitchen Intercom"
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"lOI" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lOJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"lOP" = (
+/obj/structure/table,
+/obj/item/paper,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/west{
+ c_tag = "Labor Camp Cell 1";
+ network = list("labor")
+ },
+/obj/machinery/flasher/directional/west{
+ id = "GulagCell 1"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"lOU" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"lOV" = (
+/obj/machinery/disposal/bin{
+ desc = "A pneumatic waste disposal unit. This one leads to the morgue.";
+ name = "corpse disposal"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lPb" = (
+/obj/structure/railing/corner,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"lPc" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"lPh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
+ },
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"lPl" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"lPq" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lPr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"lPs" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"lPC" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/obj/machinery/duct,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"lPE" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lPJ" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"lPK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/cargo/bitrunning/den)
+"lQc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/office)
+"lQe" = (
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage_shared)
+"lQf" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/multitool,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"lQh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"lQq" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"lQr" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"lQv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external/glass{
+ name = "Garden Access"
+ },
+/turf/open/floor/iron/textured,
+/area/station/service/hydroponics)
+"lQw" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 4;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 4;
+ name = "Supply multi deck pipe adapter"
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"lQz" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"lQE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lQG" = (
+/obj/structure/table/glass,
+/obj/item/flashlight/lamp,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"lQN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"lQO" = (
+/obj/structure/mineral_door/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"lRc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/mechbay)
+"lRd" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"lRf" = (
+/obj/machinery/teleport/station,
+/turf/open/floor/plating,
+/area/station/command/teleporter)
+"lRg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"lRj" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/kirbyplants/organic/plant10,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lRn" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"lRs" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lRx" = (
+/obj/effect/turf_decal/tile/dark_green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"lRy" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 8;
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"lRD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"lRE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"lRF" = (
+/obj/structure/rack,
+/obj/machinery/syndicatebomb/training,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/office)
+"lRI" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Xenobiology External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"lRK" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/crate_abandoned,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lRO" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"lRR" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lRW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-med-passthrough"
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lRZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lSg" = (
+/obj/structure/rack,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/multitool,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"lSu" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lSP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"lSX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/blobstart,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"lTa" = (
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/red/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"lTl" = (
+/obj/structure/closet/crate/grave,
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+"lTs" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/mine/storage)
+"lTC" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"lUb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyer";
+ name = "Medbay"
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/medbay/lobby)
+"lUf" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"lUw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"lUC" = (
+/turf/closed/wall,
+/area/station/maintenance/department/electrical)
+"lUN" = (
+/obj/structure/grille/broken,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/decal/cleanable/generic,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"lUU" = (
+/obj/machinery/door/airlock/external{
+ name = "Internal Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"lVc" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/table/wood/fancy/green,
+/obj/effect/spawner/random/aimodule/harmless,
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 1
+ },
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"lVk" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/mine/eva)
+"lVm" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/engineering/storage_shared)
+"lVr" = (
+/obj/structure/fence/cut/medium{
+ dir = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"lVt" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"lVu" = (
+/obj/machinery/power/emitter/welded{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"lVw" = (
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_green/line,
+/obj/effect/turf_decal/trimline/dark_green/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"lVF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"lVS" = (
+/obj/structure/sign/departments/xenobio/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lVU" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"lVY" = (
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"lWb" = (
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"lWc" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"lWd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door";
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/bridge)
+"lWf" = (
+/obj/structure/mop_bucket/janitorialcart,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lWg" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"lWG" = (
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/maintenance/fore)
+"lWI" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"lXi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lXn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/fore)
+"lXA" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/mining_weather_monitor/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"lXJ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/storage/medkit/brute,
+/turf/open/floor/iron/dark/side{
+ dir = 9
+ },
+/area/station/security/prison/workout)
+"lYd" = (
+/obj/machinery/computer/order_console/mining,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/production)
+"lYg" = (
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"lYR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"lYT" = (
+/obj/structure/table,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"lZe" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"lZi" = (
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"lZQ" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"lZU" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"lZX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"mae" = (
+/obj/structure/statue/snow/snowman,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mao" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "pharmacy_shutters3";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/pharmacy)
+"maB" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"maM" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/soya,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/siding/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"maO" = (
+/obj/machinery/disposal/bin,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"maQ" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"maT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"maY" = (
+/obj/item/wrench,
+/obj/item/weldingtool,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"mbe" = (
+/obj/structure/toilet/greyscale{
+ cistern_open = 1;
+ dir = 1
+ },
+/obj/effect/spawner/random/entertainment/cigar,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"mbk" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"mbm" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/holopad,
+/obj/machinery/light/warm/directional/north,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"mbn" = (
+/obj/machinery/light/directional/north,
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"mbp" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"mbq" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"mbt" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"mbw" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ name = "Atrium"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/navigate_destination/kitchen,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/bar/atrium)
+"mbB" = (
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/bed/medical/emergency,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mbG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mbJ" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"mbK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/research)
+"mbM" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"mbZ" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/obj/machinery/door/airlock/security{
+ name = "Recreation Block"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/side,
+/area/station/security/prison)
+"mcc" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Four"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"mch" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Fitness Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mco" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"mcp" = (
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"mcr" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Monitoring"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"mct" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"mcF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/carpet/black,
+/area/station/security/prison/safe)
+"mcH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth_large,
+/area/station/command/heads_quarters/hos)
+"mcW" = (
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"mde" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/obj/item/kirbyplants/random/dead/research_director,
+/obj/machinery/computer/security/telescreen/rd/directional/west,
+/turf/open/floor/iron/smooth_half,
+/area/station/command/heads_quarters/rd)
+"mdl" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/closet/crate/mod,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"mdo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"mdy" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Morgue Hallway"
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"mdE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/science/explab)
+"mdI" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Turbine";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"mdM" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/gloves/color/grey/protects_cold,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/iron/textured,
+/area/station/ai_monitored/command/storage/eva)
+"mdS" = (
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"mdX" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"mdZ" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/service)
+"mep" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"met" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/red/filled/warning{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"meG" = (
+/obj/item/kirbyplants/random,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"meH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Ordnance Lab Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/plating,
+/area/station/science/ordnance)
+"meL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"meT" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "CO2 to Pure"
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"meX" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"meZ" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"mfc" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"mfD" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"mfH" = (
+/turf/closed/wall/r_wall,
+/area/station/security/brig/upper)
+"mfP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/north,
+/obj/effect/decal/cleanable/vomit/old,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mfV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"mfW" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mfX" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mga" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Pens - Port Mid";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"mgc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/chair/sofa/bench/right,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"mgj" = (
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mgo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mgs" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "riot";
+ name = "Security Shutters"
+ },
+/obj/structure/sign/departments/court/directional/west,
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/fore)
+"mgv" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mgD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"mgS" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"mgU" = (
+/turf/closed/wall/r_wall,
+/area/station/command/heads_quarters/hos)
+"mgZ" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/closet/secure_closet/contraband/armory,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/spawner/random/maintenance/three,
+/obj/effect/spawner/random/contraband/armory,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"mhb" = (
+/obj/effect/turf_decal/trimline/dark/warning{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"mhx" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/security/office)
+"mhQ" = (
+/turf/closed/wall/r_wall,
+/area/station/command/teleporter)
+"mhT" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/flora/grass/both/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/hallway/secondary/exit/departure_lounge)
+"miw" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"miK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"miS" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"miY" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mjf" = (
+/obj/structure/chair/sofa/bench/right{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"mjg" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"mjH" = (
+/obj/structure/table/optable,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"mjI" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"mjO" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/science{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/science{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"mjQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/shovel,
+/obj/item/pickaxe,
+/obj/item/flashlight,
+/turf/open/floor/iron,
+/area/station/service/chapel)
+"mjY" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mka" = (
+/obj/machinery/computer/turbine_computer{
+ dir = 1;
+ mapping_id = "main_turbine"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+"mkb" = (
+/obj/structure/rack,
+/obj/item/clothing/head/costume/fancy,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"mku" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"mkA" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"mkG" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mld" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"mlo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"mlp" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"mly" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/recharge_floor,
+/area/station/maintenance/department/electrical)
+"mlO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"mlR" = (
+/obj/machinery/newscaster/directional/west,
+/obj/item/radio/intercom/directional/west{
+ pixel_y = -31
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"mlS" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mlT" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"mmh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"mmi" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"mmk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/light/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"mml" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"mmn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"mmw" = (
+/obj/machinery/oven/range,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"mmA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"mmB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/medical{
+ name = "Surgery South"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/medical/surgery,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/aft)
+"mmG" = (
+/obj/machinery/button/door/directional/east{
+ id = "xenobio7";
+ name = "Xenobio Pen 7 Blast DOors";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"mmR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mnm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"mns" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"mnu" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"mny" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mnA" = (
+/obj/item/clothing/accessory/pocketprotector,
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/camera{
+ pixel_y = 4;
+ pixel_x = -3
+ },
+/obj/effect/spawner/random/clothing/mafia_outfit,
+/obj/effect/spawner/random/clothing/mafia_outfit,
+/obj/effect/spawner/random/clothing/backpack,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"mnC" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"mnF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"mnW" = (
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"moy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"moB" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"moF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"moG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"moJ" = (
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"moL" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/station/science/server)
+"moX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"mpe" = (
+/obj/structure/cable,
+/obj/machinery/computer/quantum_console,
+/turf/open/floor/iron/dark/smooth_corner,
+/area/station/cargo/bitrunning/den)
+"mpf" = (
+/obj/structure/cable,
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"mpg" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Mining Aux Mechbay"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/plating,
+/area/mine/mechbay)
+"mpl" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"mpn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"mps" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"mpH" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"mpU" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"mqa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/greater)
+"mqd" = (
+/turf/open/floor/iron/half,
+/area/station/service/hydroponics)
+"mqe" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"mqq" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"mqD" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"mqG" = (
+/obj/machinery/computer/warrant{
+ dir = 4
+ },
+/obj/machinery/camera/motion/directional/west{
+ c_tag = "Security - Checkpoint"
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/brig/entrance)
+"mqI" = (
+/obj/machinery/vending/boozeomat/all_access,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mqL" = (
+/obj/machinery/button/door/directional/east{
+ id = "xenobio9";
+ name = "Xenobio Pen 9 Blast DOors";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"mqR" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Judge"
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"mrh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side,
+/area/station/science/research)
+"mrk" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"mro" = (
+/obj/structure/curtain/cloth,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"mry" = (
+/obj/structure/table,
+/obj/effect/spawner/random/trash/food_packaging,
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"mrA" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/computer/operating{
+ dir = 4;
+ name = "Robotics Operating Computer"
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"mrB" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mrD" = (
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/surgery{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/surgery_tray/full,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"mrI" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"mrU" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/structure/sink/directional/east,
+/obj/machinery/requests_console/auto_name/directional/west,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"msb" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"msf" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"msi" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/mine/laborcamp)
+"msn" = (
+/obj/machinery/power/turbine/inlet_compressor{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"msp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/table/reinforced,
+/obj/item/plunger{
+ pixel_x = 3
+ },
+/obj/item/plunger{
+ pixel_x = -3
+ },
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
+"msu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/spawner/random/trash/caution_sign,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"msE" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"msG" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet2";
+ name = "Unit 2"
+ },
+/turf/open/floor/iron/textured,
+/area/station/commons/toilet)
+"msN" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"msT" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4;
+ name = "Infiltrate Control"
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage)
+"msU" = (
+/obj/machinery/requests_console/auto_name/directional/south,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"mta" = (
+/obj/structure/rack,
+/obj/item/lighter,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/computer_disk/engineering{
+ pixel_y = 3;
+ pixel_x = 4
+ },
+/obj/item/computer_disk/engineering{
+ pixel_y = 3;
+ pixel_x = 4
+ },
+/obj/item/computer_disk/engineering{
+ pixel_y = 3;
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/pill/patch/aiuri,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"mtn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"mtq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"mts" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"mty" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/item/seeds/tower,
+/obj/item/seeds/chanter{
+ pixel_y = 3;
+ pixel_x = 3
+ },
+/obj/item/seeds/watermelon{
+ pixel_y = -6;
+ pixel_x = 3
+ },
+/obj/item/seeds/apple{
+ pixel_y = 4;
+ pixel_x = 2
+ },
+/obj/item/seeds/banana,
+/obj/item/seeds/rose{
+ pixel_y = -3;
+ pixel_x = -4
+ },
+/obj/structure/noticeboard/directional/west,
+/obj/item/paper/guides/jobs/hydroponics{
+ pixel_y = 3;
+ pixel_x = -27
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"mtI" = (
+/turf/closed/wall,
+/area/station/science/robotics/lab)
+"mtS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/status_display/door_timer{
+ pixel_x = -32;
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"mtV" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"mua" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"mue" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"mut" = (
+/obj/machinery/hydroponics/soil,
+/obj/machinery/light/directional/east,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"muv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"muy" = (
+/turf/open/openspace,
+/area/station/commons/locker)
+"muK" = (
+/obj/item/stack/cable_coil,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"muP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/departments/rndserver/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"muX" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"mvc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"mvl" = (
+/turf/closed/wall/r_wall,
+/area/station/security/interrogation)
+"mvv" = (
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"mvE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"mvG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"mwh" = (
+/obj/structure/table,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/security/office)
+"mwm" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"mwo" = (
+/obj/machinery/atmospherics/components/unary/passive_vent/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"mwp" = (
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"mwu" = (
+/obj/structure/closet/firecloset,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mwF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/pharmacy)
+"mwQ" = (
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mxg" = (
+/obj/structure/cable,
+/obj/machinery/light/small/dim/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mxj" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port Mix to East Ports"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"mxu" = (
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"mxD" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"mxF" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/fore)
+"mxK" = (
+/obj/structure/fence/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"mxM" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Central Hallway North"
+ },
+/obj/structure/sign/directions/supply{
+ dir = 8;
+ pixel_y = 32
+ },
+/obj/structure/sign/directions/vault{
+ dir = 8;
+ pixel_y = 24
+ },
+/obj/structure/sign/directions/command{
+ pixel_y = 40
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mxQ" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/east,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"mxR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"mxX" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/aft)
+"mxZ" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"mye" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"myn" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"myE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"myJ" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"myO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"myP" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"myQ" = (
+/obj/structure/falsewall,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"myR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"myW" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"myX" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/requests_console/directional/north{
+ department = "Engineering";
+ name = "Engineering Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"myZ" = (
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"mzb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"mzf" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/north{
+ pixel_y = 37
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/wood/large,
+/area/station/service/bar)
+"mzg" = (
+/obj/machinery/light/directional/west,
+/obj/structure/closet/firecloset,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"mzl" = (
+/obj/structure/railing,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"mzr" = (
+/obj/structure/table,
+/obj/item/exodrone{
+ pixel_y = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/drone_bay)
+"mzu" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"mzz" = (
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"mzE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/engineering/atmos/storage/gas)
+"mzM" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/sign/poster/contraband/punch_shit/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"mzP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/brig/entrance)
+"mzX" = (
+/obj/structure/disposalpipe/sorting/mail,
+/obj/effect/mapping_helpers/mail_sorting/service/bar,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mzZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat/hallway";
+ name = "Chamber Hallway Turret Control";
+ pixel_x = 32;
+ pixel_y = -24;
+ req_access = list("minisat")
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"mAc" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mAe" = (
+/turf/open/floor/glass/reinforced,
+/area/station/security/lockers)
+"mAn" = (
+/obj/effect/spawner/random/trash,
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mAM" = (
+/obj/structure/ladder,
+/obj/machinery/light/small/red/directional/west,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"mAN" = (
+/obj/machinery/requests_console/directional/west{
+ department = "Cargo Bay";
+ name = "Cargo Bay Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/machinery/camera/directional/west{
+ c_tag = "Cargo Bay Office"
+ },
+/obj/machinery/rnd/production/techfab/department/cargo,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"mAO" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/security/prison/rec)
+"mBa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"mBh" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mBk" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"mBm" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet1";
+ name = "Unit 1"
+ },
+/turf/open/floor/iron/textured,
+/area/station/commons/toilet)
+"mBr" = (
+/obj/item/toy/plush/lizard_plushie{
+ name = "Wines-And-Dines";
+ pixel_x = 4
+ },
+/obj/item/reagent_containers/cup/glass/bottle{
+ pixel_x = -9
+ },
+/obj/structure/sign/flag/tizira/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mBs" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"mBB" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "ceprivacy";
+ name = "Privacy Shutter"
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/ce)
+"mBL" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/requests_console/auto_name/directional/east,
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"mBO" = (
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/machinery/light/small/dim/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mBP" = (
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"mBQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "rnd";
+ name = "Research Lab Shutters"
+ },
+/obj/machinery/door/window/right/directional/south{
+ name = "Research and Development Desk";
+ req_access = list("science")
+ },
+/obj/item/paper_bin{
+ pixel_x = -9;
+ pixel_y = 7
+ },
+/obj/item/folder{
+ pixel_x = -6
+ },
+/obj/item/pen{
+ pixel_x = -6
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/turf/open/floor/plating,
+/area/station/hallway/primary/starboard)
+"mBV" = (
+/turf/open/misc/asteroid/snow/ice/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"mBX" = (
+/obj/structure/table/wood,
+/obj/machinery/airalarm/directional/east,
+/obj/item/storage/photo_album{
+ pixel_y = -1
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"mBY" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"mCd" = (
+/obj/machinery/computer/operating{
+ dir = 2
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"mCw" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Chamber Observation"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"mCx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/mapping_helpers/dead_body_placer,
+/obj/effect/turf_decal/trimline/neutral/end{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"mCz" = (
+/obj/structure/flora/rock/pile/icy/style_random,
+/obj/machinery/light/small/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"mCK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/construction)
+"mCP" = (
+/obj/machinery/light/small/red/directional/south,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/radio/intercom/chapel/directional/east,
+/turf/open/floor/wood/large,
+/area/station/service/chapel)
+"mCT" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"mDf" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"mDo" = (
+/obj/structure/bed/double,
+/obj/item/bedsheet/black/double,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/carpet/black,
+/area/station/security/prison/safe)
+"mDq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/eva)
+"mDw" = (
+/obj/structure/table/reinforced,
+/obj/effect/landmark/event_spawn,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/item/paper/monitorkey,
+/obj/item/stamp/head/ce,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"mDy" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mDX" = (
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"mEb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/flasher{
+ pixel_y = -30;
+ id = "GulagCell 3"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"mEg" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"mEv" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/status_display/ai/directional/south,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"mEw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"mEx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"mEz" = (
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mEB" = (
+/obj/machinery/light/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"mEI" = (
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"mEJ" = (
+/turf/closed/wall/r_wall,
+/area/station/science/genetics)
+"mEL" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"mEO" = (
+/obj/effect/turf_decal/box/white{
+ color = "#EFB341"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"mEU" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"mEW" = (
+/obj/structure/cable,
+/obj/machinery/button/door/directional/west{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"mFb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/pen{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/folder/white{
+ pixel_x = 2
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"mFj" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"mFl" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"mFt" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Waste In"
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"mFv" = (
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"mFy" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/obj/item/weldingtool,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"mFE" = (
+/turf/closed/wall,
+/area/station/medical/surgery/aft)
+"mFQ" = (
+/obj/machinery/flasher/portable,
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Flash Storage";
+ req_access = list("brig")
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"mFU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"mFY" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/stool/directional/north,
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/status_display/ai/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Laundry Room"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"mGf" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mGm" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/rnd_secure_all,
+/turf/open/floor/iron,
+/area/station/engineering/storage/tech)
+"mGs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/research{
+ name = "Chemical Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"mGu" = (
+/obj/machinery/rnd/server,
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/station/science/server)
+"mGH" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/stairs/north,
+/turf/open/floor/iron/stairs/medium,
+/area/station/cargo/storage)
+"mGJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/mine/eva)
+"mGO" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mHd" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+"mHe" = (
+/obj/machinery/conveyor{
+ dir = 6;
+ id = "mining_internal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/machinery/brm,
+/turf/open/floor/iron,
+/area/mine/production)
+"mHq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/railing,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"mHu" = (
+/obj/machinery/atmospherics/components/tank,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"mHw" = (
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"mHB" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/fore)
+"mHJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"mHR" = (
+/obj/structure/transit_tube/curved{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mIe" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"mIk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"mIs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/chair/stool/bar/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/eighties,
+/area/station/commons/lounge)
+"mIt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "pharmacy_shutters3";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/pharmacy)
+"mIE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"mII" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Delivery Access"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mJa" = (
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"mJj" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mJq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"mJu" = (
+/obj/structure/table/glass,
+/turf/open/floor/iron/chapel{
+ dir = 4
+ },
+/area/station/service/chapel)
+"mJM" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"mJO" = (
+/obj/structure/bed,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/button/door/directional/east{
+ id = "Dorm2";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"mJX" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/prison/rec)
+"mKa" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"mKh" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"mKq" = (
+/obj/structure/closet/secure_closet/evidence,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/evidence)
+"mKA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/structure/tank_holder/oxygen,
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mKC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/aft)
+"mKJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"mKO" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"mLa" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mLd" = (
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/obj/structure/sign/poster/contraband/kudzu/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"mLm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"mLt" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"mLu" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/warden,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"mLJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"mLO" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Pens - Port Aft";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"mLT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"mLV" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"mLX" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 10
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"mMb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mMk" = (
+/obj/machinery/telecomms/message_server/preset,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"mMy" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Permabrig Upper Hallway South";
+ network = list("ss13","prison")
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"mMD" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"mMM" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison)
+"mMS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"mMU" = (
+/obj/machinery/camera/preset/ordnance{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"mNi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"mNt" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"mNy" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"mNB" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"mNF" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"mNJ" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"mNP" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"mNY" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/port/aft)
+"mOc" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/bluespace_vendor/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"mOf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/meter/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"mOo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"mOx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"mOA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"mOL" = (
+/obj/machinery/airalarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"mOM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mPh" = (
+/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/wirecutters,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"mPl" = (
+/obj/machinery/door/airlock/hydroponics/glass{
+ name = "Hydroponics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/obj/machinery/duct,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/hydroponics)
+"mPp" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/poster/official/report_crimes/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"mPq" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"mPr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"mPv" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/storage)
+"mPH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"mPJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"mQb" = (
+/obj/structure/flora/grass/both/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mQg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/rd_office,
+/turf/open/floor/iron/white,
+/area/station/maintenance/aft/greater)
+"mQh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/command/gateway)
+"mQk" = (
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"mQq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"mQG" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/medical/central)
+"mQW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"mRr" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"mRy" = (
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"mRG" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/atmospherics,
+/obj/item/analyzer,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"mRI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Chamber Hallway"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "ai-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"mRU" = (
+/obj/effect/decal/cleanable/insectguts,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mRY" = (
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"mSL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/project)
+"mSM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"mSP" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"mSQ" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/ice,
+/area/icemoon/surface/outdoors/nospawn)
+"mSX" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"mSY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/command/gateway)
+"mTc" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"mTh" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"mTm" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/air_input{
+ dir = 1
+ },
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"mTI" = (
+/obj/structure/sink/kitchen/directional/south{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"mTS" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"mUs" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"mUt" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored/graveyard)
+"mUE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mVp" = (
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"mVD" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mVE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"mVN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/broken/directional/north,
+/obj/machinery/vending/dinnerware,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mVS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"mWf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"mWj" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"mWo" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/engineering/lobby)
+"mWs" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"mWw" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/structure/sign/warning/secure_area/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"mWz" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"mWB" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"mWD" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"mWK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/customs/auxiliary)
+"mWM" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"mWN" = (
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"mWU" = (
+/obj/machinery/light/directional/west,
+/obj/machinery/status_display/evac/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mWY" = (
+/obj/structure/chair/office,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"mXa" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mXe" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"mXi" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/mob/living/simple_animal/bot/secbot/pingsky,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"mXl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/east{
+ c_tag = "Labor Camp Library";
+ network = list("labor")
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"mXA" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"mXK" = (
+/obj/structure/table,
+/obj/structure/reagent_dispensers/servingdish,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"mXN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"mXT" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"mYh" = (
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"mYi" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Infirmary"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/mine/laborcamp)
+"mYp" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "Biohazard Containment Door"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"mYq" = (
+/obj/machinery/requests_console/directional/north{
+ department = "Research Director's Desk";
+ name = "Research Director's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/pdapainter/research,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"mYs" = (
+/obj/machinery/computer/records/security{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/machinery/requests_console/directional/east{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"mYA" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/kirbyplants/random,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"mYG" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/noticeboard/hop{
+ pixel_y = 36
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"mYJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"mYR" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen{
+ pixel_x = -5
+ },
+/obj/item/hand_labeler{
+ pixel_y = -3
+ },
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"mZf" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mZk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"mZm" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"mZn" = (
+/obj/structure/sign/poster/official/soft_cap_pop_art/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/obj/machinery/light/built/directional/east,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"mZu" = (
+/obj/structure/table/glass,
+/obj/item/cultivator,
+/obj/item/hatchet,
+/obj/item/crowbar,
+/obj/item/plant_analyzer,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"mZG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"mZH" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Med-Sci Access";
+ network = list("ss13","medbay","rd");
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/aft/greater)
+"mZI" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Xenobiology Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"mZJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"mZK" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"mZT" = (
+/obj/structure/table/wood,
+/obj/item/cigarette/cigar{
+ pixel_x = 7;
+ pixel_y = 10
+ },
+/obj/item/storage/box/matches,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"mZV" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/t_scanner,
+/obj/item/multitool,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"nae" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "maint1"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"naq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"nav" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"naF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"naP" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"naU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"naX" = (
+/turf/closed/wall/mineral/iron,
+/area/station/engineering/atmos/mix)
+"nbi" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"nbj" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"nbm" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 6
+ },
+/area/station/security/prison/safe)
+"nbp" = (
+/turf/closed/wall/r_wall,
+/area/station/security/office)
+"nbq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/command/heads_quarters/rd)
+"nbs" = (
+/obj/structure/fireplace{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/light_switch/directional/north{
+ pixel_x = 9
+ },
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"nbw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"nbz" = (
+/obj/structure/chair/wood,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"nbB" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"nbC" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"nbG" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/station/service/chapel)
+"nbJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"nbK" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Departure Lounge Holding Area"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"nbM" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"nbT" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/storage/primary)
+"nbW" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"nbZ" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nce" = (
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nch" = (
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/safety_internals/directional/north,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 4
+ },
+/area/station/ai_monitored/command/storage/eva)
+"nci" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"ncl" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"nct" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ncB" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Walkway"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigentrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"ncR" = (
+/turf/closed/wall/r_wall,
+/area/station/security/courtroom)
+"ncT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/evidence)
+"ndb" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/computer/atmos_control/ordnancemix{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"ndl" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"ndz" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ndA" = (
+/obj/structure/fence/corner{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"ndC" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"ndH" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"ndJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"ndO" = (
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nea" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hos)
+"nef" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/side{
+ dir = 5
+ },
+/area/station/security/prison)
+"nej" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"neq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/effect/turf_decal/siding/thinplating,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ner" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"neu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"neE" = (
+/obj/machinery/duct,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"neF" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/grenade/chem_grenade/smart_metal_foam,
+/obj/item/grenade/chem_grenade/smart_metal_foam,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -11;
+ pixel_y = 1
+ },
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -9;
+ pixel_y = -4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"neR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"nfd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"nfj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"nfk" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nfn" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"nfr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"nfB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"nfD" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"nfE" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 1
+ },
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/fore)
+"nfF" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"nfS" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access = list("chapel_office");
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/service/chapel)
+"nfU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ngb" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/atmospherics,
+/obj/item/holosign_creator/atmos,
+/obj/item/holosign_creator/atmos,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"ngj" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 9
+ },
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/dark/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner,
+/area/mine/living_quarters)
+"ngl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/mine/production)
+"ngo" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8;
+ name = "Exfiltrate Port"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"ngM" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/fence/door{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"ngZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"nhf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"nhg" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"nhw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/obj/structure/tank_holder/extinguisher,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"nhI" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Research Division Genetics Monkey Pen";
+ network = list("ss13","rd")
+ },
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/engine,
+/area/station/science/genetics)
+"nhO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"nhT" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Labor Camp External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"nia" = (
+/obj/machinery/door/poddoor/shutters/window{
+ dir = 8;
+ id = "drone_bay";
+ name = "Drone Bay Shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"nid" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/machinery/vending/medical,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nit" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"niu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"niy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"niE" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"niG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva)
+"niN" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"niO" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/machinery/reagentgrinder{
+ pixel_y = 9;
+ pixel_x = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"niU" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/aft)
+"niY" = (
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"niZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"njb" = (
+/obj/structure/reagent_dispensers/fueltank/large,
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"nji" = (
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"njj" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/kitchen)
+"njm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/transit_tube)
+"njA" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"njD" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Gateway"
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 8
+ },
+/obj/item/emergency_bed{
+ pixel_x = -1
+ },
+/obj/item/emergency_bed{
+ pixel_x = 4
+ },
+/obj/item/storage/medkit/regular{
+ pixel_y = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"njJ" = (
+/turf/closed/wall,
+/area/mine/laborcamp)
+"njO" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"njT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"nka" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/west,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"nkb" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"nkh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"nks" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"nkE" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nkH" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"nkO" = (
+/obj/structure/table,
+/obj/item/storage/box/matches,
+/obj/item/storage/fancy/cigarettes,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nkP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"nlp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"nlr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/construction)
+"nlJ" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"nlO" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"nlP" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"nlR" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"nlS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/medical/chemistry)
+"nlT" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AftH";
+ location = "AIW"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nmj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio4";
+ name = "Xenobio Pen 4 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"nmm" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/hallway/secondary/exit/departure_lounge)
+"nmo" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"nmq" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/table/reinforced,
+/obj/effect/spawner/random/engineering/tool{
+ pixel_x = -11
+ },
+/obj/effect/spawner/random/engineering/tool{
+ pixel_x = 5;
+ pixel_y = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/mechbay)
+"nmr" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/cultivator,
+/obj/effect/spawner/random/contraband/cannabis,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"nmx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"nmz" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/science/ordnance/office)
+"nmC" = (
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"nmD" = (
+/obj/structure/sign/departments/holy/directional/west,
+/turf/open/openspace,
+/area/station/service/chapel)
+"nmH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"nmI" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"nmL" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"nmN" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/effect/landmark/navigate_destination/library,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nnj" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"nnl" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden,
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"nnn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Fuel Pipe to Incinerator"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"nnp" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 8;
+ name = "Supply multi deck pipe adapter"
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 8;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"nnw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"nnx" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"nnB" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"nnR" = (
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"nof" = (
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+"noi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva)
+"nom" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nor" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/large,
+/area/station/service/hydroponics/garden)
+"nou" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"noJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/poster/official/help_others/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"noM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"noR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"noW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"noX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/engineering/lobby)
+"noY" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"npa" = (
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"npb" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"npn" = (
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"npo" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"npq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"npr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"npu" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/black{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/obj/item/clothing/mask/breath,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/command/storage/eva)
+"npx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/blobstart,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"npy" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet/blue,
+/area/station/hallway/secondary/entry)
+"npB" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"npD" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/aft/greater)
+"npH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/cup/bucket,
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"npJ" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/violet/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"npL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"npP" = (
+/obj/machinery/door/airlock{
+ id_tag = "commissarydoor";
+ name = "Commissary"
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/vacant_room/commissary)
+"npT" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"nqb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nqd" = (
+/obj/structure/table/optable,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"nqn" = (
+/obj/structure/ladder,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nqw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"nqD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"nqP" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Research Division West";
+ network = list("ss13","rd")
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"nrm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"nrA" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nrC" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/south{
+ id = "viroview";
+ name = "Viewport Control";
+ pixel_x = 5;
+ pixel_y = -21
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nrF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"nrG" = (
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"nrH" = (
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering Emitter Room Port";
+ network = list("ss13","engine")
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"nrJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"nsj" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"nsp" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nsr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"nst" = (
+/obj/item/trash/sosjerky,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"nsu" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"nsv" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"nsL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/processing)
+"nsO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"nsQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"nsZ" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/office)
+"nta" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"ntl" = (
+/turf/closed/wall/r_wall,
+/area/station/service/lawoffice)
+"ntm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"ntq" = (
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ req_access = list("brig")
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/processing)
+"ntE" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/aquarium_kit,
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/dark,
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+"ntK" = (
+/obj/structure/flora/rock/icy/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ntO" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sign/warning/deathsposal/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ntT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"nub" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"nud" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"nuj" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nul" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Public Mining Storage";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"nup" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"nuD" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"nuN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/west{
+ pixel_y = 30
+ },
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"nuX" = (
+/obj/structure/flora/grass/both,
+/obj/structure/flora/bush/snow/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nvh" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/storage)
+"nvr" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"nvs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"nvx" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/folder/yellow,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"nvy" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/cargo/warehouse)
+"nvB" = (
+/obj/structure/fence/door{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"nvE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mop_bucket/janitorialcart{
+ dir = 4
+ },
+/obj/item/mop,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"nvI" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"nvU" = (
+/obj/effect/mapping_helpers/airlock/access/all/command/eva,
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/iron/textured,
+/area/station/hallway/secondary/entry)
+"nvW" = (
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nvX" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nvY" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/landmark/start/geneticist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"nwn" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"nwr" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"nwA" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/machinery/light/warm/directional/north,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"nwD" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nwF" = (
+/obj/structure/chair/sofa/bench{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"nwT" = (
+/turf/closed/wall,
+/area/station/commons/vacant_room/office)
+"nxa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"nxe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"nxm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"nxD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/filingcabinet,
+/obj/item/toy/figure/qm,
+/obj/item/reagent_containers/cup/glass/bottle/whiskey,
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass,
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"nxM" = (
+/turf/closed/wall,
+/area/station/maintenance/department/medical/morgue)
+"nxP" = (
+/obj/structure/gulag_vent/ice,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"nxU" = (
+/obj/machinery/status_display/evac/directional/east,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"nxW" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L2"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nxY" = (
+/obj/machinery/button/door/directional/west{
+ id = "Disposal Exit";
+ name = "Disposal Vent Control";
+ req_access = list("maint_tunnels")
+ },
+/obj/structure/chair/stool/directional/south{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/computer/pod/old/mass_driver_controller/trash{
+ pixel_x = -36
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"nyg" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/random/directional/south,
+/turf/open/floor/plating,
+/area/station/construction)
+"nyh" = (
+/obj/structure/sign/departments/maint/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"nyl" = (
+/obj/machinery/door/morgue{
+ name = "Private Study";
+ req_access = list("library")
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"nyn" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AIE";
+ location = "AftH"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"nyA" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/transit_tube)
+"nyC" = (
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/chapel)
+"nyH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"nyJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nyP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"nyQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"nyR" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"nyT" = (
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"nyX" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/status_display/evac/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"nyZ" = (
+/obj/structure/fence/corner{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nza" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"nzj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"nzl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/item/radio/intercom/directional/east{
+ pixel_y = -6
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"nzn" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"nzp" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"nzq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"nzs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"nzy" = (
+/obj/machinery/computer/atmos_control/mix_tank{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"nzA" = (
+/obj/machinery/portable_atmospherics/pipe_scrubber,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"nzB" = (
+/obj/effect/turf_decal/trimline/blue/warning{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"nzG" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"nzI" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/engine_smes)
+"nzK" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/head/utility/welding,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/medical/chemistry)
+"nzN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/spawner/random/structure/tank_holder,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"nzU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"nzV" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nAg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon/keep_below,
+/area/station/maintenance/port/lesser)
+"nAr" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"nAv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line,
+/turf/open/floor/iron/dark/side,
+/area/station/security/prison)
+"nAw" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/noticeboard/ce{
+ pixel_y = 36
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"nAx" = (
+/obj/structure/flora/grass/both/style_random,
+/obj/item/stack/cable_coil/five,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nAD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"nAH" = (
+/turf/open/openspace/icemoon/keep_below,
+/area/station/hallway/secondary/entry)
+"nAN" = (
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"nAX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Arrivals Dock South"
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"nBe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/crowbar,
+/obj/structure/sign/warning/cold_temp/directional/west,
+/turf/open/floor/iron,
+/area/station/service/chapel)
+"nBj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"nBk" = (
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"nBo" = (
+/obj/effect/landmark/start/ai/secondary,
+/obj/item/radio/intercom/directional/north{
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel"
+ },
+/obj/item/radio/intercom/directional/south{
+ freerange = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel"
+ },
+/obj/item/radio/intercom/directional/east{
+ freerange = 1;
+ listening = 0;
+ name = "Common Channel"
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"nBt" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/item/stack/package_wrap{
+ pixel_y = 2
+ },
+/obj/item/book/manual/chef_recipes,
+/obj/item/holosign_creator/robot_seat/restaurant,
+/obj/structure/rack,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"nBE" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nBG" = (
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nBN" = (
+/obj/machinery/atmospherics/components/tank/air,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/starboard/aft)
+"nBS" = (
+/obj/structure/table/wood,
+/obj/item/storage/crayons,
+/obj/item/storage/fancy/candle_box{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"nCb" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/lithium{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/iron{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 1
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"nCd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"nCh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"nCs" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"nCu" = (
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"nCD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"nCP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"nCQ" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"nCV" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"nDd" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nDp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"nDq" = (
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"nDw" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"nDy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/fruit_bowl/directional/north,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/maintenance/port/aft)
+"nDA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"nDE" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/garden)
+"nDJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"nDV" = (
+/obj/machinery/shower/directional/south,
+/obj/effect/spawner/random/contraband/permabrig_weapon,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"nDY" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/commons/storage/art)
+"nEa" = (
+/obj/item/stack/cable_coil/five,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nEc" = (
+/obj/structure/table/glass,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/north,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"nEo" = (
+/obj/machinery/light/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"nEq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/garbage,
+/obj/effect/spawner/random/trash/caution_sign,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"nEs" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/processing)
+"nEA" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"nEC" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/security/brig)
+"nEV" = (
+/obj/machinery/vending/wardrobe/sec_wardrobe,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"nFc" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"nFk" = (
+/obj/effect/landmark/start/cyborg,
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/structure/cable/layer3,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"nFn" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"nFt" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "Bar and Kitchen"
+ },
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/textured,
+/area/station/maintenance/starboard/fore)
+"nFz" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"nFF" = (
+/obj/structure/table,
+/obj/item/assembly/signaler{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/assembly/signaler,
+/obj/item/assembly/prox_sensor{
+ pixel_x = -13;
+ pixel_y = -1
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"nFG" = (
+/obj/structure/table,
+/obj/item/relic,
+/obj/effect/spawner/random/maintenance,
+/obj/item/screwdriver,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"nFL" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"nFN" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"nFO" = (
+/obj/structure/transit_tube/horizontal,
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nFU" = (
+/obj/structure/chair/stool/directional/west,
+/obj/item/trash/energybar,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/official/work_for_a_future/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"nGd" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"nGo" = (
+/obj/machinery/vending/games,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"nGv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/paper_bin/construction,
+/obj/item/storage/crayons{
+ pixel_y = -2;
+ pixel_x = -3
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"nGA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nGC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/confetti,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"nGG" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 6
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"nGK" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/spawner/random/armory/barrier_grenades,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"nGU" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/smooth_edge{
+ dir = 1
+ },
+/area/station/security/lockers)
+"nGY" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Mining B-2 Hallway";
+ network = list("ss13", "mine")
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"nHe" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"nHj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/eva)
+"nHs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"nHQ" = (
+/obj/structure/closet/firecloset,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"nIb" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nId" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/barricade/wooden,
+/turf/open/floor/eighties/red,
+/area/station/security/prison/safe)
+"nIl" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"nIx" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/starboard/aft)
+"nJd" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"nJo" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"nJp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Engineering Storage"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/engine_equipment,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"nJy" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"nJH" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm2";
+ name = "Dorm 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"nJI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"nJK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nJL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/eva)
+"nJT" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"nJX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/science)
+"nKa" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/medical)
+"nKb" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Secure Art Exhibition";
+ req_access = list("library")
+ },
+/obj/effect/spawner/random/structure/table_fancy,
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"nKk" = (
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"nKl" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"nKr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"nKw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth,
+/area/station/engineering/lobby)
+"nKK" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_y = 4
+ },
+/obj/item/pen/red,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"nKL" = (
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"nKR" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"nKV" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/button/door/directional/north{
+ id = "Dozer_Launch";
+ name = "Mech Bay Door Control";
+ pixel_x = 4;
+ pixel_y = 3;
+ req_access = list("robotics")
+ },
+/obj/item/folder/red{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/item/paper{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/pen{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"nKW" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/obj/item/circuitboard/computer/operating,
+/obj/structure/mirror/broken/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"nKY" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"nLb" = (
+/obj/machinery/blackbox_recorder,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"nLe" = (
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nLB" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"nLE" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/maintenance/port/fore)
+"nLH" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"nLW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/line,
+/turf/open/floor/iron/dark/side,
+/area/station/security/prison/workout)
+"nLY" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nMb" = (
+/obj/structure/toilet{
+ pixel_y = 12
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/landmark/start/psychologist,
+/turf/open/floor/iron/freezer,
+/area/station/medical/break_room)
+"nMc" = (
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/station/medical/virology)
+"nMj" = (
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nMu" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"nMv" = (
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior{
+ name = "Burn Chamber Interior Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"nMw" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"nMx" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"nMA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"nME" = (
+/obj/item/clothing/head/utility/hardhat,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nMH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"nMN" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Access Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"nMP" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"nMR" = (
+/obj/effect/gibspawner/human/bodypartless,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nMT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"nNe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"nNg" = (
+/mob/living/basic/goat/pete{
+ desc = "Not known for their pleasant disposition. This one seems a bit more hardy to the cold.";
+ habitable_atmos = list("min_oxy"=1,"max_oxy"=0,"min_plas"=0,"max_plas"=1,"min_co2"=0,"max_co2"=5,"min_n2"=0,"max_n2"=0);
+ minimum_survivable_temperature = 150;
+ name = "Snowy Pete"
+ },
+/turf/open/misc/ice/coldroom,
+/area/station/service/kitchen/coldroom)
+"nNi" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nNn" = (
+/turf/closed/wall,
+/area/station/security/prison/rec)
+"nNr" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nNs" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/clothing/glasses/meson/engine,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"nNu" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"nNB" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"nNM" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nNZ" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "Supply Dock Loading Door";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"nOa" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"nOb" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/processing)
+"nOh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"nOj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/noticeboard/staff{
+ pixel_y = 36
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nOl" = (
+/obj/structure/bed,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/bedsheet,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/east{
+ id = "Dorm4";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"nOx" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"nOG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering Supermatter Port";
+ network = list("ss13","engine")
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"nOH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"nOQ" = (
+/obj/machinery/suit_storage_unit/security,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - EVA"
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"nOS" = (
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"nPc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"nPo" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/science{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/clothing/shoes/winterboots{
+ pixel_x = -7;
+ pixel_y = -1
+ },
+/obj/item/biopsy_tool{
+ pixel_x = 8;
+ pixel_y = 3
+ },
+/obj/item/gps/mining{
+ pixel_x = -7;
+ pixel_y = -3
+ },
+/obj/item/knife/combat/survival{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"nPs" = (
+/obj/structure/bodycontainer/morgue,
+/obj/machinery/camera/directional/south{
+ c_tag = "Morgue South";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"nPt" = (
+/obj/structure/chair/stool/directional/east,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nPI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nPS" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"nQd" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nQf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/office)
+"nQh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"nQj" = (
+/obj/machinery/portable_atmospherics/pipe_scrubber,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"nQr" = (
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nQu" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/large,
+/area/station/commons/storage/primary)
+"nQv" = (
+/obj/item/rcl/pre_loaded,
+/obj/item/stack/pipe_cleaner_coil/random,
+/obj/item/stack/pipe_cleaner_coil/random,
+/obj/item/stack/pipe_cleaner_coil/random,
+/obj/machinery/newscaster/directional/west,
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/commons/storage/art)
+"nQH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"nQL" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nQO" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AIW";
+ location = "QM"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nQU" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/item/stack/sheet/plasteel{
+ amount = 25;
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"nQW" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"nRc" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"nRd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"nRm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"nRn" = (
+/obj/machinery/door/window/left/directional/south{
+ req_access = list("kitchen");
+ name = "The Ice Box"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"nRq" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/bureaucracy/birthday_wrap,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"nRt" = (
+/obj/machinery/door/airlock/mining/glass{
+ id_tag = "innercargo";
+ name = "Bitrunning Den"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den,
+/turf/open/floor/iron,
+/area/station/cargo/bitrunning/den)
+"nRv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"nRE" = (
+/obj/machinery/door/airlock/freezer{
+ desc = "The freezer where the chef keeps all the stuff that needs to be kept cold. Ice cold.";
+ name = "The Ice Box"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/service/kitchen/coldroom)
+"nRV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nRW" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/donkpockets{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"nRX" = (
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"nSc" = (
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nSk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"nSl" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nSo" = (
+/obj/structure/flora/grass/green/style_random,
+/obj/structure/flora/bush/snow/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nSr" = (
+/obj/effect/spawner/random/entertainment/arcade{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"nSw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/layer_manifold/brown/visible,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"nSC" = (
+/obj/structure/table,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/microwave,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"nSD" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"nSF" = (
+/obj/structure/rack,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"nSH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/processing)
+"nSK" = (
+/obj/structure/sign/departments/xenobio/directional/west,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nST" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nSU" = (
+/obj/structure/sign/poster/random/directional/north,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nTp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/brig/entrance)
+"nTK" = (
+/obj/structure/table/glass,
+/obj/machinery/barsign{
+ chosen_sign = "thecavern";
+ icon_state = "thecavern";
+ pixel_y = 32
+ },
+/obj/item/reagent_containers/cup/glass/bottle/vermouth{
+ pixel_x = 10;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/cup/glass/bottle/juice/pineapplejuice{
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/cup/glass/bottle/juice/orangejuice{
+ pixel_x = 15
+ },
+/obj/item/reagent_containers/cup/glass/bottle/vodka{
+ pixel_x = -11;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/cup/soda_cans/tonic,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"nTL" = (
+/obj/structure/transit_tube,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/transit_tube)
+"nTO" = (
+/turf/closed/wall/r_wall,
+/area/mine/laborcamp/security)
+"nTV" = (
+/obj/structure/table/reinforced,
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/radio/off,
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/red/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"nTX" = (
+/obj/structure/flora/grass/both/style_random,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"nUg" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side,
+/area/station/security/processing)
+"nUh" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"nUi" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/mine/mechbay)
+"nUj" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"nUr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/ai_monitored/command/storage/eva)
+"nUJ" = (
+/obj/machinery/flasher/directional/east{
+ id = "brigentry"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"nUL" = (
+/obj/structure/sign/poster/official/random/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"nVc" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"nVe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"nVr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/service/library)
+"nVx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/textured,
+/area/station/service/hydroponics)
+"nVB" = (
+/obj/effect/turf_decal/trimline/dark/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"nVC" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"nVJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"nVR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/maintenance/port/aft)
+"nWe" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/openspace,
+/area/station/science/research)
+"nWf" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/noticeboard/directional/east,
+/obj/item/plate,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"nWn" = (
+/obj/structure/tank_holder/extinguisher,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_y = -32;
+ spawn_loot_chance = 50
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"nWG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nWH" = (
+/turf/closed/wall,
+/area/station/maintenance/department/cargo)
+"nWK" = (
+/obj/structure/cable,
+/obj/machinery/holopad,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"nWM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/mining_weather_monitor/directional/north,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/hallway/secondary/entry)
+"nXb" = (
+/turf/closed/wall,
+/area/icemoon/surface/outdoors/nospawn)
+"nXg" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"nXj" = (
+/obj/machinery/vending/sovietsoda,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/safe)
+"nXl" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"nXH" = (
+/obj/structure/bodycontainer/crematorium{
+ id = "crematoriumChapel"
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/service/chapel/office)
+"nXO" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nXQ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/commissary)
+"nXV" = (
+/obj/machinery/door/airlock/security{
+ name = "Permabrig Visitation"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/visit)
+"nYm" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nYn" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"nYv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"nYz" = (
+/obj/structure/flora/rock/pile/icy/style_random,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+"nYZ" = (
+/obj/item/storage/bag/trash,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"nZb" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"nZd" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Trial Transfer";
+ name = "Transfer Blast Door"
+ },
+/obj/machinery/door/airlock/public/glass{
+ name = "Trial Transfer"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"nZf" = (
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/pen,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"nZh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/supply)
+"nZA" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/obj/item/stock_parts/subspace/amplifier,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"nZC" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"nZH" = (
+/obj/structure/lattice/catwalk,
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"nZN" = (
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"nZU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nZY" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet2";
+ name = "Unit 2"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"oad" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/security/prison)
+"oaG" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/decal/cleanable/glass,
+/obj/item/shard,
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 5;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/dark/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner,
+/area/mine/living_quarters)
+"oaP" = (
+/obj/machinery/door/airlock/research{
+ name = "Crater Observation Room"
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"oaQ" = (
+/obj/structure/transit_tube,
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oaR" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"oaX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"obb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"obe" = (
+/obj/structure/fence/corner{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"obj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"obl" = (
+/obj/effect/spawner/random/structure/crate_abandoned,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Chapel Electrical Maintenace Upper"
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/fore)
+"obo" = (
+/obj/machinery/light_switch/directional/north{
+ pixel_x = -7
+ },
+/obj/structure/table,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/obj/machinery/cell_charger,
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"obt" = (
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"obu" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"obv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"obF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"obG" = (
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"obK" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"obQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/modular_computer/preset/civilian{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"obU" = (
+/obj/machinery/light_switch/directional/north{
+ pixel_x = 6
+ },
+/obj/machinery/button/door/directional/north{
+ id = "botany_chasm_and_wolf_shutters";
+ name = "Exterior Shutters";
+ pixel_x = -4
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/hydroponics)
+"obZ" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Test Chamber Access";
+ network = list("ss13","test","rd","xeno")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ocu" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"ocD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ocJ" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/item/storage/box/syringes{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"ocS" = (
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/fluff/tram_rail,
+/obj/structure/lattice/catwalk,
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"ocY" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"odd" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 6";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"odw" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ody" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"odz" = (
+/obj/machinery/computer/arcade/orion_trail,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"odC" = (
+/obj/structure/cable,
+/obj/item/radio/intercom/prison/directional/east,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"odF" = (
+/obj/structure/railing,
+/turf/open/openspace,
+/area/station/service/kitchen/coldroom)
+"odN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"odR" = (
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/science/research)
+"odW" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"oed" = (
+/obj/machinery/door/window/right/directional/east{
+ name = "Robotics Surgery";
+ req_access = list("robotics")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"oeh" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Security Escape Airlock";
+ space_dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oex" = (
+/turf/open/openspace/icemoon/keep_below,
+/area/station/maintenance/department/medical/morgue)
+"oeM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"oeT" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/computer/pandemic,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"oeW" = (
+/obj/structure/table/glass,
+/obj/item/stack/medical/gauze{
+ pixel_x = 2
+ },
+/obj/item/stack/medical/mesh,
+/obj/item/stack/medical/suture,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"ofc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ofi" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/bluespace_vendor/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ofl" = (
+/obj/structure/chair{
+ desc = "Aw geez, I wonder what the chef's cooking up in there!";
+ dir = 1;
+ name = "The Peanut's Gallery"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ofz" = (
+/obj/structure/ore_box,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"ofE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/security/general,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"ofJ" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/paper/fluff/jobs/prisoner/letter{
+ pixel_x = -8;
+ pixel_y = 9
+ },
+/obj/item/restraints/handcuffs{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"ofR" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"ogd" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"ogl" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"ogu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"ogy" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "EVA Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/command/eva,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/ai_monitored/command/storage/eva)
+"ogF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"ogL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 9
+ },
+/area/station/security/prison)
+"oha" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"ohb" = (
+/obj/machinery/medical_kiosk,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/departments/medbay/alt/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"ohp" = (
+/turf/open/floor/glass,
+/area/station/maintenance/department/medical/central)
+"oht" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/corner{
+ dir = 1
+ },
+/area/station/engineering/lobby)
+"ohx" = (
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ohI" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"ohO" = (
+/obj/structure/fluff/tram_rail,
+/obj/structure/lattice/catwalk,
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"ohS" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Upper Permabrig Hallway Central";
+ network = list("ss13","prison")
+ },
+/turf/open/openspace,
+/area/station/security/prison)
+"ohU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"oic" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/medical/chemistry)
+"oie" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"oif" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall,
+/area/icemoon/underground/explored)
+"oih" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"oik" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"oio" = (
+/obj/machinery/newscaster/directional/east,
+/obj/structure/bed/medical/anchored{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"oiy" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"oiz" = (
+/obj/structure/urinal/directional/north,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"oiC" = (
+/obj/effect/spawner/random/engineering/canister,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oiD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/camera/directional/north{
+ c_tag = "Arrivals Dock North"
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"oiI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"oiM" = (
+/obj/structure/dresser,
+/obj/structure/mirror/directional/north,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Backstage"
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"oiO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"oiT" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"oiU" = (
+/obj/structure/closet/crate,
+/obj/item/food/canned/beans,
+/obj/item/food/canned/beans,
+/obj/item/food/canned/beans,
+/obj/item/reagent_containers/cup/glass/waterbottle{
+ pixel_x = 7;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/glass/waterbottle{
+ pixel_x = 7;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/glass/waterbottle{
+ pixel_x = 7;
+ pixel_y = 6
+ },
+/mob/living/basic/mouse/white,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"oiX" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/pdapainter/medbay,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"oiZ" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/vending/wardrobe/science_wardrobe,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"oje" = (
+/turf/open/misc/asteroid/snow/coldroom,
+/area/station/service/kitchen/coldroom)
+"ojf" = (
+/obj/structure/lattice/catwalk,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"oji" = (
+/obj/structure/table,
+/obj/item/radio{
+ pixel_x = -3
+ },
+/obj/item/pickaxe,
+/obj/item/flashlight,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/medical/morgue)
+"ojk" = (
+/obj/item/stack/ore/iron,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"ojv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"ojy" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"ojF" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"ojW" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"okb" = (
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"okc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "mining-aux-mechbay-external"
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining Mech Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/large,
+/area/mine/mechbay)
+"okl" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"okx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ name = "Warden Desk";
+ req_access = list("armory")
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/window/left/directional/north{
+ name = "Warden Desk"
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"okz" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/hallway/primary/central/fore)
+"okG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/primary/starboard)
+"okH" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"okU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"olf" = (
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"olI" = (
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/medicine{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/book/manual/wiki/surgery{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"olM" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/flashlight/lamp{
+ start_on = 0
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"olQ" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/command/nuke_storage)
+"olR" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/lesser)
+"olV" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet/black,
+/area/station/security/prison/safe)
+"olY" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security EVA"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/smooth,
+/area/station/security/processing)
+"omg" = (
+/obj/effect/spawner/random/clothing/wardrobe_closet_colored,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"omh" = (
+/turf/closed/wall,
+/area/station/maintenance/starboard/upper)
+"omi" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen,
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"omk" = (
+/turf/open/floor/glass/reinforced,
+/area/station/security/office)
+"omo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"omG" = (
+/obj/structure/table,
+/obj/item/flashlight/lamp,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/item/paper/fluff/jobs/engineering/frequencies,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"omH" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"omJ" = (
+/obj/machinery/door/airlock{
+ name = "Perma Overlook Closet"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"omP" = (
+/obj/machinery/door/airlock{
+ name = "Cleaning Closet"
+ },
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"omT" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high/empty,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"ond" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"one" = (
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/engineering/atmos/project)
+"ong" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/turf/open/floor/vault,
+/area/station/security/prison/rec)
+"oni" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"ons" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"onx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"onJ" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/security/courtroom)
+"onP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"onQ" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"onT" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ooa" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"ooe" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"ool" = (
+/obj/effect/mapping_helpers/iannewyear,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"ooo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/processor/slime,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"oot" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ooy" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/tank_holder/extinguisher,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"ooG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"ooL" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ooR" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/radio/intercom/directional/north,
+/obj/item/storage/fancy/donut_box{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ooU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"ooV" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"ooW" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/prison/rec)
+"opc" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"opm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "heads_meeting";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/meeting_room)
+"opn" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"opt" = (
+/obj/structure/closet/athletic_mixed,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"opu" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"opy" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/item/kirbyplants/random/fullysynthetic{
+ pixel_x = 10;
+ pixel_y = 19
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Mining Break Room";
+ network = list("ss13", "mine")
+ },
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"opB" = (
+/obj/structure/table,
+/obj/item/raw_anomaly_core/random{
+ pixel_x = -7
+ },
+/obj/item/raw_anomaly_core/random{
+ pixel_y = 5
+ },
+/obj/item/raw_anomaly_core/random{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"opE" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"opI" = (
+/obj/machinery/microwave{
+ pixel_y = 7
+ },
+/obj/structure/table,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"opN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"opP" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"opS" = (
+/obj/machinery/vending/wardrobe/sec_wardrobe,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"opU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing/corner/end/flip,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oqb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"oqc" = (
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage)
+"oqg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"oqz" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_green,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"oqC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"oqE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance"
+ },
+/turf/open/floor/plating,
+/area/station/service/kitchen/coldroom)
+"oqJ" = (
+/obj/structure/sign/warning/docking/directional/north,
+/obj/structure/flora/grass/green/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oqL" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/prison/work)
+"oqM" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Pens Observation - Starboard Fore";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"oqN" = (
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"oqT" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/sofa/right/brown{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"oqY" = (
+/obj/effect/spawner/random/structure/closet_private,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"orq" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/button/door/directional/south{
+ id = "AuxToilet4";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_x = -32;
+ spawn_loot_chance = 50
+ },
+/obj/machinery/recharge_station,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"ort" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"orv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"orE" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_y = -4
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/medical/chem_storage)
+"orK" = (
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"orS" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/dark/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/mine/living_quarters)
+"orV" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"osd" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"ose" = (
+/obj/machinery/vending/tool,
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/poster/official/build/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"osm" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"osn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"osr" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"osI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"osO" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"otd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ote" = (
+/obj/structure/closet/emcloset{
+ anchored = 1
+ },
+/obj/structure/sign/warning/cold_temp/directional/south,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"otf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/stairs/medium,
+/area/station/commons/dorms/laundry)
+"ots" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/security/prison/mess)
+"otw" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Courtroom Audience"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"oty" = (
+/obj/structure/rack,
+/obj/machinery/light/cold/directional/north,
+/obj/item/storage/box/bandages{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/healthanalyzer,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"otG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"otK" = (
+/obj/machinery/light_switch/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"otM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/cc64k_ad/directional/north,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/maintenance/port/fore)
+"otW" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sink/directional/east,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oua" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"ouc" = (
+/obj/structure/table,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"ouk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"oul" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/treatment_center)
+"ouq" = (
+/obj/structure/chair/plastic{
+ dir = 8
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Mining B-1 Crater Observatory Access";
+ network = list("ss13", "mine")
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"ous" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "N2O Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ouK" = (
+/obj/machinery/space_heater,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"ouP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ouU" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"ouW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/musician/piano/random_piano,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"ouX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/personal/patient{
+ name = "test subject's closet"
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"ovm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"ovt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ovx" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/obj/machinery/requests_console/directional/west{
+ department = "Head of Personnel's Desk";
+ name = "Head of Personnel's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"ovy" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ovz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/kirbyplants/random/dead,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"ovB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/hobo_squat,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ovP" = (
+/turf/open/genturf/orange,
+/area/icemoon/underground/unexplored/no_rivers)
+"ovQ" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"ovV" = (
+/obj/effect/landmark/start/security_officer,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/lockers)
+"owf" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"owk" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"owr" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"owv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/mob/living/basic/lizard/wags_his_tail,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"owC" = (
+/turf/closed/wall/r_wall,
+/area/station/science/server)
+"owG" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"owK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oxh" = (
+/obj/machinery/light/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"oxi" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "MiniSat External NorthEast";
+ network = list("minisat");
+ start_active = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oxB" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oxO" = (
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"oxR" = (
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oxU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"oxV" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/service/chapel)
+"oyb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"oyd" = (
+/obj/structure/chair/sofa/bench/left{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"oyj" = (
+/obj/structure/table,
+/obj/item/storage/box,
+/obj/item/storage/box,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/multitool,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"oyp" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"oyv" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"oyy" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"oyz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 8;
+ filter_type = list(/datum/gas/nitrogen)
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"oyB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"oyC" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/lesser)
+"oyH" = (
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"oyL" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"oyM" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"oyW" = (
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"oyX" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oyY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"ozb" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"ozk" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron/textured,
+/area/station/commons/toilet)
+"ozo" = (
+/obj/effect/landmark/carpspawn,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ozw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"ozA" = (
+/obj/structure/closet/secure_closet/research_director,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/smooth_half,
+/area/station/command/heads_quarters/rd)
+"ozD" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"ozE" = (
+/obj/structure/closet/emcloset,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"ozH" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"ozN" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/obj/structure/bed/medical/emergency,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"ozU" = (
+/obj/structure/table/glass,
+/obj/machinery/door/window/right/directional/north{
+ name = "Hydroponics Desk";
+ req_access = list("hydroponics")
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/desk_bell{
+ pixel_x = 1;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"ozV" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"ozX" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"ozZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
+"oAe" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"oAh" = (
+/turf/open/floor/glass/reinforced,
+/area/station/security/brig/entrance)
+"oAl" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oAm" = (
+/obj/structure/railing/wooden_fence{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"oAs" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/analyzer,
+/obj/item/pipe_dispenser,
+/obj/item/flashlight,
+/obj/machinery/incident_display/delam/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"oAA" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/box/red,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"oAD" = (
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"oAM" = (
+/obj/structure/fluff/tram_rail/end{
+ dir = 4
+ },
+/obj/structure/fluff/tram_rail/end{
+ dir = 4;
+ pixel_y = -17
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"oAP" = (
+/obj/machinery/portable_atmospherics/canister/bz,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"oAY" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Armory - Internal - Lower"
+ },
+/obj/structure/rack,
+/obj/item/storage/toolbox/drone,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"oBg" = (
+/obj/structure/table/wood,
+/obj/item/book/bible,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"oBm" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ name = "Bench"
+ },
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"oBq" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"oBs" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Security";
+ location = "EVA2"
+ },
+/obj/effect/turf_decal/plaque{
+ icon_state = "L10"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oBz" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"oBD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/cup/bucket{
+ pixel_y = 10;
+ pixel_x = -4
+ },
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oBI" = (
+/obj/machinery/light/floor,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"oBQ" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"oBV" = (
+/obj/item/paper/fluff/jobs/security/beepsky_mom,
+/obj/machinery/light/small/dim/directional/east,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"oBZ" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oCo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/mine/laborcamp)
+"oCs" = (
+/obj/structure/table,
+/obj/item/radio/headset/headset_med{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/book/manual/wiki/infections{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"oCv" = (
+/obj/item/chair/plastic{
+ pixel_y = 10
+ },
+/obj/item/chair/plastic{
+ pixel_y = 5
+ },
+/obj/item/chair/plastic,
+/obj/structure/rack,
+/obj/item/stack/sheet/glass{
+ amount = 12
+ },
+/obj/item/stack/cable_coil/five,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oCA" = (
+/obj/structure/closet/secure_closet/cytology,
+/obj/machinery/button/door/directional/north{
+ id = "xenobiomain";
+ name = "Containment Blast Doors";
+ pixel_y = 32;
+ req_access = list("xenobiology")
+ },
+/obj/machinery/button/door/directional/north{
+ id = "misclab";
+ name = "Test Chamber Blast Doors";
+ pixel_y = 23;
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/science/xenobiology)
+"oCE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"oCF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"oCO" = (
+/turf/closed/wall,
+/area/station/service/hydroponics/garden)
+"oCT" = (
+/obj/item/instrument/harmonica,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/grass,
+/area/station/security/prison/safe)
+"oCU" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"oDb" = (
+/obj/item/popsicle_stick{
+ pixel_y = 1;
+ pixel_x = -9
+ },
+/obj/item/popsicle_stick{
+ pixel_y = 3;
+ pixel_x = -2
+ },
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+"oDd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"oDg" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"oDh" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"oDn" = (
+/obj/machinery/door/airlock/atmos/glass,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/corner,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/engineering/atmos/project)
+"oDt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"oDw" = (
+/obj/structure/table,
+/obj/item/petri_dish{
+ pixel_y = 15;
+ pixel_x = -5
+ },
+/obj/item/petri_dish{
+ pixel_y = 10;
+ pixel_x = 6
+ },
+/obj/item/petri_dish{
+ pixel_y = -6;
+ pixel_x = -1
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"oDB" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"oDD" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 8
+ },
+/obj/effect/landmark/start/botanist,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"oDH" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/maintenance/port/fore)
+"oDQ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
+"oDV" = (
+/obj/structure/closet,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"oEj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"oEl" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 4;
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/cable/layer3,
+/obj/machinery/requests_console/auto_name/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"oEt" = (
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"oEy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_x = 3;
+ pixel_y = -8
+ },
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_x = -3;
+ pixel_y = -8
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_y = -6
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_y = -7
+ },
+/obj/structure/sign/warning/no_smoking/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Chemistry Lab - East";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/medical/chemistry)
+"oEB" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oED" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Test Chamber";
+ network = list("ss13","test","rd","xeno")
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"oEE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"oEF" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/aft)
+"oEX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"oFc" = (
+/obj/structure/sign/warning/directional/north,
+/turf/open/openspace/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oFd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"oFl" = (
+/obj/machinery/light/small/dim/directional/west,
+/obj/structure/sign/warning/cold_temp/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"oFx" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/holopad/secure,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"oFI" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oFW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"oFY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"oFZ" = (
+/obj/effect/turf_decal/trimline/yellow/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/window/left/directional/east{
+ name = "Drone Bay Access";
+ req_access = list("cargo")
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"oGj" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/smartfridge/petri/preloaded,
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"oGm" = (
+/obj/machinery/power/solar_control{
+ dir = 1;
+ id = "starboardsolar";
+ name = "Starboard Quarter Solar Control"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"oGr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump/off/supply/visible/layer4{
+ dir = 1;
+ name = "Can In"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"oGs" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"oGy" = (
+/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/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"oGB" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/security/prison)
+"oGC" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oGF" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"oGG" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oGJ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Labor Camp External West";
+ network = list("labor")
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"oGN" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"oGO" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/bed/medical/anchored{
+ dir = 8
+ },
+/obj/item/bedsheet/medical{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"oGQ" = (
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"oHf" = (
+/obj/machinery/vending/autodrobe,
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"oHg" = (
+/obj/structure/fence/cut/large{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oHh" = (
+/obj/machinery/shower/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/door/window/left/directional/north{
+ name = "Shower Cubicle"
+ },
+/obj/item/soap/nanotrasen,
+/turf/open/floor/iron/freezer,
+/area/station/maintenance/starboard/fore)
+"oHo" = (
+/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"oHp" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering Escape Pod"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"oHH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"oHK" = (
+/turf/closed/wall/r_wall,
+/area/station/science/lab)
+"oHR" = (
+/obj/structure/chair/sofa/left/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"oHV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"oIj" = (
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 1
+ },
+/mob/living/carbon/human/species/monkey/punpun,
+/obj/item/kirbyplants/organic/plant11,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"oIt" = (
+/obj/structure/sign/departments/cargo/directional/west,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"oIv" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Labor Camp External North";
+ network = list("labor")
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+"oIB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"oIC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"oIH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"oIJ" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"oIN" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"oIR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance/four,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"oJk" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"oJn" = (
+/obj/structure/flora/grass/brown/style_3,
+/obj/structure/flora/bush/snow/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oJo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/start/mime,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"oJv" = (
+/obj/item/clothing/under/costume/skeleton,
+/obj/item/clothing/head/helmet/skull,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"oJP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/dark_green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"oJT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 1
+ },
+/area/station/command/gateway)
+"oKv" = (
+/obj/item/trash/popcorn,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oKy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"oKJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"oKL" = (
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"oKX" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/effect/landmark/start/cook,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"oKY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/plating,
+/area/station/construction)
+"oLa" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/obj/item/pickaxe,
+/obj/item/mining_scanner,
+/obj/item/storage/bag/ore,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"oLg" = (
+/turf/open/floor/iron/white/corner,
+/area/station/science/research)
+"oLi" = (
+/obj/effect/landmark/start/botanist,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oLj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"oLm" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Garden"
+ },
+/obj/machinery/status_display/ai/directional/east,
+/obj/structure/water_source/puddle,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"oLn" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"oLo" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/spawner/random/structure/closet_private,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"oLs" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 5
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"oLt" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"oLz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oLC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"oLG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"oLJ" = (
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Foyer"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"oLK" = (
+/obj/machinery/air_sensor/mix_tank,
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"oMa" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oMj" = (
+/obj/structure/flora/bush/sunny/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"oMk" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo Bay South"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"oMq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"oMs" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"oMO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oMP" = (
+/obj/machinery/computer/slot_machine,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"oMR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"oMS" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/delivery/red,
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/command/storage/eva)
+"oMT" = (
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"oNA" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"oNC" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/openspace,
+/area/station/service/chapel)
+"oNE" = (
+/obj/structure/closet/crate,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"oNO" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"oNP" = (
+/obj/structure/barricade/wooden,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/lesser)
+"oNX" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"oOb" = (
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/floor/glass/reinforced,
+/area/station/science/ordnance/office)
+"oOc" = (
+/obj/machinery/vending/wardrobe/gene_wardrobe,
+/obj/structure/sign/departments/genetics/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"oOg" = (
+/obj/effect/spawner/random/medical/patient_stretcher,
+/obj/effect/decal/cleanable/blood/gibs/torso,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/window/reinforced/tinted/spawner/directional/north,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"oOh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Door"
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"oOo" = (
+/obj/structure/closet/firecloset,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"oOw" = (
+/obj/effect/spawner/random/trash/moisture_trap,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oOB" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oOD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oOP" = (
+/obj/effect/turf_decal/siding/thinplating_new/corner,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"oOQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"oPl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"oPm" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oPn" = (
+/obj/structure/closet/secure_closet/injection,
+/obj/machinery/airalarm/directional/north,
+/obj/item/soap/nanotrasen,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"oPt" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/science/ordnance)
+"oPu" = (
+/obj/machinery/igniter/incinerator_ordmix,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"oPC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oPI" = (
+/turf/open/floor/circuit,
+/area/station/ai_monitored/command/nuke_storage)
+"oPO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oPP" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"oPU" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"oQc" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored/graveyard)
+"oQn" = (
+/obj/structure/chair/sofa/corp/left{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"oQo" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio5";
+ name = "Xenobio Pen 5 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"oQp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"oQt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating/icemoon,
+/area/station/maintenance/port/lesser)
+"oQx" = (
+/turf/open/floor/iron/smooth_half,
+/area/station/command/heads_quarters/rd)
+"oQD" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start/chemist,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"oQY" = (
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"oRk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"oRu" = (
+/obj/item/stack/medical/mesh,
+/obj/item/wrench/medical,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/structure/table/glass,
+/obj/machinery/light/cold/directional/east,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"oRy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"oRE" = (
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "garbage"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"oRH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"oRM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"oRZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/port)
+"oSa" = (
+/obj/machinery/door/airlock/public/glass{
+ id_tag = "gulag3";
+ name = "Cell 3"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"oSm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"oSy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"oSC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/lockers)
+"oSK" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Supply Door Airlock";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"oSR" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"oSS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"oSU" = (
+/turf/open/genturf,
+/area/icemoon/underground/unexplored/rivers/deep)
+"oSX" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oSY" = (
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"oTa" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/flora/grass/green/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oTc" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"oTd" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Research Division Testing Lab - Chamber";
+ network = list("test","rd")
+ },
+/turf/open/floor/engine,
+/area/station/science/explab)
+"oTi" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/sign/warning/cold_temp/directional/east,
+/turf/open/floor/plating,
+/area/mine/mechbay)
+"oTu" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oTx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/lesser)
+"oTA" = (
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"oTM" = (
+/obj/item/flashlight/lantern,
+/obj/structure/table/wood,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"oTS" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 8;
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"oUb" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"oUh" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 10
+ },
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"oUp" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"oUw" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering Lobby"
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"oUL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"oUM" = (
+/obj/machinery/door/airlock/security{
+ name = "Cafeteria"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/mess)
+"oUO" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/west{
+ id = "Toilet2";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"oVt" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/construction)
+"oVy" = (
+/obj/machinery/door/airlock/security{
+ name = "Permabrig Lab"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/grimy,
+/area/station/security/prison/work)
+"oVz" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"oVD" = (
+/obj/structure/rack,
+/obj/item/storage/box/evidence,
+/obj/item/storage/box/evidence,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"oVG" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Art Storage"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/textured,
+/area/station/commons/storage/art)
+"oVR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/bridge)
+"oVX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"oVY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/security/prison)
+"oWe" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"oWk" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"oWl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/storage/gas)
+"oWo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"oWN" = (
+/obj/machinery/requests_console/auto_name/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"oWQ" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"oXb" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/lobby)
+"oXd" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"oXf" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"oXg" = (
+/obj/effect/turf_decal/tile/dark_green,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"oXm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oXo" = (
+/obj/effect/mapping_helpers/turn_off_lights_with_lightswitch,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"oXq" = (
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"oXr" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Kill Chamber";
+ normalspeed = 0
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"oXx" = (
+/obj/machinery/mass_driver/trash{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/sign/warning/cold_temp/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"oXB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/storage/medkit/regular,
+/obj/item/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"oXE" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oXF" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plating,
+/area/mine/mechbay)
+"oXJ" = (
+/obj/machinery/newscaster/directional/north,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"oXL" = (
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/hallway/primary/starboard)
+"oXX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oYa" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 4
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"oYi" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"oYn" = (
+/obj/machinery/newscaster/directional/west,
+/obj/structure/table/glass,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"oYu" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"oYD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/button/door/directional/east{
+ id = "xenobio11";
+ name = "Xenobio Pen 11 Blast DOors";
+ req_access = list("xenobiology")
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"oYI" = (
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"oYN" = (
+/obj/structure/table,
+/obj/item/hand_tele{
+ pixel_x = 3;
+ pixel_y = 13
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"oZd" = (
+/obj/structure/fence/corner{
+ dir = 9
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"oZn" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+"oZz" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/security/prison)
+"oZG" = (
+/obj/machinery/duct,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"oZL" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Mix to Engine"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oZR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"pac" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/prison)
+"pao" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"par" = (
+/obj/structure/toilet/greyscale,
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_half{
+ dir = 1
+ },
+/area/station/security/prison/safe)
+"pau" = (
+/obj/structure/table/wood,
+/obj/item/pai_card,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"paw" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"paF" = (
+/obj/structure/table,
+/obj/item/clothing/suit/hooded/wintercoat/science,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"paK" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"paL" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"paM" = (
+/turf/closed/wall,
+/area/station/engineering/storage/tech)
+"paT" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "maint3"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"paZ" = (
+/obj/structure/closet/wardrobe/black,
+/obj/item/clothing/shoes/jackboots,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"pbk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/end{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"pbs" = (
+/turf/closed/wall,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"pby" = (
+/obj/effect/gibspawner/human,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pbB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"pbE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/construction)
+"pbF" = (
+/obj/structure/chair/sofa/right/brown,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"pbI" = (
+/obj/machinery/computer/records/security{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"pbQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "rd_office_shutters";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/rd)
+"pbS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pbW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"pcb" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pcc" = (
+/obj/item/stack/spacecash/c10{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/toy/plush/beeplushie{
+ name = "Coolidge";
+ pixel_y = -6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"pcg" = (
+/obj/machinery/computer/apc_control{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"pcr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{
+ dir = 8
+ },
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"pcs" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos/storage/gas)
+"pcx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Dormitory"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/dorms)
+"pcB" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"pcI" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/light/directional/south,
+/obj/structure/table,
+/obj/item/book/manual/wiki/engineering_hacking{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/engineering_construction,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"pcJ" = (
+/obj/structure/table/wood,
+/obj/item/coin/silver,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"pcM" = (
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance"
+ },
+/turf/open/floor/plating,
+/area/station/service/kitchen)
+"pcT" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"pdc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"pdd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"pdf" = (
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"pdg" = (
+/obj/structure/table,
+/obj/item/electronics/apc,
+/obj/item/electronics/airlock,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"pdm" = (
+/obj/machinery/chem_dispenser,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/item/radio/intercom/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"pdx" = (
+/obj/item/kirbyplants/organic/plant10,
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"pdy" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "robo2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"pdz" = (
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"pdB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/directional/south,
+/obj/structure/mirror/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pdD" = (
+/obj/effect/spawner/random/entertainment/arcade{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"pdK" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"pdO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"pdT" = (
+/obj/structure/chair/sofa/corp/right{
+ dir = 8
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Permabrig Library Reading Room";
+ network = list("ss13","prison")
+ },
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"pdV" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"pdW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/command/gateway)
+"peb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"pec" = (
+/obj/machinery/vending/cart,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"pee" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research/glass{
+ name = "Test Chamber"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/mapping_helpers/airlock/access/all/science/research,
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+"peq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/sign/departments/security/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"pez" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"peG" = (
+/obj/effect/spawner/random/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"peM" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"peP" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"peV" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"peX" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"pfe" = (
+/turf/closed/wall,
+/area/station/hallway/primary/fore)
+"pfg" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"pfw" = (
+/obj/structure/flora/grass/green/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"pfz" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/medical/virology)
+"pfD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"pfE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"pfO" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"pfP" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/maintenance/department/electrical)
+"pgc" = (
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"pgg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/iv_drip,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"pgo" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"pgq" = (
+/obj/machinery/light_switch/directional/west,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/byteforge,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/cargo/bitrunning/den)
+"pgt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"pgw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/requests_console/directional/south{
+ department = "Bridge";
+ name = "Bridge Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"pgE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"pgG" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/orange,
+/obj/item/restraints/handcuffs,
+/obj/item/reagent_containers/spray/pepper,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"pgL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"pgN" = (
+/obj/item/organ/external/tail/monkey,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"pgY" = (
+/obj/machinery/cryo_cell,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"phf" = (
+/obj/item/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 15
+ },
+/obj/structure/table,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"phj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"phr" = (
+/obj/machinery/door/airlock/hydroponics/glass{
+ name = "Hydroponics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/hydroponics)
+"phu" = (
+/obj/structure/chair/sofa/bench/left{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"phw" = (
+/obj/machinery/modular_computer/preset/civilian{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"phz" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"phA" = (
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"phK" = (
+/obj/effect/spawner/random/contraband/prison,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"phL" = (
+/obj/structure/reflector/single/anchored{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"phS" = (
+/obj/structure/table/reinforced,
+/obj/item/hfr_box/body/fuel_input,
+/obj/item/hfr_box/body/interface{
+ pixel_x = 6;
+ pixel_y = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"pib" = (
+/obj/machinery/camera/motion/directional/south{
+ c_tag = "Vault";
+ network = list("vault")
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"pig" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"pii" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"piv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"piB" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/hallway/primary/central)
+"piC" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/button/door/directional/south{
+ id = "Dorm6";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"piD" = (
+/obj/machinery/computer/security/labor,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"piL" = (
+/obj/machinery/door/window/brigdoor/security/cell/left/directional/west{
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth_half{
+ dir = 1
+ },
+/area/station/security/brig)
+"piP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"piT" = (
+/obj/machinery/status_display/ai/directional/east,
+/obj/structure/chair/sofa/left/brown,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"piV" = (
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"pja" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/gps/mining,
+/obj/item/gps/mining,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"pjc" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/research/glass{
+ name = "Ordnance Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/freezerchamber)
+"pji" = (
+/obj/structure/cable,
+/obj/machinery/camera/directional/east{
+ c_tag = "Locker Room East"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"pjj" = (
+/obj/structure/chair,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"pjl" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/engineering_all,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"pjr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"pjw" = (
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/balaclava{
+ pixel_x = -8;
+ pixel_y = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"pjF" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 4;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"pkf" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/structure/bed/medical/emergency,
+/obj/machinery/iv_drip,
+/obj/machinery/light/small/directional/west,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"pkg" = (
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/sign/departments/science/directional/west,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pkq" = (
+/obj/structure/railing/wooden_fence{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"pkz" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/sink/directional/south,
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Break Room";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"pkN" = (
+/obj/structure/railing,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"pkP" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"pkQ" = (
+/obj/machinery/atmospherics/components/unary/bluespace_sender,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"pkW" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L4"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pkY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"plg" = (
+/obj/machinery/atmospherics/components/tank/air,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/port/greater)
+"plI" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"plN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"plQ" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/service/chapel)
+"plS" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"pme" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"pmi" = (
+/obj/structure/cable,
+/obj/structure/sign/warning/engine_safety/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"pmn" = (
+/obj/effect/spawner/random/trash/caution_sign,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"pmr" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 2
+ },
+/obj/structure/chair,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"pmA" = (
+/obj/structure/minecart_rail{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/red/directional/north,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"pna" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"pnf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"pnj" = (
+/obj/structure/closet/firecloset,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/stripes/corner,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"pnn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/tcommsat/computer)
+"pns" = (
+/obj/machinery/duct,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"pnw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"pnz" = (
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"pnA" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/science{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/suit/hooded/wintercoat/science{
+ pixel_x = -1
+ },
+/obj/item/clothing/shoes/winterboots{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/clothing/shoes/winterboots,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/glass/reinforced,
+/area/station/science/xenobiology)
+"pnG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"pnK" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"pnR" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"pnU" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"poc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"poe" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "permainner";
+ name = "Permabrig Transfer"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "perma-entrance"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"pou" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/machinery/duct,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"poy" = (
+/turf/open/floor/carpet/green,
+/area/station/service/library)
+"poC" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/structure/railing/wooden_fence{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"poK" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"poL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"poO" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ppc" = (
+/obj/item/trash/syndi_cakes,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/fore/lesser)
+"ppl" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/brig/entrance)
+"ppo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ppp" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ppq" = (
+/obj/structure/closet/wardrobe/grey{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"ppr" = (
+/obj/effect/turf_decal/siding/brown,
+/obj/structure/chair/office,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"ppz" = (
+/obj/machinery/computer/rdconsole{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"ppD" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"ppH" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/obj/machinery/status_display/evac/directional/east,
+/obj/structure/chair/sofa/right/brown{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"ppK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"ppQ" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/latex,
+/obj/item/surgical_drapes,
+/obj/item/razor,
+/obj/machinery/status_display/evac/directional/west,
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"ppS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"ppY" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"pqc" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pql" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/production)
+"pqo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "gene_desk_shutters";
+ name = "Genetics Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"pqv" = (
+/obj/item/storage/medkit/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"pra" = (
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"prg" = (
+/turf/open/floor/wood,
+/area/station/service/library)
+"prs" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 15;
+ name = "arrivals";
+ roundstart_template = /datum/map_template/shuttle/arrival/box;
+ shuttle_id = "arrival_stationary";
+ width = 7
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"prE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"prH" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio11";
+ name = "Xenobio Pen 11 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"prX" = (
+/obj/machinery/light/cold/directional/east,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"psb" = (
+/turf/closed/wall/ice,
+/area/icemoon/underground/explored)
+"psm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"psp" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"pst" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"psu" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering Access"
+ },
+/obj/structure/closet/radiation,
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"psv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth_edge,
+/area/station/medical/chemistry)
+"psN" = (
+/turf/closed/wall/r_wall,
+/area/station/security/brig/entrance)
+"psP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"psR" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"psW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"psY" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "secmechbay";
+ name = "Security Mech Bay Shutters"
+ },
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"ptd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ptf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ptp" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"ptr" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka{
+ pixel_x = 7;
+ pixel_y = 20
+ },
+/obj/item/taperecorder{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{
+ pixel_x = 7;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{
+ pixel_x = 6
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/structure/secure_safe/hos{
+ pixel_x = 28;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/hos)
+"ptB" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"ptQ" = (
+/obj/structure/disposalpipe/trunk/multiz/down,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ptR" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ptS" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"ptY" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"pua" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"puc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/machinery/light/warm/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"pue" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"puf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"puh" = (
+/obj/effect/spawner/random/clothing/bowler_or_that,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"pup" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"pus" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"puw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "Xenobio Pen 3 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"puz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"puF" = (
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"puL" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"puN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"puX" = (
+/obj/structure/table,
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -5
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = 5
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/cargo/drone_bay)
+"puY" = (
+/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"puZ" = (
+/obj/structure/railing/wooden_fence{
+ dir = 1
+ },
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"pve" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/mine/eva)
+"pvh" = (
+/obj/item/clothing/glasses/meson,
+/obj/item/flashlight,
+/obj/item/clothing/suit/hooded/wintercoat/science,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"pvi" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 9
+ },
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/reagent_containers/cup/watering_can,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"pvm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"pvo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"pvu" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"pvz" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Courtroom"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"pvB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"pvE" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"pvJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/eighties/red,
+/area/station/security/prison/safe)
+"pvP" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/service/hydroponics)
+"pvY" = (
+/obj/machinery/computer/order_console/mining,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"pwd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"pwf" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"pwg" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"pwn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"pwo" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ shuttledocked = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/processing)
+"pwr" = (
+/obj/structure/sign/warning{
+ pixel_y = 48
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"pwv" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ name = "Supply multi deck pipe adapter"
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"pwF" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"pwG" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/construction)
+"pwH" = (
+/obj/structure/chair/stool/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"pwK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"pwM" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pwV" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"pxi" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Mass Driver";
+ req_access = list("chapel_office")
+ },
+/obj/machinery/mass_driver/chapelgun{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"pxn" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pxp" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pxL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pxQ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"pxV" = (
+/obj/machinery/chem_master,
+/obj/machinery/button/door/directional/north{
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutter Controls";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"pxX" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"pya" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/security_all,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"pyc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/landmark/start/depsec/supply,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"pyl" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/structure/sign/flag/terragov/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"pyn" = (
+/obj/item/storage/photo_album/chapel,
+/obj/structure/noticeboard/directional/west,
+/obj/machinery/light/small/directional/west,
+/obj/structure/rack/skeletal,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"pyr" = (
+/obj/machinery/griddle,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"pyu" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"pyA" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"pyD" = (
+/obj/machinery/shower/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/door/window/left/directional/north{
+ name = "Shower Cubicle"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/maintenance/starboard/fore)
+"pyE" = (
+/obj/structure/table/wood,
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/fax/auto_name,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"pyG" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/spawner/random/armory/e_gun,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"pyI" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Port Quarter Solar Access"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"pyJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"pyM" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"pyY" = (
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"pza" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"pzb" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pzi" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pzn" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"pzs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"pzu" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/detective,
+/turf/open/floor/carpet/blue,
+/area/station/security/prison/work)
+"pzx" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/seeds/carrot,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"pzC" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pzV" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen/fountain,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pzX" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"pAc" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Ordnance Lab Maintenance"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/science/ordnance)
+"pAN" = (
+/obj/structure/ladder,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/maintenance/department/medical/central)
+"pAT" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/mine/production)
+"pAX" = (
+/obj/structure/chair/plastic{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"pAZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/primary/central)
+"pBb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"pBk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"pBs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"pBv" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/hydroponics,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"pBA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"pBE" = (
+/turf/closed/wall,
+/area/station/cargo/bitrunning/den)
+"pBI" = (
+/obj/machinery/power/smes{
+ capacity = 1.8e+008;
+ charge = 2e+005
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/maintenance/disposal/incinerator)
+"pBN" = (
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/station/security/warden)
+"pBR" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 9
+ },
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"pBV" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"pBW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"pCi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pCp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/button/flasher{
+ pixel_y = -26;
+ id = "visitorflash"
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"pCE" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/filingcabinet,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/office)
+"pCG" = (
+/obj/structure/fence/corner{
+ dir = 2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"pCI" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"pCM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"pDe" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/item/clothing/under/pants/jeans,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"pDi" = (
+/obj/machinery/light/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pDk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/science/lab)
+"pDt" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pDy" = (
+/obj/structure/table,
+/obj/structure/cable,
+/obj/item/clothing/head/beanie/red,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"pDA" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"pDB" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"pDC" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Three";
+ space_dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/processing)
+"pDI" = (
+/obj/structure/table,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"pDL" = (
+/obj/structure/sign/departments/psychology/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"pDQ" = (
+/obj/structure/sign/warning/electric_shock,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/fore)
+"pDR" = (
+/obj/effect/decal/cleanable/blood/tracks,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"pDS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"pDW" = (
+/turf/open/floor/plating,
+/area/mine/laborcamp/security)
+"pEc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pEg" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/table,
+/obj/structure/bedsheetbin/empty,
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"pEq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Break Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/brown/half{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/medical/break_room)
+"pEs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/service/hydroponics/garden)
+"pEE" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/pai_card,
+/obj/item/taperecorder{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"pER" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/carbon{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/cup/glass/bottle/whiskey{
+ pixel_x = 9;
+ pixel_y = 7
+ },
+/obj/item/hand_labeler{
+ pixel_x = -6;
+ pixel_y = -6
+ },
+/obj/item/lighter{
+ pixel_x = 8;
+ pixel_y = -9
+ },
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"pEX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"pFg" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pFv" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"pFV" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/fore/lesser)
+"pFW" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"pFZ" = (
+/obj/item/target/syndicate,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/training_machine,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"pGd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"pGf" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pGo" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pGt" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"pGy" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"pGG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/random/directional/south,
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"pGJ" = (
+/obj/structure/sign/poster/contraband/random/directional/north,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pGQ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/turf/closed/wall,
+/area/station/engineering/atmos)
+"pGS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"pGT" = (
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/station/service/library)
+"pGW" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "MiniSat External SouthEast";
+ network = list("minisat");
+ start_active = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pGZ" = (
+/obj/structure/mop_bucket/janitorialcart,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"pHa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"pHy" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/item/radio/intercom/directional/south,
+/obj/item/crowbar,
+/obj/item/crowbar,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/machinery/camera/directional/east{
+ c_tag = "Port Emergency Storage"
+ },
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"pHD" = (
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"pHQ" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/glass{
+ name = "Mining Station Bridge"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"pHR" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"pHW" = (
+/obj/machinery/atmospherics/components/tank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"pHX" = (
+/obj/effect/turf_decal/tile/purple{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pIh" = (
+/obj/structure/bookcase,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"pIj" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"pIk" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"pIm" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Atmos to Loop"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"pIu" = (
+/obj/structure/table,
+/obj/item/binoculars,
+/obj/machinery/computer/security/telescreen/ordnance/directional/north,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"pIw" = (
+/obj/machinery/vending/wardrobe/curator_wardrobe,
+/obj/structure/sign/painting/library_private{
+ pixel_x = -32
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"pIy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"pJc" = (
+/obj/machinery/component_printer,
+/obj/machinery/camera/directional/west{
+ c_tag = "Research Division Circuits Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/explab)
+"pJi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/flashlight{
+ pixel_y = 3;
+ pixel_x = -4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"pJm" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"pJu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"pJy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Cooling Loop Bypass"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"pJC" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pJQ" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/storage/gas)
+"pJU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"pJV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"pJX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"pJY" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"pKb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"pKl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"pKu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"pKw" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/chief_medical_officer,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"pKB" = (
+/obj/structure/filingcabinet,
+/obj/structure/sign/poster/official/space_cops/directional/west,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"pKJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"pKR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"pKS" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4,
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"pKX" = (
+/obj/structure/railing,
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/four,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pKY" = (
+/obj/machinery/door/poddoor/incinerator_atmos_aux,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"pLg" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/surface/outdoors/nospawn)
+"pLh" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"pLn" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"pLr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/breakroom)
+"pLt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"pLv" = (
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"pLw" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small/directional/west,
+/obj/machinery/button/door/directional/south{
+ id = "AuxToilet3";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_x = -32;
+ spawn_loot_chance = 50
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"pLS" = (
+/obj/machinery/mineral/stacking_machine{
+ output_dir = 2;
+ stack_amt = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"pLZ" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/structure/closet,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/effect/spawner/random/trash/botanical_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"pMg" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ req_access = list("brig")
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/processing)
+"pMq" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics Storage Room - South"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"pMu" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"pMv" = (
+/turf/closed/wall,
+/area/station/commons/storage/emergency/port)
+"pMy" = (
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"pMC" = (
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"pMF" = (
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"pMM" = (
+/obj/structure/fence/door,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pMN" = (
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"pMY" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"pNm" = (
+/turf/closed/wall/r_wall,
+/area/station/security/execution/education)
+"pNq" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"pNs" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"pNz" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"pNB" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"pNK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/commons/storage/tools)
+"pNO" = (
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/lobby)
+"pNZ" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"pOk" = (
+/obj/structure/cable,
+/turf/closed/wall/r_wall,
+/area/station/security/prison/safe)
+"pOo" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"pOq" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/firecloset,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"pOy" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"pOH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/teleporter,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"pOL" = (
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"pOV" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/wrench,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"pPg" = (
+/obj/structure/stairs/west,
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/service/hydroponics)
+"pPl" = (
+/obj/item/stack/ore/silver,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"pPy" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pPB" = (
+/obj/machinery/seed_extractor,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/aft)
+"pPK" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"pPN" = (
+/obj/machinery/porta_turret/ai{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 10
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"pPO" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"pPR" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"pPT" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"pPY" = (
+/obj/machinery/light/small/dim/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/spawner/random/trash/grime,
+/obj/effect/decal/cleanable/generic,
+/obj/structure/sign/departments/maint/directional/west,
+/obj/structure/sign/departments/maint/directional/west,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"pQa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pQl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cytology Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"pQo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "External Gas to Loop"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"pQp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/corner,
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"pQv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/storage_shared)
+"pQw" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/pen,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"pQD" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"pQK" = (
+/obj/structure/closet/secure_closet/evidence,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/evidence)
+"pQL" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"pRa" = (
+/turf/closed/wall,
+/area/station/science/ordnance/bomb)
+"pRj" = (
+/turf/closed/wall,
+/area/station/maintenance/port/aft)
+"pRs" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/medical/morgue)
+"pRL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/storage/art)
+"pRX" = (
+/obj/machinery/light/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/commissary)
+"pRZ" = (
+/obj/machinery/shower/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"pSk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics Storage Room - North"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"pSq" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"pSu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"pSy" = (
+/obj/machinery/modular_computer/preset/curator{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"pSz" = (
+/turf/open/openspace,
+/area/station/maintenance/starboard/upper)
+"pSA" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Permabrig Forestry";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"pSF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair/stool/directional/east,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"pSK" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pTd" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "briggate";
+ name = "Security Shutters"
+ },
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/door/window/brigdoor/right/directional/west{
+ name = "Brig Reception";
+ req_access = list("security")
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Brig Reception"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/brig/entrance)
+"pTi" = (
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/button/door/directional/north{
+ id = "botany_apiary";
+ name = "Bee Protection Shutters"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"pTy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"pTB" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pTJ" = (
+/obj/effect/turf_decal/trimline/green/filled/warning,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"pTN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/warden)
+"pTT" = (
+/obj/machinery/smartfridge/extract/preloaded,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"pTU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/command/heads_quarters/rd)
+"pTW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"pTY" = (
+/turf/open/floor/iron/white/side,
+/area/station/science/explab)
+"pUa" = (
+/obj/structure/marker_beacon/cerulean,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/genturf,
+/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters)
+"pUi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"pUn" = (
+/obj/structure/sink/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"pUy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"pUX" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"pVg" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/stairs/north,
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"pVj" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"pVl" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"pVq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"pVv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"pVD" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/generic/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"pVH" = (
+/turf/closed/wall/mineral/wood,
+/area/station/maintenance/aft/lesser)
+"pVK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"pVL" = (
+/turf/closed/wall/r_wall,
+/area/station/security/mechbay)
+"pVN" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"pVQ" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pVV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "robo2"
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"pWb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/rack_parts,
+/obj/effect/spawner/random/clothing/beret_or_rabbitears,
+/obj/effect/spawner/random/clothing/kittyears_or_rabbitears,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"pWf" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/food_or_drink/cups,
+/obj/effect/spawner/random/food_or_drink/booze,
+/obj/effect/spawner/random/food_or_drink/booze,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"pWp" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"pWu" = (
+/obj/docking_port/stationary/syndicate/northeast{
+ dir = 8
+ },
+/turf/open/genturf,
+/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters)
+"pWE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"pWJ" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"pWY" = (
+/obj/structure/table/glass,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"pXe" = (
+/obj/item/stack/sheet/animalhide/monkey,
+/obj/effect/decal/cleanable/blood,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"pXh" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"pXj" = (
+/obj/machinery/power/shieldwallgen/xenobiologyaccess,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"pXk" = (
+/obj/machinery/door/window/brigdoor/right/directional/north{
+ name = "Flash Storage";
+ req_access = list("armory")
+ },
+/obj/machinery/recharge_station,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"pXn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pXq" = (
+/obj/machinery/button/door/directional/east{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast DOors";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"pXt" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/camera/directional/north{
+ c_tag = "Research Division Server Room";
+ network = list("ss13","rd")
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/openspace/icemoon,
+/area/station/science/server)
+"pXv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"pXB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"pXE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"pXR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"pXU" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Arrivals Lounge"
+ },
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"pXY" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pXZ" = (
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"pYa" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"pYg" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pYn" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/prison/directional/north,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/fax{
+ fax_name = "Law Office";
+ name = "Law Office Fax Machine"
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"pYz" = (
+/obj/structure/railing/corner,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/iron/dark/corner{
+ dir = 4
+ },
+/area/station/service/chapel)
+"pYB" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"pYF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"pYT" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"pZh" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"pZm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"pZn" = (
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"pZB" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Chemistry Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"pZD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/eva)
+"pZG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"pZY" = (
+/mob/living/simple_animal/hostile/asteroid/polarbear{
+ move_force = 999;
+ name = "Huey"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"pZZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"qab" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/plasma_input{
+ dir = 8
+ },
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"qad" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/sign/departments/science/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"qai" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/station/maintenance/port/aft)
+"qam" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/commons/storage/mining)
+"qau" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"qaz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/heavy{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Launch Room"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"qaE" = (
+/obj/effect/turf_decal/arrows/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/half,
+/turf/open/floor/iron/half,
+/area/station/hallway/primary/starboard)
+"qaF" = (
+/obj/machinery/shower/directional/east,
+/obj/effect/turf_decal/stripes/red/end{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/main)
+"qaI" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/east{
+ pixel_y = -6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"qaL" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"qaR" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qaS" = (
+/obj/machinery/door/airlock/wood{
+ name = "Backstage"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/service/theatre,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/commons/lounge)
+"qaU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"qbb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"qbh" = (
+/obj/structure/chair/stool/directional/south,
+/obj/machinery/camera/directional/west{
+ c_tag = "Solar Maintenance - South East"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"qbk" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Security Checkpoint"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigoutpost"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/brig/entrance)
+"qbp" = (
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"qbq" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio11";
+ name = "Xenobio Pen 11 Blast Door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"qbA" = (
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"qbF" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"qbG" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"qbO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"qbW" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/three,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"qca" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"qch" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/corner/end/flip,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qck" = (
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qcu" = (
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qcE" = (
+/obj/structure/ladder,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"qcI" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/table/reinforced,
+/obj/item/stack/wrapping_paper{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/dest_tagger,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"qcL" = (
+/obj/effect/turf_decal/siding/yellow/end{
+ dir = 8
+ },
+/obj/machinery/plumbing/sender,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"qdl" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"qdq" = (
+/obj/structure/railing,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qdC" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/requests_console/directional/west{
+ department = "Mining";
+ name = "Mining Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"qdE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "EVA Secure Storage"
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/command/storage/eva)
+"qdF" = (
+/obj/machinery/vending/wardrobe/sec_wardrobe,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/smooth_edge,
+/area/station/security/lockers)
+"qdH" = (
+/obj/structure/bookcase/random,
+/obj/structure/sign/poster/official/nanomichi_ad/directional/north,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"qdI" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Central Hallway South-West"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"qdK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"qdY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"qea" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/multitool,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"qeh" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/station/security/checkpoint/engineering)
+"qen" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave,
+/turf/open/floor/stone,
+/area/mine/eva/lower)
+"qes" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/textured,
+/area/station/service/hydroponics)
+"qeF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Arrivals Aux Dock"
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"qeL" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"qeP" = (
+/obj/structure/table,
+/obj/item/flashlight/lantern,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"qeQ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Pens Observation - Port Fore";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"qeR" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"qfh" = (
+/turf/open/floor/iron/recharge_floor,
+/area/station/science/robotics/mechbay)
+"qfi" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle/epinephrine,
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/syringe,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"qfs" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"qfy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 8
+ },
+/obj/machinery/door/window/right/directional/west{
+ name = "Corpse Arrivals"
+ },
+/obj/structure/window/spawner/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/trimline/neutral/filled/end{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"qfz" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/landmark/start/bartender,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"qfA" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Research Division Access";
+ network = list("ss13","rd")
+ },
+/obj/structure/sink/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"qfE" = (
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"qfG" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"qgm" = (
+/obj/machinery/meter/monitored/waste_loop,
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating/corner,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"qgu" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"qgv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/service/chapel)
+"qgH" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qgO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/processing)
+"qhb" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/trash/crushed_can,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"qhd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/mob/living/basic/bot/cleanbot,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"qhi" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/spawner/random/trash/mopbucket,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"qhI" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics - South West"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qhL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"qhN" = (
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"qhO" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qhP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark/side,
+/area/station/security/processing)
+"qhR" = (
+/obj/structure/fence/corner{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"qhS" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/security/prison)
+"qig" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/meter/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"qiv" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/siding/thinplating_new/light{
+ dir = 6
+ },
+/turf/open/floor/wood/large,
+/area/station/hallway/primary/starboard)
+"qiF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"qiJ" = (
+/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
+/obj/effect/spawner/random/contraband/prison,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"qiK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"qiL" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/shovel,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/radio/off,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Departure Lounge Emergency EVA"
+ },
+/turf/open/floor/iron/white,
+/area/station/hallway/secondary/exit/departure_lounge)
+"qiN" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"qiP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"qjb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/wideplating/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"qjg" = (
+/obj/effect/landmark/observer_start,
+/obj/effect/turf_decal/plaque{
+ icon_state = "L8"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qji" = (
+/obj/structure/sign/poster/official/no_erp/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/freezer,
+/area/station/maintenance/starboard/fore)
+"qjp" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"qjq" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"qjr" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qjx" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"qjF" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"qjJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"qjO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"qjQ" = (
+/turf/closed/wall,
+/area/station/cargo/miningdock)
+"qjV" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/mine/eva)
+"qjW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"qkg" = (
+/mob/living/basic/pet/penguin/baby/permanent,
+/obj/item/toy/snowball{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"qku" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet/blue,
+/area/station/hallway/secondary/entry)
+"qky" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"qkB" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"qkH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/science/explab)
+"qkI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"qkL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/security/lockers)
+"qkR" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/chem_master,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/glass/reinforced,
+/area/station/medical/treatment_center)
+"qkT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/station_engineer,
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"qlf" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/structure/sign/warning/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"qlk" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining Mech Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "mining-aux-mechbay-external"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/large,
+/area/mine/mechbay)
+"qll" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance/two,
+/obj/item/wirecutters,
+/turf/open/floor/plating,
+/area/station/construction)
+"qlw" = (
+/obj/machinery/disposal/bin,
+/obj/item/radio/intercom/prison/directional/north,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/camera/directional/north{
+ c_tag = "Warden's Office"
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"qlD" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/storage/medkit/regular,
+/obj/item/storage/medkit/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"qlE" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"qlG" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"qlO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/table,
+/obj/structure/secure_safe/directional/south,
+/obj/item/storage/briefcase/secure,
+/turf/open/floor/iron/smooth,
+/area/station/command/heads_quarters/rd)
+"qlP" = (
+/obj/machinery/door/airlock/external/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/hallway/secondary/entry)
+"qlU" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"qmh" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"qmi" = (
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"qml" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig/entrance)
+"qmq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qmt" = (
+/turf/closed/wall,
+/area/mine/eva/lower)
+"qmK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qmU" = (
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"qna" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Permabrig Chapel";
+ network = list("ss13","prison")
+ },
+/turf/open/floor/carpet,
+/area/station/security/prison/rec)
+"qnj" = (
+/turf/closed/wall,
+/area/station/commons/locker)
+"qnm" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qnr" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/meson,
+/obj/item/storage/bag/ore,
+/obj/item/pickaxe,
+/obj/item/mining_scanner,
+/obj/item/flashlight,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/gps/mining,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"qnt" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"qnC" = (
+/turf/closed/wall/r_wall,
+/area/station/command/heads_quarters/ce)
+"qnO" = (
+/obj/machinery/atmospherics/components/trinary/mixer/airmix{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qnV" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency{
+ pixel_y = 9
+ },
+/obj/item/assembly/timer,
+/obj/item/assembly/signaler{
+ pixel_x = 7;
+ pixel_y = -7
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = -12
+ },
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"qob" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"qoi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"qok" = (
+/obj/structure/displaycase/trophy,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/wood/parquet,
+/area/station/service/library)
+"qoK" = (
+/obj/structure/flora/rock/style_random,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/station/maintenance/port/aft)
+"qoM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qoY" = (
+/obj/effect/spawner/random/structure/crate_abandoned,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"qpb" = (
+/obj/machinery/disposal/bin{
+ desc = "A pneumatic waste disposal unit. This one leads to the morgue.";
+ name = "corpse disposal"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"qpd" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"qpm" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/structure/desk_bell{
+ pixel_x = -3
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"qpo" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/medical/chemistry)
+"qpr" = (
+/obj/effect/turf_decal/trimline/dark_blue/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"qpt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"qpu" = (
+/obj/machinery/button/door/directional/west{
+ id = "gene_shutters";
+ name = "Genetics Privacy Shutters";
+ pixel_y = -4;
+ req_access = list("genetics")
+ },
+/obj/machinery/light_switch/directional/west{
+ pixel_x = -34;
+ pixel_y = 6
+ },
+/obj/machinery/button/door/directional/west{
+ id = "gene_desk_shutters";
+ name = "Genetics Desk Shutters";
+ pixel_y = 6;
+ req_access = list("genetics")
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"qpv" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/service/chapel)
+"qpB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"qpD" = (
+/obj/effect/spawner/random/trash/hobo_squat,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qpH" = (
+/obj/structure/fence/door,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"qpP" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qpR" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"qpS" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/obj/machinery/recharge_station,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"qpZ" = (
+/obj/structure/table,
+/obj/item/folder/blue{
+ pixel_x = -6;
+ pixel_y = 3
+ },
+/obj/item/pen{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/paper_bin/carbon{
+ pixel_x = 5;
+ pixel_y = 18
+ },
+/obj/item/stamp/head/hop{
+ pixel_x = 8;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"qqv" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qqB" = (
+/obj/machinery/button/door/directional/north{
+ id = "maint3";
+ name = "Blast Door Control C"
+ },
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qqJ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "QM #4"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qqM" = (
+/obj/effect/landmark/start/head_of_security,
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/security/office)
+"qrg" = (
+/obj/item/bodypart/head,
+/obj/effect/decal/cleanable/blood,
+/obj/item/bodypart/arm/left{
+ pixel_x = -9;
+ pixel_y = -9
+ },
+/obj/item/bodypart/leg/left,
+/obj/item/bodypart/arm/right,
+/obj/item/bodypart/leg/right{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/item/bodypart/chest,
+/obj/item/organ/internal/heart,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"qrj" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/fluff/tram_rail,
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"qrr" = (
+/obj/structure/light_construct/directional/south,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"qrB" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/mime,
+/turf/open/floor/wood/parquet,
+/area/station/service/theater)
+"qrJ" = (
+/obj/machinery/ticket_machine/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qrP" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"qrQ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/service/chapel)
+"qrT" = (
+/obj/machinery/status_display/evac/directional/east,
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"qsa" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"qsy" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qsQ" = (
+/obj/machinery/stasis,
+/obj/machinery/defibrillator_mount/directional/north,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"qtd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"qtj" = (
+/turf/closed/wall,
+/area/station/engineering/storage)
+"qts" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/red/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"qtv" = (
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters)
+"qtw" = (
+/obj/machinery/door/airlock/security{
+ name = "Prison Forestry"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/garden)
+"qtD" = (
+/obj/structure/sign/warning/directional/south,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qtH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"qtM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qud" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "mining_internal";
+ name = "mining conveyor";
+ pixel_x = 1;
+ pixel_y = 8
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"que" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Chapel South"
+ },
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"quy" = (
+/obj/structure/flora/grass/both/style_random,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"quB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"quK" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ name = "Cargo Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"quS" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/cigbutt,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"quW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"quY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/brown,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"qvh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"qvk" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qvx" = (
+/obj/item/food/grown/carrot,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"qvE" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine,
+/area/station/science/genetics)
+"qvF" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"qvM" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qvQ" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"qvW" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/obj/item/t_scanner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -8
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -8
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"qwa" = (
+/obj/machinery/door/window/brigdoor/right/directional/west{
+ name = "Shooting Range"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"qwd" = (
+/obj/machinery/light_switch/directional/south,
+/obj/structure/closet/secure_closet/security/cargo,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"qwe" = (
+/obj/structure/table,
+/obj/item/phone{
+ pixel_x = -3
+ },
+/obj/item/cigbutt,
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"qwi" = (
+/obj/effect/turf_decal/trimline/neutral/corner,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"qwo" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"qwB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qwF" = (
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"qwN" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Research Division North";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"qwX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/maintenance/port/aft)
+"qxb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"qxl" = (
+/obj/structure/table,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/machinery/requests_console/directional/north{
+ department = "Circuits Lab";
+ name = "Circuits Lab Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"qxm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"qxo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"qxp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qxu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"qxG" = (
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk/multiz/down,
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"qxI" = (
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"qxN" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"qxQ" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"qxY" = (
+/obj/item/chair/plastic,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qya" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/stock_parts/power_store/cell/emproof,
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"qyn" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"qyH" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/requests_console/auto_name/directional/south,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"qyI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"qyL" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"qyO" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"qyR" = (
+/turf/open/openspace,
+/area/station/medical/treatment_center)
+"qyT" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"qzn" = (
+/obj/structure/chair/sofa/bench/right,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qzs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qzu" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"qzy" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"qzF" = (
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"qzM" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck/cas{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/obj/item/toy/cards/deck/cas/black{
+ pixel_x = -7
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"qzT" = (
+/obj/structure/closet/firecloset,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"qzV" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/hallway/primary/central/fore)
+"qAf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"qAh" = (
+/obj/structure/railing/wooden_fence{
+ dir = 5
+ },
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"qAB" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"qAI" = (
+/obj/effect/decal/cleanable/food/flour,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qAP" = (
+/obj/machinery/shower/directional/east,
+/turf/open/floor/iron/smooth,
+/area/mine/living_quarters)
+"qAQ" = (
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"qAT" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qAV" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"qBi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qBj" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"qBt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"qCl" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qCn" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"qCu" = (
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"qCA" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qCB" = (
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qCF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"qCI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qCP" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 5
+ },
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"qCU" = (
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"qDm" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/meter/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"qDA" = (
+/obj/structure/bed{
+ dir = 4
+ },
+/obj/item/bedsheet/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/donk,
+/area/mine/production)
+"qDD" = (
+/obj/machinery/washing_machine,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/mine/laborcamp)
+"qDF" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/department/chapel)
+"qDG" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"qDI" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qDS" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"qEa" = (
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"qEj" = (
+/obj/structure/table/glass,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/igniter,
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"qEm" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"qEn" = (
+/obj/machinery/vending/dinnerware,
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"qEu" = (
+/obj/effect/turf_decal/siding/brown{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/structure/tank_holder/oxygen/yellow,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"qEz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"qEJ" = (
+/turf/closed/wall,
+/area/station/service/chapel/office)
+"qEK" = (
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"qEM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"qEV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"qEZ" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"qFn" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Cabins"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/dark/textured_half,
+/area/mine/production)
+"qFp" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/rack,
+/obj/item/storage/box/lights/tubes,
+/obj/item/crowbar/red,
+/turf/open/floor/glass/reinforced,
+/area/station/science/xenobiology)
+"qFs" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"qFt" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/explab)
+"qFu" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/computer/station_alert{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"qFA" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"qFC" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/sign/warning/no_smoking/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qFE" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Fitness Ring"
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"qFJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/bot,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/customs/auxiliary)
+"qFO" = (
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+"qFW" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qFX" = (
+/obj/machinery/door/airlock{
+ name = "Custodial Closet"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/navigate_destination,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/service/janitor,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"qGg" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/gps/mining,
+/obj/item/gps/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"qGJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/trash/grime,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"qGQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/ce)
+"qGU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/fore)
+"qGV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"qGW" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"qHg" = (
+/obj/structure/transit_tube/curved/flipped{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qHj" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/red{
+ dir = 8
+ },
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"qHl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qHn" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Research Division Break Room";
+ network = list("ss13","rd")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/entertainment/arcade{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"qHt" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"qHz" = (
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/disposal/bin{
+ desc = "A pneumatic waste disposal unit. This one leads to the morgue.";
+ name = "corpse disposal"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"qHA" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/medical/virology)
+"qHO" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/chair/sofa/bench/right{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"qIf" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"qIo" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/paper/guides/jobs/hydroponics,
+/obj/item/seeds/onion,
+/obj/item/seeds/garlic,
+/obj/item/seeds/potato,
+/obj/item/seeds/tomato,
+/obj/item/seeds/carrot,
+/obj/item/seeds/grass,
+/obj/item/seeds/ambrosia,
+/obj/item/seeds/wheat,
+/obj/item/seeds/pumpkin,
+/obj/effect/spawner/random/contraband/prison,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/food_or_drink/seed{
+ spawn_all_loot = 1;
+ spawn_random_offset = 1
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"qIx" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/command/hop,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"qIB" = (
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/machinery/door/poddoor/shutters/window{
+ id = "eva_shutters";
+ name = "EVA Shutters"
+ },
+/obj/effect/turf_decal/siding/dark_blue,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/turf/open/floor/iron/textured_half,
+/area/station/ai_monitored/command/storage/eva)
+"qIC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"qIP" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"qIU" = (
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qJh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"qJi" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/radiation/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"qJv" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/item/cigbutt,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"qJB" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/closet/crate/hydroponics,
+/obj/item/wrench,
+/obj/item/wrench,
+/obj/item/grenade/chem_grenade/antiweed{
+ pixel_x = 3;
+ pixel_y = 1
+ },
+/obj/item/grenade/chem_grenade/antiweed,
+/obj/item/shovel/spade,
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_y = 3
+ },
+/obj/item/cultivator,
+/obj/item/shovel/spade,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"qJC" = (
+/obj/machinery/seed_extractor,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/green{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qJT" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/plating/snowed/icemoon,
@@ -56175,6 +112909,7 @@
"qJY" = (
/obj/machinery/door/airlock/maintenance{
name = "Permabrig Maintenance"
+<<<<<<< HEAD
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -56194,6 +112929,33 @@
dir = 1
},
/area/mine/eva/lower)
+=======
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"qKn" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qKq" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 4
@@ -56211,6 +112973,7 @@
/obj/machinery/atmospherics/components/tank,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
"qKw" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -56226,6 +112989,8 @@
},
/turf/open/floor/plating/snowed/coldroom,
/area/station/service/kitchen/coldroom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qKx" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
@@ -56237,6 +113002,7 @@
/area/station/command/teleporter)
"qKB" = (
/obj/structure/chair,
+<<<<<<< HEAD
/obj/effect/turf_decal/stripes/line{
dir = 5
},
@@ -56755,11 +113521,136 @@
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
"qRF" = (
+=======
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"qKQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "ceprivacy";
+ name = "Privacy Shutter"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/ce)
+"qKS" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 locker"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+"qLg" = (
+/obj/effect/spawner/random/contraband/narcotics,
+/obj/structure/sign/poster/contraband/syndiemoth/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"qLi" = (
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"qLm" = (
+/obj/machinery/suit_storage_unit/mining,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"qLt" = (
+/obj/effect/landmark/start/hangover,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qLy" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"qLB" = (
+/obj/structure/filingcabinet/employment,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"qLD" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"qLF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"qLG" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/station/service/lawoffice)
+"qLN" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "Test Chamber Blast Door"
+ },
+/obj/machinery/door/window/left/directional/west{
+ name = "Test Chamber";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"qLQ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"qLX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/toy/basketball,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"qLY" = (
+/turf/closed/wall/r_wall,
+/area/station/science/xenobiology)
+"qMk" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/stairs/west,
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/science/cytology)
+"qMm" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qMo" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"qMz" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"qMF" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks/beer,
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/service/bar)
+<<<<<<< HEAD
"qRO" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -59251,10 +116142,22 @@
dir = 8
},
/obj/structure/cable,
+=======
+"qMH" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"qMN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/poddoor/shutters/radiation/preopen{
id = "engsm";
name = "Radiation Chamber Shutters"
},
+<<<<<<< HEAD
/turf/open/floor/plating,
/area/station/engineering/supermatter)
"rCC" = (
@@ -61959,6 +118862,5583 @@
/area/station/maintenance/starboard/fore)
"srW" = (
/obj/structure/table,
+=======
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"qMT" = (
+/turf/closed/wall,
+/area/station/commons/lounge)
+"qMU" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Four";
+ space_dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"qNl" = (
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ location = "Atmospherics"
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/department/medical/central)
+"qNn" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/welding{
+ pixel_y = 4
+ },
+/obj/item/disk/tech_disk{
+ pixel_x = -2;
+ pixel_y = -6
+ },
+/obj/item/disk/tech_disk{
+ pixel_x = -4;
+ pixel_y = -7
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/lab)
+"qNt" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"qNu" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/freezer,
+/area/station/maintenance/starboard/fore)
+"qNv" = (
+/obj/machinery/telecomms/receiver/preset_right,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"qNx" = (
+/obj/structure/ladder,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/neutral/diagonal_centre,
+/obj/effect/turf_decal/tile/dark_blue/diagonal_edge,
+/turf/open/floor/iron/dark/diagonal,
+/area/station/engineering/atmos/mix)
+"qNE" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qNF" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 9
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qNK" = (
+/obj/item/radio/intercom/prison/directional/west,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"qNV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"qNZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"qOj" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/aft)
+"qOl" = (
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"qOu" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"qOx" = (
+/obj/structure/lattice,
+/obj/structure/sign/departments/maint/alt/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"qOy" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"qOD" = (
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/effect/turf_decal/siding/dark_blue,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/window{
+ id = "eva_shutters";
+ name = "EVA Shutters"
+ },
+/turf/open/floor/iron/textured_half,
+/area/station/ai_monitored/command/storage/eva)
+"qOG" = (
+/obj/structure/table/wood,
+/obj/item/plate,
+/obj/effect/spawner/random/trash/bacteria,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"qOH" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/station/science/server)
+"qOP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Vestibule"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/processing)
+"qPb" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/light_switch/directional/north{
+ pixel_y = 38
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"qPc" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"qPm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"qPp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"qPq" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/customs/auxiliary)
+"qPs" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"qPt" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/item/radio/headset/headset_med,
+/obj/item/radio/headset/headset_med,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"qPw" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"qPE" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/station/service/kitchen/coldroom)
+"qPI" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"qPJ" = (
+/obj/structure/cable,
+/mob/living/basic/sloth/paperwork,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qPL" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/secondary/exit/departure_lounge)
+"qPV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"qPX" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/freezer,
+/area/mine/eva/lower)
+"qPY" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"qQa" = (
+/obj/machinery/mass_driver/ordnance{
+ dir = 4
+ },
+/obj/machinery/door/window/left/directional/north,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"qQb" = (
+/obj/machinery/photobooth,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qQf" = (
+/turf/closed/wall,
+/area/station/maintenance/fore/lesser)
+"qQk" = (
+/obj/structure/fence/cut/large{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qQo" = (
+/turf/closed/wall,
+/area/station/cargo/office)
+"qQp" = (
+/turf/closed/wall,
+/area/station/medical/storage)
+"qQq" = (
+/obj/machinery/meter{
+ name = "Mixed Air Tank Out"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"qQt" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"qQx" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"qQC" = (
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"qQG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qQN" = (
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"qRk" = (
+/obj/item/chair/wood,
+/turf/open/floor/carpet,
+/area/station/maintenance/space_hut/cabin)
+"qRo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qRq" = (
+/obj/structure/rack,
+/obj/item/electronics/apc,
+/obj/item/electronics/airlock,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"qRr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"qRs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"qRv" = (
+/obj/structure/railing,
+/obj/structure/marker_beacon/cerulean,
+/obj/structure/flora/tree/pine/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qRE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"qRO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"qSb" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/workout)
+"qSh" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"qSj" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/stamp/law,
+/obj/machinery/camera/directional/south{
+ c_tag = "Service Law Office"
+ },
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 17
+ },
+/obj/machinery/requests_console/directional/south{
+ department = "Law Office";
+ name = "Law Office Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"qSk" = (
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"qSo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"qSq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"qSu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"qSE" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "Test Chamber Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"qSN" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"qST" = (
+/obj/structure/table/reinforced,
+/obj/item/pipe_dispenser,
+/obj/item/multitool,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"qSY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qTa" = (
+/obj/machinery/portable_atmospherics/pipe_scrubber,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"qTf" = (
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"qTm" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"qTs" = (
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"qTI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"qTS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"qTZ" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"qUa" = (
+/obj/structure/closet/crate/secure/freezer/pizza,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"qUf" = (
+/obj/machinery/firealarm/directional/east,
+/obj/item/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"qUr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"qUu" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"qUw" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"qUI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"qUL" = (
+/obj/structure/closet/emcloset,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"qUQ" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"qUS" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qUY" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"qVg" = (
+/obj/structure/cable,
+/obj/structure/chair/stool/directional/south,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"qVk" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"qVo" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"qVp" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"qVz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/rack,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"qVB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ name = "Armory Desk";
+ req_access = list("armory")
+ },
+/obj/machinery/door/window/left/directional/north{
+ name = "Armory Desk"
+ },
+/obj/item/hand_labeler,
+/turf/open/floor/iron,
+/area/station/ai_monitored/security/armory/upper)
+"qVD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_y = -32;
+ spawn_loot_chance = 50
+ },
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"qVJ" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch/directional/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/hos)
+"qVK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/stairs/medium,
+/area/station/commons/dorms/laundry)
+"qVN" = (
+/obj/structure/table/glass,
+/obj/item/stock_parts/matter_bin,
+/obj/effect/spawner/random/food_or_drink/booze,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qVZ" = (
+/obj/structure/table,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"qWe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"qWn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "rnd";
+ name = "Research Lab Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/primary/starboard)
+"qWu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"qWy" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/stripes/red/end{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/main)
+"qWD" = (
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"qWI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/aft)
+"qWJ" = (
+/obj/item/crowbar/large,
+/obj/structure/rack,
+/obj/item/flashlight,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"qWK" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"qWM" = (
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/structure/table,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"qWO" = (
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"qWS" = (
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"qWZ" = (
+/turf/closed/wall/r_wall,
+/area/station/command/bridge)
+"qXf" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"qXg" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"qXt" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"qXF" = (
+/obj/machinery/computer/station_alert,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"qXO" = (
+/obj/structure/flora/bush/jungle/c/style_random,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"qYb" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"qYh" = (
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"qYw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "robo1"
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"qYx" = (
+/obj/item/trapdoor_remote/preloaded{
+ pixel_y = 17;
+ name = "corpse trapdoor remote"
+ },
+/obj/structure/rack{
+ pixel_y = 12;
+ pixel_x = -1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/effect/turf_decal/caution/red{
+ pixel_y = -14
+ },
+/obj/structure/noticeboard/cmo{
+ pixel_y = 36
+ },
+/turf/open/floor/iron/white/textured,
+/area/station/medical/medbay/central)
+"qYz" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"qYA" = (
+/obj/machinery/computer/security,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"qYF" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/structure/sign/departments/chemistry/directional/north,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"qYP" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"qYQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"qYR" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qYV" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"qYW" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"qYZ" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"qZg" = (
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"qZh" = (
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/folder/white,
+/obj/item/pen,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"qZv" = (
+/obj/machinery/chem_heater/withbuffer,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/treatment_center)
+"qZG" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"qZN" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/freezerchamber)
+"qZQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"qZT" = (
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"qZZ" = (
+/obj/structure/marker_beacon/yellow,
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+"rab" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"raf" = (
+/obj/machinery/power/shieldwallgen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"rai" = (
+/obj/structure/table,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -8;
+ pixel_y = 11
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 8;
+ pixel_y = 10
+ },
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/hand_labeler{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"ras" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"rat" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"rax" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"raA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"raH" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"raN" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"raQ" = (
+/mob/living/basic/pet/penguin/baby/permanent,
+/obj/structure/flora/grass/brown/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"raT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"raY" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Permabrig Observation South";
+ network = list("ss13","prison")
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"rbb" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"rbf" = (
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"rbm" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "MiniSat External NorthWest";
+ network = list("minisat");
+ start_active = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rbs" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"rbC" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/qm)
+"rbE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"rbT" = (
+/obj/structure/ore_box,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rbY" = (
+/obj/structure/table/reinforced,
+/obj/item/pipe_dispenser,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"rbZ" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"rcj" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Lockers";
+ location = "EVA"
+ },
+/obj/effect/turf_decal/plaque{
+ icon_state = "L6"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"rck" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+"rcE" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/hallway/primary/central)
+"rcP" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"rcS" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/obj/structure/marker_beacon/burgundy,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rcY" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"rdn" = (
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"rds" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/button/door/directional/east{
+ id = "minecraft_shutter";
+ name = "Cart Access"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"rdw" = (
+/obj/structure/bookcase,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet,
+/area/station/security/processing)
+"rdG" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"rdJ" = (
+/obj/structure/fence/corner{
+ dir = 5
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rea" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/cargo/miningdock)
+"reb" = (
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"ree" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"rej" = (
+/obj/machinery/oven/range,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"rek" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rep" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ pixel_x = -6;
+ pixel_y = -1;
+ req_access = list("rd");
+ id = "misclab";
+ name = "Specimen Chamber Control"
+ },
+/obj/machinery/button/door{
+ pixel_x = -6;
+ pixel_y = 9;
+ req_access = list("rd");
+ id = "xenobiomain";
+ name = "Xenobiology Control"
+ },
+/obj/machinery/button/door{
+ pixel_x = 6;
+ pixel_y = -1;
+ req_access = list("rd");
+ id = "rd_office_shutters";
+ name = "Privacy Control"
+ },
+/obj/machinery/button/door{
+ pixel_x = 6;
+ pixel_y = 9;
+ id = "rnd2";
+ name = "Ordnance Control";
+ req_access = list("rd")
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/command/heads_quarters/rd)
+"res" = (
+/obj/structure/ladder,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"rex" = (
+/obj/effect/turf_decal/stripes/asteroid/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/oil,
+/obj/item/wrench,
+/obj/effect/turf_decal/tile/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/mine/living_quarters)
+"reJ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "Tool Storage"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"reT" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 8";
+ req_access = list("xenobiology")
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"rfh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"rfo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"rfu" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/rec)
+"rfF" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"rfQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"rfR" = (
+/obj/machinery/telecomms/bus/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"rfS" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"rgl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"rgm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/folder/yellow{
+ pixel_x = -9;
+ pixel_y = 8
+ },
+/obj/item/folder/yellow{
+ pixel_x = -16;
+ pixel_y = 14
+ },
+/obj/item/folder{
+ pixel_x = -12;
+ pixel_y = 17
+ },
+/obj/item/paper{
+ pixel_x = -13;
+ pixel_y = 10
+ },
+/obj/item/pen/blue{
+ pixel_x = -13;
+ pixel_y = 10
+ },
+/obj/item/stack/package_wrap,
+/turf/open/floor/wood/large,
+/area/mine/eva/lower)
+"rgq" = (
+/obj/structure/minecart_rail{
+ dir = 9
+ },
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"rgs" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"rgB" = (
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/trimline/dark_blue/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"rgC" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"rgE" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/hfr_room)
+"rhf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hos)
+"rhv" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"rhF" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Permabrig Observation North";
+ network = list("ss13","prison")
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"rhG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"rhJ" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rhY" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/box/red,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"rig" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"ril" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/department/medical/central)
+"rin" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"riv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/security/general,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"riB" = (
+/obj/machinery/computer/records/security,
+/obj/machinery/computer/security/telescreen/normal/directional/north,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"riL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/mine/living_quarters)
+"riW" = (
+/obj/item/toy/snowball{
+ pixel_x = 9;
+ pixel_y = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"rja" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/paper/carbon,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"rjb" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"rjd" = (
+/obj/structure/table,
+/obj/machinery/computer/security/telescreen/isolation/directional/south,
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/suit/jacket/straight_jacket{
+ pixel_x = 6
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Permabrig Prep";
+ network = list("ss13","prison");
+ view_range = 5
+ },
+/obj/structure/cable,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"rjr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"rjt" = (
+/obj/structure/table/glass,
+/obj/item/computer_disk/medical,
+/obj/item/computer_disk/medical,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"rjE" = (
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/fluff/tram_rail,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"rjK" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot/right,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"rjP" = (
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rkc" = (
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"rkh" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rkk" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_y = 2
+ },
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/delivery/red,
+/obj/machinery/camera/directional/north{
+ c_tag = "Arrivals Emergency EVA"
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"rkl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobiomain";
+ name = "Containment Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"rkp" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"rkt" = (
+/obj/structure/cable,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"rkz" = (
+/obj/structure/railing,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"rkH" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"rkI" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Office"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/captain,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"rkK" = (
+/obj/machinery/suit_storage_unit/cmo,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"rkL" = (
+/turf/open/floor/carpet/blue,
+/area/station/medical/psychology)
+"rkN" = (
+/turf/closed/wall,
+/area/station/engineering/atmos/hfr_room)
+"rkP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"rkV" = (
+/obj/structure/railing,
+/obj/item/storage/toolbox/mechanical{
+ pixel_y = 3
+ },
+/obj/item/multitool{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"rlf" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"rlj" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"rlq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+"rlt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"rlu" = (
+/obj/effect/spawner/random/vending/snackvend,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"rlB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"rlE" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"rlS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"rlV" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"rmn" = (
+/obj/structure/chair/stool/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"rmv" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"rmA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/checker,
+/area/station/commons/storage/emergency/port)
+"rmB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/grunge{
+ name = "Mining Mechbay Control"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/dark/textured_half,
+/area/mine/mechbay)
+"rmP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rmZ" = (
+/obj/machinery/iv_drip,
+/obj/structure/mirror/broken/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"rnh" = (
+/obj/machinery/door/airlock{
+ name = "Observatory Access"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"rnl" = (
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/mine/production)
+"rnp" = (
+/obj/machinery/door/poddoor/incinerator_atmos_main{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"rns" = (
+/obj/structure/table/reinforced,
+/obj/item/aicard{
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"rnt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"rnx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"rnQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"roj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"rop" = (
+/obj/machinery/telecomms/processor/preset_one,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"ros" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/hallway/secondary/service)
+"rou" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Break Room"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"rox" = (
+/obj/structure/table,
+/obj/effect/spawner/round_default_module,
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"roA" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 4";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"roH" = (
+/obj/structure/chair/pew/right,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"roQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"roT" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/item/gun/energy/laser/carbine/practice,
+/obj/item/gun/energy/laser/practice,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"roX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/customs/auxiliary)
+"rpa" = (
+/obj/structure/closet/athletic_mixed,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"rpC" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/starboard)
+"rpD" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rpF" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/engine_smes)
+"rpK" = (
+/obj/structure/chair/pew/left{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"rpM" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"rpT" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Access"
+ },
+/obj/effect/turf_decal/tile/red/half,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"rpU" = (
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"rpV" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"rqa" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/science/explab)
+"rqd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"rqi" = (
+/obj/item/crowbar{
+ pixel_y = 3
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = -19;
+ pixel_y = 3
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/item/radio/off{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"rqk" = (
+/obj/effect/spawner/random/trash/graffiti,
+/obj/structure/sign/poster/contraband/free_drone/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"rqD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"rqF" = (
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "Secure Storage"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"rqH" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/leather,
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"rqI" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"rqJ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"rqN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"rqR" = (
+/obj/machinery/biogenerator,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/green{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"rqY" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"rrg" = (
+/obj/structure/table/glass,
+/obj/item/storage/bag/plants/portaseeder,
+/obj/item/plant_analyzer,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rrh" = (
+/obj/structure/fence/post{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rrn" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"rrp" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"rrB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"rrR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/trimline/neutral/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"rrV" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end,
+/turf/open/floor/plating,
+/area/mine/eva)
+"rsf" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rsh" = (
+/obj/structure/sign/poster/contraband/the_big_gas_giant_truth/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rsw" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"rsy" = (
+/obj/item/training_toolbox{
+ pixel_y = 5
+ },
+/obj/structure/table,
+/obj/item/training_toolbox{
+ pixel_y = -2
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Holodeck Control"
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/status_display/evac/directional/east,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"rsG" = (
+/obj/item/toy/snowball{
+ pixel_x = -11;
+ pixel_y = -2
+ },
+/obj/structure/sign/warning/secure_area{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"rsL" = (
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"rsM" = (
+/obj/structure/bed/maint,
+/obj/item/toy/plush/rouny{
+ desc = "What is this? Is this a dog?";
+ name = "Therapy Dog"
+ },
+/obj/structure/cable,
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Isolation Cell";
+ network = list("ss13","prison","Isolation");
+ view_range = 5
+ },
+/turf/open/floor/iron/smooth_half{
+ dir = 1
+ },
+/area/station/security/prison/safe)
+"rsR" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/large,
+/area/station/medical/treatment_center)
+"rsV" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm1";
+ name = "Dorm 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"rsW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"rsY" = (
+/turf/closed/wall/r_wall,
+/area/mine/eva)
+"rtf" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rth" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"rtn" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"rtp" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Crematorium Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/service/crematorium,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"rtq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"rtt" = (
+/obj/effect/turf_decal/trimline/dark_green/line,
+/obj/effect/turf_decal/trimline/dark_green/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"rtw" = (
+/obj/structure/reagent_dispensers/cooking_oil,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/station/service/kitchen/coldroom)
+"rty" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"rtR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/textured,
+/area/mine/mechbay)
+"rud" = (
+/obj/item/clothing/gloves/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"ruo" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos/storage/gas)
+"ruw" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 1;
+ name = "plasma mixer"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ruC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"ruD" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"ruI" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Air to Port"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ruO" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/closet/firecloset,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"ruZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"rvj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/eighties/red,
+/area/station/security/prison/safe)
+"rvy" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rvA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"rvS" = (
+/obj/structure/rack,
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"rvZ" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rwe" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"rwn" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/hop,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"rwt" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rwB" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rwC" = (
+/obj/machinery/atmospherics/pipe/smart/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"rwD" = (
+/obj/structure/rack,
+/obj/item/clothing/head/soft/mime,
+/obj/item/clothing/suit/apron/chef,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"rwR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rwZ" = (
+/obj/structure/sign/departments/botany/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"rxa" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/medical/central)
+"rxf" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics - East"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Plasma to Pure"
+ },
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"rxx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics - HFR Decontamination Chamber"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"rxz" = (
+/obj/structure/girder,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"rxG" = (
+/obj/structure/ore_vent/starter_resources{
+ icon_state = "ore_vent_ice_active";
+ icon_state_tapped = "ore_vent_ice_active"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"rxJ" = (
+/turf/open/floor/glass,
+/area/station/service/hydroponics)
+"rxW" = (
+/turf/closed/mineral/random/snow,
+/area/icemoon/underground/unexplored/rivers)
+"rxY" = (
+/turf/closed/wall,
+/area/station/service/bar/backroom)
+"ryf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"ryl" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "Cargo_Store_In";
+ name = "Cargo Warehouse Shutters"
+ },
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"ryn" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/rnd/production/techfab/department/service,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/dark,
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+"ryu" = (
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"ryC" = (
+/obj/structure/cable,
+/obj/structure/fence/door/opened,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"ryG" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"ryJ" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/openspace,
+/area/station/service/hydroponics)
+"ryM" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/item/pickaxe,
+/obj/item/shovel,
+/obj/item/flashlight,
+/obj/item/flashlight,
+/obj/item/radio/off,
+/obj/item/radio/intercom/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/delivery/red,
+/turf/open/floor/iron/textured,
+/area/station/hallway/secondary/entry)
+"rzj" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/iron/fifty,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"rzz" = (
+/obj/machinery/door/airlock/command{
+ name = "Server Room"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/science/rd,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"rzD" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"rzG" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rzL" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"rzO" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rzS" = (
+/obj/structure/sign/departments/chemistry/pharmacy/directional/west,
+/obj/machinery/digital_clock/directional/south,
+/turf/open/openspace,
+/area/station/medical/medbay/lobby)
+"rzV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"rAr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/mob/living/simple_animal/bot/secbot/beepsky{
+ desc = "Powered by the tears and sweat of laborers.";
+ name = "Prison Ofitser"
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"rAA" = (
+/obj/machinery/pdapainter,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"rAC" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"rAF" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Air to External"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"rAO" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"rAR" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/security/prison)
+"rAW" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"rAY" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"rAZ" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/command/storage/eva)
+"rBo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"rBv" = (
+/obj/structure/chair/stool/directional/north,
+/obj/item/storage/toolbox/artistic{
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"rBz" = (
+/obj/machinery/computer/order_console/cook{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"rBJ" = (
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/structure/rack,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"rBL" = (
+/obj/machinery/light/directional/west,
+/turf/open/openspace,
+/area/station/commons/storage/mining)
+"rBM" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"rBQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"rBV" = (
+/turf/closed/wall,
+/area/station/tcommsat/computer)
+"rCe" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"rCf" = (
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"rCj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"rCs" = (
+/obj/structure/table,
+/obj/item/food/deadmouse{
+ pixel_y = 18;
+ pixel_x = 13
+ },
+/obj/structure/microscope,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"rCu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rCx" = (
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/stack/spacecash/c10,
+/obj/item/stack/spacecash/c10,
+/obj/item/grenade/smokebomb,
+/obj/item/poster/random_contraband{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/head/soft/yellow,
+/obj/effect/spawner/random/maintenance/four,
+/obj/item/crowbar/red,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/cardboard,
+/obj/effect/turf_decal/siding/blue{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"rCB" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"rCC" = (
+/turf/closed/wall,
+/area/station/cargo/sorting)
+"rCD" = (
+/obj/machinery/light_switch/directional/north,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"rCE" = (
+/obj/structure/table,
+/obj/item/plate/large,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"rCO" = (
+/obj/structure/closet/crate,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"rCT" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"rCU" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/mining_weather_monitor/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"rCW" = (
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics Internal Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"rCX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/multitool{
+ pixel_x = 3
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"rDa" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/bed/medical/emergency,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"rDd" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"rDj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"rDn" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 10
+ },
+/area/mine/eva)
+"rDJ" = (
+/obj/structure/ladder{
+ name = "upper dispenser access"
+ },
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/medical/treatment_center)
+"rDN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rDO" = (
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed,
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/flashlight{
+ pixel_x = -1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"rDZ" = (
+/turf/open/floor/engine,
+/area/station/science/explab)
+"rEe" = (
+/obj/structure/closet{
+ name = "evidence closet 4"
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/evidence)
+"rEf" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/structure/sign/warning/chem_diamond/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"rEh" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"rEo" = (
+/obj/structure/dresser,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"rEp" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"rEq" = (
+/obj/structure/beebox,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/siding/thinplating/dark/corner,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"rEr" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "Supply Dock Loading Door";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"rEx" = (
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"rEG" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"rEM" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rEP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side,
+/area/station/security/processing)
+"rES" = (
+/obj/effect/turf_decal/siding/brown/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"rEU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"rFb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"rFf" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"rFh" = (
+/obj/structure/girder,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"rFD" = (
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"rFI" = (
+/obj/structure/cable,
+/obj/machinery/button/door/directional/north{
+ id = "Atmospherics Project Shutters";
+ name = "Atmospherics Project Shutters";
+ req_access = list("atmospherics")
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"rFP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"rFU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"rGd" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen/invisible,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"rGf" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"rGh" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"rGl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"rGq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"rGu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"rGw" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "pharmacy_shutters2";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"rGY" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/table,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"rHc" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"rHi" = (
+/turf/open/openspace/xenobio,
+/area/station/science/xenobiology)
+"rHk" = (
+/obj/machinery/exodrone_launcher,
+/obj/item/exodrone{
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/end,
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/drone_bay)
+"rHx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"rHz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"rHD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/transport/linear{
+ radial_travel = 0
+ },
+/obj/structure/railing{
+ dir = 10
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/mine/storage)
+"rHH" = (
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/snack/lizard,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"rHQ" = (
+/obj/machinery/computer/message_monitor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"rHZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"rIc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"rIz" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/fore/lesser)
+"rIF" = (
+/obj/effect/turf_decal/trimline/dark_blue/line,
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics - Mixing Room South"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"rIH" = (
+/obj/structure/chair/stool/directional/south,
+/obj/structure/sign/poster/official/work_for_a_future/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"rIU" = (
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"rIX" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ name = "Engineering External Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"rJc" = (
+/obj/structure/minecart_rail{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/red/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"rJe" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen 1";
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"rJr" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/white,
+/obj/structure/closet/firecloset,
+/obj/machinery/mining_weather_monitor/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"rJv" = (
+/obj/machinery/bluespace_beacon,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"rJz" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/fore/lesser)
+"rKs" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/west,
+/obj/structure/sign/poster/official/work_for_a_future/directional/west,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rKv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wideplating,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"rKZ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"rLl" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"rLo" = (
+/turf/open/floor/plating,
+/area/station/cargo/miningdock)
+"rLs" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"rLu" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"rLL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 8
+ },
+/obj/machinery/holopad,
+/obj/effect/landmark/start/depsec/medical,
+/obj/machinery/computer/security/telescreen/med_sec/directional/east,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"rLX" = (
+/obj/item/target,
+/obj/item/target/syndicate,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/closet/crate{
+ name = "Firing Range Supplies Set"
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"rMr" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"rMu" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"rME" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only,
+/turf/open/openspace,
+/area/station/security/prison)
+"rMG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"rMN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"rMS" = (
+/obj/structure/table/glass,
+/obj/item/toy/figure/cmo{
+ pixel_x = -17;
+ pixel_y = -1
+ },
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/light/small/directional/north,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"rMY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"rNc" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/obj/structure/cable,
+/obj/structure/closet/crate/preopen,
+/obj/item/stack/sheet/mineral/plasma/five,
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/mine/living_quarters)
+"rNn" = (
+/obj/structure/flora/grass/brown/style_random,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rNz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/department/medical/morgue)
+"rNE" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 2;
+ height = 13;
+ name = "port bay 2";
+ shuttle_id = "ferry_home";
+ width = 5
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rNK" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/science/ordnance)
+"rNQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rNZ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"rOb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"rOe" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"rOv" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/corner/end,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rOw" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance"
+ },
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/service/kitchen/coldroom)
+"rOx" = (
+/obj/structure/flora/rock/pile/icy/style_random,
+/turf/open/misc/asteroid/snow/coldroom,
+/area/station/service/kitchen/coldroom)
+"rOA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"rOB" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 10
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/mine/living_quarters)
+"rOC" = (
+/obj/effect/turf_decal/tile/dark_green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"rOF" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"rOL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"rOU" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"rPe" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"rPL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"rPP" = (
+/obj/machinery/computer/records/security,
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/hos)
+"rQf" = (
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"rQh" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Chapel Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"rQl" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"rQn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"rQw" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"rQx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rQG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"rQI" = (
+/obj/item/kirbyplants/random,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/break_room)
+"rQN" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/carbon_input{
+ dir = 8
+ },
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"rQW" = (
+/obj/machinery/requests_console/directional/west{
+ department = "Science";
+ name = "Science Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/machinery/computer/rdconsole{
+ dir = 4
+ },
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"rQZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"rRc" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"rRd" = (
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/machinery/button/door/directional/east{
+ id = "eva_shutters";
+ req_access = list("command")
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/east{
+ pixel_y = -6
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/emergency,
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"rRk" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"rRl" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"rRn" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"rRt" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"rRA" = (
+/obj/structure/ladder{
+ name = "chemistry lab access"
+ },
+/obj/effect/turf_decal/stripes/end,
+/obj/structure/sign/departments/chemistry/directional/north,
+/obj/effect/turf_decal/tile/yellow/full,
+/obj/machinery/door/window/left/directional/south{
+ name = "Chemistry Lab Access Hatch";
+ req_access = list("plumbing")
+ },
+/turf/open/floor/iron/white/textured_large,
+/area/station/medical/treatment_center)
+"rRM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"rRN" = (
+/obj/structure/railing,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"rRT" = (
+/obj/structure/cable,
+/obj/structure/minecart_rail{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"rSe" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"rSl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"rSq" = (
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rSx" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"rSz" = (
+/obj/machinery/light/directional/west,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"rSC" = (
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/lobby)
+"rSN" = (
+/obj/machinery/computer/upload/borg{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south{
+ broadcasting = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "station intercom (AI Private)"
+ },
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 5
+ },
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"rSP" = (
+/obj/structure/closet/secure_closet/engineering_chief,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"rSW" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"rTt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"rTO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"rTV" = (
+/obj/structure/gulag_beacon,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rTX" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Shuttle Dock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"rTZ" = (
+/obj/machinery/light/floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/railing/corner/end/flip{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"rUb" = (
+/obj/structure/railing,
+/obj/machinery/flasher/portable,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"rUo" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"rUy" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "QM #2"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/small/directional/east,
+/mob/living/simple_animal/bot/mulebot,
+/obj/machinery/status_display/supply{
+ pixel_x = 32
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"rUz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"rUJ" = (
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"rUQ" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/beakers{
+ pixel_y = 7
+ },
+/obj/item/assembly/igniter{
+ pixel_y = -3
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/medical/chem_storage)
+"rUR" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"rUS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"rUT" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"rUY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"rVd" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"rVe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "miner-passthrough"
+ },
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Dock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"rVi" = (
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"rVq" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"rVA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Lab"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"rVB" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"rVC" = (
+/obj/structure/table,
+/obj/item/storage/backpack{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/backpack,
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"rVE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"rVV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"rVX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rWg" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/stamp/head/cmo,
+/obj/item/clothing/neck/stethoscope,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/camera/directional/north{
+ c_tag = "Chief Medical Office South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"rWm" = (
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"rWn" = (
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"rWp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{
+ dir = 8
+ },
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"rWH" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Lab Utilities"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/department/medical/central)
+"rWI" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 6
+ },
+/obj/structure/table/glass,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/firealarm/directional/east,
+/obj/item/food/grown/poppy{
+ pixel_y = -1;
+ pixel_x = 3
+ },
+/obj/item/food/grown/poppy/geranium{
+ pixel_y = 5;
+ pixel_x = 2
+ },
+/obj/item/food/grown/poppy/lily{
+ pixel_x = -2
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"rWO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "Atmospherics HFR Shutters"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/trimline/red/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"rWR" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"rWU" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Prison Wing"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"rWW" = (
+/obj/machinery/vending/wardrobe/medi_wardrobe,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"rWZ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/port)
+"rXe" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"rXg" = (
+/obj/structure/closet/crate/internals,
+/obj/item/tank/internals/emergency_oxygen,
+/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,
+/obj/item/clothing/mask/breath,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"rXi" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"rXj" = (
+/obj/structure/bed{
+ dir = 4
+ },
+/obj/item/bedsheet/medical{
+ dir = 4
+ },
+/obj/structure/secure_safe/directional/south,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"rXr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/commons/storage/primary)
+"rXw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/commons/lounge)
+"rXP" = (
+/obj/item/pickaxe/improvised{
+ pixel_x = 7
+ },
+/turf/open/misc/asteroid/snow/coldroom,
+/area/icemoon/underground/explored)
+"rXX" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ shuttledocked = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/processing)
+"rYq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"rYt" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"rYw" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 5
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/dark/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/mine/living_quarters)
+"rYA" = (
+/obj/structure/flora/grass/green/style_random,
+/obj/structure/sign/warning/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"rYB" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"rYE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"rYG" = (
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva)
+"rYT" = (
+/obj/structure/ladder,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"rZa" = (
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"rZm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"rZE" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"rZR" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/effect/landmark/start/chief_medical_officer,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"rZY" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/duct,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"rZZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"sab" = (
+/turf/open/floor/iron/chapel{
+ dir = 4
+ },
+/area/station/service/chapel)
+"sav" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"saC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"saF" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"saO" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"saR" = (
+/obj/structure/closet,
+/obj/item/bodybag,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"saX" = (
+/obj/machinery/button/door/directional/west{
+ id = "executionfireblast";
+ name = "Transfer Area Lockdown";
+ pixel_y = -6;
+ req_access = list("brig")
+ },
+/obj/structure/railing,
+/obj/machinery/door/window/left/directional/south,
+/obj/machinery/button/flasher{
+ pixel_x = -24;
+ pixel_y = 5;
+ id = "executionflash"
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/security/execution/education)
+"sbc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/right/directional/east{
+ name = "Pharmacy Desk";
+ req_access = list("pharmacy")
+ },
+/obj/item/folder/white{
+ pixel_x = -5
+ },
+/obj/item/pen{
+ pixel_x = -5
+ },
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/iron,
+/area/station/medical/pharmacy)
+"sbd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"sbi" = (
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/photocopier,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"sby" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/prison)
+"sbD" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"sbJ" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"sbK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/storage_shared)
+"sbN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"sbP" = (
+/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"sbU" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"sbY" = (
+/obj/structure/table,
+/obj/item/newspaper,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/structure/secure_safe/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"sca" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "gene_shutters";
+ name = "Genetics Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"scb" = (
+/obj/structure/toilet/greyscale{
+ cistern_open = 1;
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"scl" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"scm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"sco" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"scu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"scw" = (
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"scx" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/tcomms,
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"scV" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Detective's Office"
+ },
+/obj/machinery/computer/records/security,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"sdf" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/fore)
+"sdl" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 5
+ },
+/obj/machinery/meter,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"sdr" = (
+/obj/structure/transit_tube/horizontal,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"sds" = (
+/obj/structure/fence/corner{
+ dir = 6
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"sdE" = (
+/obj/structure/chair/pew/left,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"sdF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/grown/log/tree,
+/obj/item/grown/log/tree{
+ pixel_y = 5;
+ pixel_x = 7
+ },
+/obj/item/grown/log/tree{
+ pixel_x = 7
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"sdW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"sdX" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/item/assembly/timer{
+ pixel_y = 3
+ },
+/obj/item/assembly/voice{
+ pixel_y = 6
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/assembly/flash,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"sen" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"seA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/courtroom)
+"seH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"seL" = (
+/obj/structure/table,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/assembly/infra{
+ pixel_x = 3
+ },
+/obj/item/assembly/igniter{
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/trimline/neutral/warning,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/item/assembly/signaler,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/station/ai_monitored/command/storage/eva)
+"seR" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"seX" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"seY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"sfd" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/fluorine{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/iodine{
+ pixel_x = 1
+ },
+/obj/structure/sign/warning/chem_diamond/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"sfr" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"sfv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"sfy" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"sfF" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Security - Lower Hallway North";
+ network = list("ss13","prison")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/light/directional/east,
+/obj/structure/sign/warning/electric_shock/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"sfY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/research)
+"sgA" = (
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"sgB" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/restraints/handcuffs,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"sgL" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/computer/security/telescreen/test_chamber/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/command/heads_quarters/rd)
+"sgT" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/railing/corner/end,
+/obj/effect/turf_decal/siding/thinplating/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"sgV" = (
+/obj/effect/turf_decal/siding/brown/corner,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"sgW" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"shc" = (
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"she" = (
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"shh" = (
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"shj" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"sht" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"shy" = (
+/obj/machinery/modular_computer/preset/cargochat/medical{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/filled/end{
+ dir = 1
+ },
+/obj/structure/sign/warning/no_smoking/circle/directional/south,
+/turf/open/floor/iron,
+/area/station/medical/medbay/aft)
+"shB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"shF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"shG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"shH" = (
+/obj/structure/cable,
+/obj/structure/transit_tube/curved{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"shR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"sil" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Art Gallery"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"siu" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"six" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/pen/red{
+ pixel_x = -6
+ },
+/obj/item/pen/blue{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"siI" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"sjb" = (
+/turf/closed/wall/r_wall,
+/area/station/cargo/drone_bay)
+"sjd" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Service External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"sjh" = (
+/obj/structure/fence/door/opened,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"sjk" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 6
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"sjl" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/railing/corner,
+/obj/machinery/door/firedoor/border_only,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"sjp" = (
+/obj/effect/spawner/random/structure/chair_flipped,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/plaques/kiddie/perfect_drone{
+ pixel_x = 32
+ },
+/turf/open/floor/iron/checker,
+/area/station/maintenance/port/fore)
+"sjz" = (
+/obj/structure/chair/sofa/bench/left,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"skc" = (
+/obj/machinery/door/airlock/external{
+ name = "Port Docking Bay 1";
+ space_dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"skj" = (
+/obj/structure/table,
+/obj/machinery/light/directional/east,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/structure/sign/poster/official/random/directional/east,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"skl" = (
+/turf/closed/wall,
+/area/station/maintenance/fore)
+"skn" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"skr" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"skx" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"skI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"skJ" = (
+/obj/structure/grille/broken,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"skW" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"skX" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 8;
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/atmos)
+"skZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"slc" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/structure/bed/medical/emergency,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"slh" = (
+/obj/structure/table,
+/obj/item/flashlight,
+/obj/item/flashlight{
+ pixel_y = 13
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"sll" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Arrivals"
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"sln" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"slp" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio9";
+ name = "Xenobio Pen 9 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"slD" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"slP" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"slX" = (
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/stripes/red/box,
+/obj/machinery/door/poddoor/massdriver_trash,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"smg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/construction)
+"smj" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"smn" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"smp" = (
+/obj/machinery/washing_machine,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/clock/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"smr" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Port Bow Solar Access"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"smw" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"smx" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "QM #3"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"smC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"sna" = (
+/obj/item/kirbyplants/fern,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"snd" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"sng" = (
+/obj/structure/table,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/radio,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"sni" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"snj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"snt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"snw" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"snG" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"snI" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/vending/modularpc,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"snL" = (
+/obj/item/pickaxe{
+ pixel_x = 12;
+ desc = "Someone left their pickaxe out here, must not have known about the boulder processing machines inside."
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"snO" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"snW" = (
+/obj/machinery/computer/atmos_control/oxygen_tank{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"sok" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"sop" = (
+/obj/structure/table,
+/obj/structure/frame/machine,
+/obj/item/stack/cable_coil/five,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"soq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron/dark/side,
+/area/mine/eva/lower)
+"sou" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/aft/greater)
+"soz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Research Division Lobby";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"soA" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/storage/box/syringes,
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"soE" = (
+/obj/structure/reagent_dispensers/plumbed{
+ name = "service reservoir"
+ },
+/obj/machinery/light/small/dim/directional/north,
+/obj/effect/turf_decal/delivery/white{
+ color = "#307db9"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron/textured,
+/area/station/maintenance/starboard/fore)
+"soF" = (
+/obj/effect/turf_decal/trimline/dark_red/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/dark_blue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_red/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"soI" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Fitness Ring"
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"soK" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"soM" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"soR" = (
+/obj/machinery/icecream_vat,
+/obj/structure/sign/clock/directional/north,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"spg" = (
+/obj/structure/table,
+/obj/item/storage/box/monkeycubes{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = -5
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = -1;
+ pixel_y = 6
+ },
+/obj/item/storage/box/disks{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = -5
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"spv" = (
+/obj/structure/window/reinforced/plasma/spawner/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/power/energy_accumulator/tesla_coil/anchored,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"spy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"spz" = (
+/obj/structure/chair/wood,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"sqb" = (
+/obj/item/coin/iron{
+ pixel_y = -5
+ },
+/obj/item/coin/plasma{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/toy/plush/lizard_plushie{
+ name = "Cassius";
+ pixel_x = 11;
+ pixel_y = -4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/commons/dorms/laundry)
+"sqn" = (
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/obj/machinery/requests_console/directional/south{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"sqt" = (
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"sqA" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/service/chapel)
+"sqN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"sqW" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"sra" = (
+/obj/structure/table,
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/flash/handheld,
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"srb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/cold/directional/north,
+/obj/structure/sign/warning/bodysposal/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"sre" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"srk" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Library Desk Door";
+ req_access = list("library")
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"srn" = (
+/turf/open/floor/glass/reinforced,
+/area/station/medical/treatment_center)
+"sro" = (
+/obj/structure/cable,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/port/aft)
+"srw" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"sry" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"srB" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/landmark/start/bitrunner,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/robot_debris,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/cargo/bitrunning/den)
+"srP" = (
+/turf/closed/wall,
+/area/station/science/breakroom)
+"srW" = (
+/obj/structure/table,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/assembly/prox_sensor{
pixel_x = 5;
pixel_y = 7
@@ -61989,6 +124469,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/cargo/office)
+<<<<<<< HEAD
"ssg" = (
/obj/machinery/camera/directional/north{
c_tag = "Cargo Bay North"
@@ -61996,6 +124477,8 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ssh" = (
/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
dir = 4
@@ -62006,6 +124489,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"ssm" = (
/obj/structure/window/reinforced/spawner/directional/south,
/obj/structure/closet/firecloset,
@@ -62013,12 +124497,19 @@
/obj/effect/turf_decal/siding/white,
/turf/open/floor/plating,
/area/station/service/kitchen/coldroom)
+=======
+"ssj" = (
+/obj/structure/lattice/catwalk,
+/turf/open/openspace/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ssq" = (
/obj/structure/table/wood,
/obj/item/camera_film,
/obj/item/camera_film,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"ssr" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
@@ -62027,6 +124518,15 @@
/obj/structure/gulag_vent/ice,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+=======
+"sst" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ssv" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/effect/turf_decal/siding/thinplating_new/corner,
@@ -62040,6 +124540,16 @@
dir = 1
},
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
+=======
+"ssH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ssM" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62054,12 +124564,15 @@
},
/turf/open/floor/wood,
/area/station/service/lawoffice)
+<<<<<<< HEAD
"stb" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sth" = (
/obj/item/radio/intercom/directional/east,
/obj/structure/disposalpipe/trunk{
@@ -62102,6 +124615,7 @@
},
/turf/open/lava/plasma/ice_moon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
"stB" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -62112,6 +124626,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark/textured,
/area/station/hallway/primary/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"stD" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
@@ -62125,6 +124641,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/hallway/primary/central/fore)
+<<<<<<< HEAD
"stI" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 4
@@ -62132,6 +124649,8 @@
/obj/structure/sign/warning/electric_shock/directional/north,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"stJ" = (
/obj/structure/flora/grass/brown/style_random,
/turf/open/misc/asteroid/snow/icemoon,
@@ -62180,6 +124699,7 @@
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"sup" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/sign/warning/gas_mask,
@@ -62191,6 +124711,28 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/smooth,
/area/station/maintenance/starboard/fore)
+=======
+"sul" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"suo" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/west,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap{
+ pixel_y = 3
+ },
+/obj/item/storage/photo_album/bar,
+/obj/item/toy/figure/bartender,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"suA" = (
/obj/structure/closet/crate/coffin,
/obj/effect/decal/cleanable/dirt,
@@ -62198,6 +124740,18 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/department/chapel)
+<<<<<<< HEAD
+=======
+"suF" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/stairs/south,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"suL" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62246,6 +124800,16 @@
/obj/effect/turf_decal/tile/blue/full,
/turf/open/floor/iron/large,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"svx" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"svy" = (
/obj/effect/decal/cleanable/oil,
/obj/item/stack/ore/glass,
@@ -62254,6 +124818,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/smooth_large,
/area/station/cargo/warehouse)
+<<<<<<< HEAD
"svz" = (
/obj/machinery/light/small/directional/east,
/obj/effect/turf_decal/weather/snow/corner{
@@ -62261,6 +124826,8 @@
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"svF" = (
/turf/open/floor/iron/smooth,
/area/station/security/execution/transfer)
@@ -62274,6 +124841,20 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/plating,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
+=======
+"svR" = (
+/obj/machinery/computer/records/security,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/structure/fireaxecabinet/directional/north,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"svV" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"swa" = (
/obj/machinery/light/directional/east,
/turf/open/floor/engine,
@@ -62290,12 +124871,15 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/security/range)
+<<<<<<< HEAD
"swe" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"swf" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62347,6 +124931,10 @@
/obj/machinery/power/terminal,
/obj/machinery/light/small/directional/east,
/obj/structure/cable,
+<<<<<<< HEAD
+=======
+/obj/structure/sign/warning/electric_shock/directional/east,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/fore)
"swu" = (
@@ -62364,6 +124952,7 @@
"swF" = (
/turf/closed/wall,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"swI" = (
/obj/machinery/medical_kiosk,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -62371,6 +124960,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"swK" = (
/obj/effect/turf_decal/tile/blue,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -62396,12 +124987,27 @@
},
/turf/open/floor/plating,
/area/station/cargo/warehouse)
+<<<<<<< HEAD
"sxe" = (
/obj/structure/fence{
dir = 4
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+=======
+"sxs" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/closet/crate/freezer/blood,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"sxt" = (
+/obj/effect/turf_decal/siding/dark{
+ dir = 6
+ },
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sxu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62418,6 +125024,10 @@
/area/station/medical/medbay/aft)
"sxF" = (
/obj/structure/chair/stool/directional/north,
+<<<<<<< HEAD
+=======
+/obj/structure/sign/warning/electric_shock/directional/west,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/maintenance/solars/port/fore)
"sxO" = (
@@ -62427,6 +125037,7 @@
},
/turf/open/floor/iron,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"sxQ" = (
/obj/structure/sign/warning/electric_shock/directional/east,
/turf/open/misc/asteroid/snow/icemoon,
@@ -62436,6 +125047,8 @@
/obj/structure/cable,
/turf/open/floor/wood,
/area/station/security/prison/rec)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sxY" = (
/obj/structure/cable/multilayer/multiz,
/obj/structure/window/reinforced/spawner/directional/south,
@@ -62449,6 +125062,7 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
"syd" = (
/obj/machinery/duct,
/obj/machinery/firealarm/directional/south,
@@ -62457,12 +125071,15 @@
},
/turf/open/floor/iron,
/area/station/service/kitchen/coldroom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"syh" = (
/obj/structure/chair/pew/right{
dir = 1
},
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+<<<<<<< HEAD
"sym" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
@@ -62471,6 +125088,8 @@
},
/turf/open/floor/plating,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"syn" = (
/obj/effect/turf_decal/tile/neutral/diagonal_centre,
/obj/machinery/atmospherics/pipe/multiz/violet/visible{
@@ -62479,6 +125098,29 @@
/obj/effect/turf_decal/tile/dark_green/diagonal_edge,
/turf/open/floor/iron/dark/diagonal,
/area/station/engineering/atmos/mix)
+<<<<<<< HEAD
+=======
+"sys" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"syv" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"syw" = (
/obj/structure/fence/corner{
dir = 4
@@ -62493,11 +125135,55 @@
dir = 8
},
/area/station/security/prison)
+<<<<<<< HEAD
+=======
+"syC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"syE" = (
/obj/effect/turf_decal/trimline/green/filled/corner,
/obj/effect/turf_decal/trimline/blue/corner,
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+<<<<<<< HEAD
+=======
+"syG" = (
+/obj/structure/fence{
+ dir = 2;
+ pixel_y = 0
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"syI" = (
+/obj/effect/turf_decal/siding/white/end{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/cup/bowl{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bowl{
+ pixel_y = 8;
+ pixel_x = 3
+ },
+/obj/item/food/grown/eggplant{
+ pixel_y = 5;
+ pixel_x = 5
+ },
+/obj/item/food/grown/mushroom/chanterelle{
+ pixel_y = 3
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"syL" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -62523,6 +125209,7 @@
/obj/effect/spawner/structure/window/hollow/reinforced/end,
/turf/open/floor/plating,
/area/station/medical/morgue)
+<<<<<<< HEAD
"szj" = (
/obj/structure/railing/corner/end/flip{
dir = 8
@@ -62531,6 +125218,8 @@
dir = 8
},
/area/station/hallway/primary/starboard)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"szo" = (
/obj/machinery/door/firedoor,
/obj/structure/cable,
@@ -62540,6 +125229,7 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"szt" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62547,11 +125237,14 @@
/obj/structure/sign/clock/directional/south,
/turf/open/floor/iron,
/area/station/commons/fitness)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"szu" = (
/obj/structure/sign/poster/official/obey/directional/north,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
"szz" = (
/obj/machinery/newscaster/directional/north,
/obj/effect/turf_decal/tile/red{
@@ -62559,6 +125252,8 @@
},
/turf/open/floor/iron/textured,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"szD" = (
/obj/effect/turf_decal/trimline/green/filled/end,
/obj/effect/decal/cleanable/dirt,
@@ -62571,6 +125266,7 @@
/obj/structure/sign/warning/cold_temp/directional/north,
/turf/open/floor/iron/smooth,
/area/station/cargo/warehouse)
+<<<<<<< HEAD
"szK" = (
/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/cable,
@@ -62579,6 +125275,8 @@
/obj/machinery/duct,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"szR" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62596,6 +125294,7 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/commons/dorms/laundry)
+<<<<<<< HEAD
"sAa" = (
/obj/structure/stairs/north,
/obj/structure/railing{
@@ -62603,6 +125302,15 @@
},
/turf/open/floor/iron,
/area/mine/eva/lower)
+=======
+"sAd" = (
+/obj/structure/fence/post{
+ dir = 8;
+ pixel_y = 0
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sAj" = (
/obj/machinery/photocopier,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -62611,6 +125319,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark/textured,
/area/station/security/office)
+<<<<<<< HEAD
+=======
+"sAt" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/food_or_drink/snack,
+/obj/effect/spawner/random/trash/food_packaging,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sAu" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62623,6 +125340,7 @@
/obj/machinery/vending/cigarette,
/turf/open/floor/iron/dark,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"sAI" = (
/obj/machinery/camera{
c_tag = "Morgue Hallway"
@@ -62631,6 +125349,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sAR" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -62643,6 +125363,14 @@
"sAS" = (
/turf/closed/wall,
/area/station/commons/storage/art)
+<<<<<<< HEAD
+=======
+"sBd" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sBi" = (
/obj/structure/cable,
/obj/effect/decal/cleanable/dirt,
@@ -62671,6 +125399,7 @@
/obj/machinery/light/warm/directional/east,
/turf/open/floor/iron,
/area/station/security/prison/workout)
+<<<<<<< HEAD
"sBx" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/lattice/catwalk,
@@ -62679,6 +125408,20 @@
"sBy" = (
/turf/closed/wall,
/area/station/service/theater)
+=======
+"sBy" = (
+/turf/closed/wall,
+/area/station/service/theater)
+"sBH" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Lower Brig Hallway"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sBJ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/showroomfloor,
@@ -62697,6 +125440,7 @@
},
/turf/open/floor/iron/white/corner,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"sBY" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/tile/bar/opposingcorners,
@@ -62705,6 +125449,8 @@
},
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sCa" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 5
@@ -62712,6 +125458,19 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron/dark/textured,
/area/station/security/prison/rec)
+<<<<<<< HEAD
+=======
+"sCb" = (
+/obj/structure/minecart_rail{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sCm" = (
/obj/machinery/power/terminal{
dir = 1
@@ -62738,6 +125497,24 @@
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance/office)
+<<<<<<< HEAD
+=======
+"sCz" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "chem-morgue-airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/obj/machinery/door/airlock/external{
+ name = "Lower Medical External Access";
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sCA" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -62754,6 +125531,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"sCK" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sCQ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -62763,6 +125547,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/hfr_room)
+<<<<<<< HEAD
"sCX" = (
/obj/effect/turf_decal/siding/wood/corner,
/obj/machinery/newscaster/directional/west,
@@ -62771,6 +125556,17 @@
"sCZ" = (
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+"sCZ" = (
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"sDd" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sDg" = (
/obj/effect/turf_decal/siding/purple/corner{
dir = 1
@@ -62792,6 +125588,7 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"sDM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -62800,6 +125597,12 @@
/obj/effect/spawner/random/trash/grille_or_waste,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+=======
+"sDB" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sDQ" = (
/obj/item/radio/intercom/prison/directional/north,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -62818,6 +125621,7 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"sEg" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 4
@@ -62825,6 +125629,23 @@
/obj/structure/sign/poster/random/directional/west,
/turf/open/floor/iron/large,
/area/station/hallway/secondary/entry)
+=======
+"sDV" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/ai_upload";
+ name = "AI Upload Turret Control";
+ pixel_y = -25
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Bridge Center"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEi" = (
/turf/open/floor/carpet,
/area/station/service/library)
@@ -62845,10 +125666,13 @@
},
/turf/open/floor/plating,
/area/mine/living_quarters)
+<<<<<<< HEAD
"sEv" = (
/obj/item/flashlight/lantern/on,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEz" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -62890,11 +125714,14 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"sEI" = (
/obj/machinery/light/small/dim/directional/north,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/medical/morgue)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEK" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze{
@@ -62913,6 +125740,16 @@
/obj/effect/turf_decal/tile/blue/full,
/turf/open/floor/iron/large,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"sEN" = (
+/obj/machinery/atmospherics/components/unary/passive_vent/layer2{
+ dir = 8
+ },
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEO" = (
/obj/machinery/light/floor,
/turf/open/floor/iron/smooth,
@@ -62969,6 +125806,7 @@
/obj/machinery/light/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"sFN" = (
/obj/structure/sign/warning/electric_shock/directional/south,
/obj/structure/cable,
@@ -62977,6 +125815,14 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+"sFJ" = (
+/obj/structure/fence/post{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sFS" = (
/obj/structure/railing/corner{
dir = 8
@@ -62992,6 +125838,7 @@
dir = 1
},
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
"sGf" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/extinguisher_cabinet/directional/north,
@@ -63004,11 +125851,14 @@
},
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGk" = (
/obj/effect/turf_decal/trimline/yellow/filled/line,
/obj/structure/sign/poster/random/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"sGn" = (
/obj/effect/turf_decal/siding/thinplating/dark{
dir = 8
@@ -63023,6 +125873,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGp" = (
/obj/effect/turf_decal/tile/red{
dir = 4
@@ -63048,6 +125900,13 @@
},
/turf/open/floor/iron/dark,
/area/station/commons/storage/mining)
+<<<<<<< HEAD
+=======
+"sGw" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/genturf/blue,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGE" = (
/obj/effect/turf_decal/stripes/asteroid/line{
dir = 4
@@ -63057,6 +125916,18 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/mine/living_quarters)
+<<<<<<< HEAD
+=======
+"sGG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cart Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/kitchen,
+/obj/effect/mapping_helpers/airlock/access/any/service/hydroponics,
+/obj/structure/barricade/wooden/snowed,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGH" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -63082,6 +125953,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"sGM" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -63090,11 +125962,30 @@
/obj/structure/sign/warning/directional/east,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/station/maintenance/port/lesser)
+=======
+"sGL" = (
+/obj/structure/grille/broken,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"sGT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
+=======
+"sHa" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/bureaucracy/briefcase,
+/obj/item/taperecorder/empty,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sHc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/medical/glass{
@@ -63108,22 +125999,41 @@
/obj/effect/turf_decal/tile/yellow/full,
/turf/open/floor/iron/large,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
+=======
+"sHe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sHh" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/carpet,
/area/station/service/chapel)
+<<<<<<< HEAD
"sHi" = (
/obj/effect/turf_decal/siding/dark{
dir = 6
},
/turf/open/floor/iron/checker,
/area/station/hallway/secondary/service)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sHl" = (
/obj/machinery/vending/coffee,
/obj/item/radio/intercom/directional/south,
/turf/open/floor/stone,
/area/mine/eva/lower)
"sHs" = (
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/neutral/diagonal_edge,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -63140,6 +126050,16 @@
},
/turf/open/floor/iron/dark,
/area/station/commons/storage/primary)
+=======
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"sHt" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/caution_sign,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sHC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -63174,17 +126094,21 @@
/obj/effect/turf_decal/tile/yellow/opposingcorners,
/turf/open/floor/iron,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"sHV" = (
/obj/machinery/atmospherics/components/tank/air{
initialize_directions = 2
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sHX" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/smooth,
/area/mine/mechbay)
+<<<<<<< HEAD
"sIg" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/brown{
@@ -63200,6 +126124,19 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+"sIb" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/light/warm/directional/north,
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"sIl" = (
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sIt" = (
/turf/closed/wall,
/area/station/maintenance/central/lesser)
@@ -63241,6 +126178,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/mine/storage)
+<<<<<<< HEAD
"sIX" = (
/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
/obj/machinery/door/airlock/hydroponics/glass{
@@ -63251,21 +126189,35 @@
},
/turf/open/floor/iron/textured,
/area/station/service/hydroponics)
+=======
+"sIZ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sJe" = (
/obj/machinery/deepfryer,
/obj/machinery/light/warm/directional/north,
/turf/open/floor/iron/cafeteria,
/area/station/security/prison/mess)
+<<<<<<< HEAD
"sJg" = (
/obj/effect/turf_decal/siding/white{
dir = 4
},
/turf/open/floor/iron/white/smooth_large,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sJi" = (
/obj/machinery/vending/donksofttoyvendor,
/turf/open/floor/iron/dark/textured,
/area/station/security/prison/safe)
+<<<<<<< HEAD
"sJn" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/warning/gas_mask/directional/west,
@@ -63274,6 +126226,8 @@
},
/turf/open/floor/iron/dark,
/area/station/cargo/miningdock)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sJq" = (
/obj/structure/extinguisher_cabinet/directional/west,
/obj/effect/turf_decal/tile/yellow{
@@ -63299,6 +126253,7 @@
},
/turf/open/floor/plating/icemoon,
/area/station/security/execution/education)
+<<<<<<< HEAD
"sJu" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -63314,6 +126269,8 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sJA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -63322,6 +126279,7 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
"sJH" = (
/turf/closed/wall,
/area/mine/living_quarters)
@@ -63345,6 +126303,31 @@
},
/turf/open/floor/iron/white/corner,
/area/station/science/explab)
+=======
+"sJC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sink/directional/south,
+/obj/structure/mirror/directional/north,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"sJH" = (
+/turf/closed/wall,
+/area/mine/living_quarters)
+"sJI" = (
+/obj/structure/closet/crate/wooden,
+/obj/item/camera_film{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/camera,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sJR" = (
/obj/machinery/door/airlock/security/glass{
name = "Labor Camp Airlock"
@@ -63383,6 +126366,14 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/wood,
/area/station/command/meeting_room)
+<<<<<<< HEAD
+=======
+"sKT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sKW" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 4
@@ -63409,6 +126400,7 @@
},
/turf/open/floor/iron/dark/corner,
/area/station/security/processing)
+<<<<<<< HEAD
"sLm" = (
/obj/structure/chair/sofa/left/brown{
dir = 4
@@ -63428,6 +126420,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sLD" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/iron/fifty,
@@ -63476,6 +126470,14 @@
dir = 1
},
/area/station/security/prison)
+<<<<<<< HEAD
+=======
+"sMy" = (
+/obj/structure/flora/tree/pine/style_random,
+/obj/structure/flora/grass/both/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sML" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -63491,6 +126493,15 @@
dir = 1
},
/area/station/security/office)
+<<<<<<< HEAD
+=======
+"sNj" = (
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sNr" = (
/obj/machinery/door/airlock/security/glass{
id_tag = "permainner";
@@ -63543,6 +126554,16 @@
/obj/structure/marker_beacon/burgundy,
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+<<<<<<< HEAD
+=======
+"sNF" = (
+/obj/item/toy/snowball{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sNI" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -63550,6 +126571,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"sNQ" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -63566,6 +126588,23 @@
/obj/effect/mapping_helpers/airlock/access/all/command/general,
/turf/open/floor/iron,
/area/station/command/bridge)
+=======
+"sNL" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/security/general,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"sOd" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sOm" = (
/obj/structure/railing{
dir = 4
@@ -63606,11 +126645,14 @@
},
/turf/open/floor/iron,
/area/station/cargo/office)
+<<<<<<< HEAD
"sON" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sOO" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
@@ -63621,12 +126663,15 @@
/obj/item/kitchen/fork/plastic,
/turf/open/floor/iron,
/area/station/security/prison/mess)
+<<<<<<< HEAD
"sOX" = (
/obj/machinery/light/small/directional/west,
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/iron/smooth,
/area/station/maintenance/starboard/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sOY" = (
/obj/structure/table/glass,
/obj/item/hemostat,
@@ -63634,6 +126679,18 @@
/obj/item/storage/bag/trash,
/turf/open/floor/iron,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"sPq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/ordnance/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sPA" = (
/obj/structure/rack,
/obj/item/storage/bag/ore,
@@ -63645,6 +126702,21 @@
/obj/item/clothing/suit/hooded/wintercoat,
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
+=======
+"sPE" = (
+/obj/machinery/conveyor{
+ id = "mining_internal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sPG" = (
/obj/effect/landmark/generic_maintenance_landmark,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -63652,6 +126724,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/department/medical/morgue)
+<<<<<<< HEAD
"sPK" = (
/obj/structure/table,
/obj/machinery/recharger{
@@ -63672,6 +126745,20 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/stone,
/area/station/service/bar/atrium)
+=======
+"sPJ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/medbay/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sPV" = (
/obj/machinery/door/airlock/atmos/glass,
/obj/machinery/door/firedoor/heavy,
@@ -63720,6 +126807,7 @@
/obj/item/radio/intercom/directional/west,
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"sRc" = (
/obj/structure/window/reinforced/spawner/directional/south,
/obj/structure/window/reinforced/spawner/directional/west,
@@ -63746,6 +126834,58 @@
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+=======
+"sQI" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"sQS" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"sRu" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"sRw" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"sRz" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Coldroom"
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/service/kitchen/coldroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sRI" = (
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
@@ -63785,6 +126925,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/security/prison/workout)
+<<<<<<< HEAD
"sSz" = (
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/iron/white,
@@ -63799,6 +126940,8 @@
dir = 1
},
/area/station/science/research)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sSF" = (
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
@@ -63807,6 +126950,22 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"sSN" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Engineering External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "Engineering-External"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/station/engineering/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sSO" = (
/obj/machinery/light/small/directional/south,
/obj/structure/closet/secure_closet/brig{
@@ -63827,10 +126986,32 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"sSS" = (
/obj/machinery/incident_display/delam/directional/north,
/turf/open/floor/iron/dark,
/area/station/engineering/lobby)
+=======
+"sSX" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/table,
+/obj/item/paper{
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -5
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen/coldroom)
+"sTb" = (
+/obj/structure/railing/wooden_fence,
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sTe" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
@@ -63859,6 +127040,22 @@
},
/turf/open/floor/catwalk_floor/iron_smooth,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"sTl" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/structure/minecart_rail{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sTn" = (
/obj/structure/table,
/obj/machinery/newscaster/directional/north,
@@ -63882,6 +127079,33 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat/maint)
+<<<<<<< HEAD
+=======
+"sTA" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"sTH" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"sTL" = (
+/obj/structure/fireplace{
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sTO" = (
/obj/machinery/door/airlock{
name = "Unisex Restroom"
@@ -63895,6 +127119,7 @@
/obj/structure/microscope,
/turf/open/floor/iron/grimy,
/area/station/security/prison/work)
+<<<<<<< HEAD
"sTV" = (
/obj/machinery/door/airlock/maintenance{
name = "Teleporter Maintenance"
@@ -63909,6 +127134,8 @@
/obj/effect/mapping_helpers/airlock/access/all/command/teleporter,
/turf/open/floor/plating,
/area/station/maintenance/central/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sUb" = (
/obj/machinery/door/airlock/security/glass{
name = "Permabrig Visitation"
@@ -63918,6 +127145,7 @@
/obj/effect/mapping_helpers/airlock/access/any/security/brig,
/turf/open/floor/iron,
/area/station/security/prison/visit)
+<<<<<<< HEAD
"sUi" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -63927,6 +127155,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sUv" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 1
@@ -63943,6 +127173,10 @@
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+<<<<<<< HEAD
+=======
+/obj/structure/sign/warning/cold_temp/directional/east,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/smooth,
/area/mine/eva)
"sUN" = (
@@ -63965,6 +127199,7 @@
/obj/structure/extinguisher_cabinet/directional/east,
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
"sVf" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -63983,6 +127218,18 @@
},
/turf/open/floor/iron/white,
/area/station/science/genetics)
+=======
+"sVi" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Research Break Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sVm" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
@@ -63993,6 +127240,14 @@
/obj/machinery/light_switch/directional/north,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/locker)
+<<<<<<< HEAD
+=======
+"sVA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sVL" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
@@ -64000,8 +127255,31 @@
/area/station/engineering/atmos)
"sVN" = (
/obj/item/screwdriver,
+<<<<<<< HEAD
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+=======
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"sVW" = (
+/obj/effect/decal/cleanable/garbage,
+/obj/item/reagent_containers/spray/chemsprayer/party{
+ pixel_x = 1
+ },
+/obj/item/clothing/head/costume/festive{
+ pixel_y = -3;
+ pixel_x = -5
+ },
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sWl" = (
/obj/machinery/door/airlock/command{
name = "Chief Medical Officer"
@@ -64041,6 +127319,7 @@
/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
/turf/open/floor/iron/textured_half,
/area/mine/production)
+<<<<<<< HEAD
"sWS" = (
/obj/structure/railing,
/obj/effect/turf_decal/siding/white,
@@ -64050,10 +127329,45 @@
},
/turf/open/floor/wood,
/area/station/commons/lounge)
+=======
+"sWN" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Prosecution"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"sWO" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sWU" = (
/obj/structure/chair/stool/directional/south,
/turf/open/floor/iron,
/area/mine/production)
+<<<<<<< HEAD
+=======
+"sXa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sXb" = (
/obj/machinery/status_display/ai/directional/north,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -64075,6 +127389,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/fore/lesser)
+<<<<<<< HEAD
"sXf" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/table/reinforced,
@@ -64094,12 +127409,15 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sXk" = (
/obj/effect/mapping_helpers/broken_floor,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/smooth,
/area/station/maintenance/fore/lesser)
+<<<<<<< HEAD
"sXC" = (
/obj/structure/table,
/obj/machinery/button/ignition{
@@ -64117,6 +127435,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sXK" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -64132,6 +127452,7 @@
dir = 9
},
/obj/effect/turf_decal/trimline/dark_green/corner{
+<<<<<<< HEAD
dir = 1
},
/obj/effect/turf_decal/trimline/dark_green/line{
@@ -67278,6 +130599,3355 @@
/turf/open/floor/iron/smooth,
/area/station/maintenance/port/greater)
"tXB" = (
+=======
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"sYe" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/suit/red,
+/obj/item/flashlight/flare/candle{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/flashlight/flare/candle{
+ pixel_x = 8;
+ pixel_y = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/painting/large/library_private{
+ dir = 1
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"sYz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/machinery/camera/directional/south{
+ c_tag = "Mining B-1 Hallway North";
+ network = list("ss13", "mine")
+ },
+/turf/open/floor/iron/dark/side,
+/area/mine/eva)
+"sYA" = (
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/fluff/tram_rail,
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"sYG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"sYU" = (
+/obj/structure/grille/broken,
+/obj/effect/spawner/random/trash/moisture_trap,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"sZa" = (
+/obj/effect/turf_decal/box/white{
+ color = "#9FED58"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"sZB" = (
+/obj/structure/noticeboard/directional/north,
+/turf/open/openspace,
+/area/station/service/bar/atrium)
+"sZD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"sZF" = (
+/turf/closed/wall,
+/area/station/maintenance/aft/greater)
+"sZO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"taf" = (
+/obj/effect/landmark/start/quartermaster,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/qm)
+"tai" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"taj" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"tak" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"tau" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"tav" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"tay" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/bar/atrium)
+"taC" = (
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"taN" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"taV" = (
+/obj/structure/cable/multilayer/multiz,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"tba" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"tbb" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"tbh" = (
+/turf/open/floor/iron/half{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"tbl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/sign/departments/lawyer/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"tbH" = (
+/obj/structure/table/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"tbL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/wood/large,
+/area/station/service/bar)
+"tbN" = (
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/machinery/door/airlock/engineering{
+ name = "Utilities Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"tbQ" = (
+/turf/open/floor/iron/grimy,
+/area/station/maintenance/aft/greater)
+"tbX" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"tcD" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/hangover,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/exit/departure_lounge)
+"tcJ" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"tcL" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/rack,
+/obj/item/stack/ducts/fifty,
+/obj/item/storage/box/swab,
+/obj/effect/spawner/random/contraband/permabrig_gear,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/prison/work)
+"tcQ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Permabrig Recreation";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/siding/wideplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+"tcR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"tcX" = (
+/obj/structure/railing,
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/science/ordnance)
+"tdb" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"tdc" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/food_or_drink/refreshing_beverage,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"tdp" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"tdE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "pharmacy_shutters2";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/pharmacy)
+"tdI" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner,
+/obj/structure/sign/warning/directional/north,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"tdK" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/sign/departments/engineering/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"tdR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"tdU" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/barsign/directional/north,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"tdY" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/requests_console/auto_name/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"tec" = (
+/obj/structure/cable,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"tei" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"teq" = (
+/obj/structure/railing,
+/obj/structure/rack,
+/obj/structure/cable,
+/obj/machinery/door/firedoor/border_only,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/effect/spawner/random/armory/dragnet,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"teE" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "vacantofficemaintshutter";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/office)
+"teN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"teP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/brig/entrance)
+"teQ" = (
+/obj/machinery/chem_master{
+ name = "CytoMaster 5000"
+ },
+/obj/item/swab{
+ pixel_y = 10;
+ pixel_x = -2
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"teZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"tfk" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tfl" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ desc = "Used to grind things up into raw materials and liquids.";
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"tfx" = (
+/obj/machinery/portable_atmospherics/canister/water_vapor,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"tfM" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"tfO" = (
+/obj/structure/table/wood,
+/obj/item/pai_card,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"tfR" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Engine Coolant Bypass"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"tgd" = (
+/obj/machinery/door/airlock{
+ name = "Garden"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"tge" = (
+/obj/machinery/button/door/directional/east{
+ id = "commissaryshutter";
+ name = "Commissary Shutter Control"
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/east{
+ id = "commissarydoor";
+ name = "Commissary Door Lock";
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ pixel_x = 35
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"tgj" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tgn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/ai_monitored/command/storage/eva)
+"tgq" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tgv" = (
+/obj/machinery/skill_station,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/requests_console/auto_name/directional/north,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"tgx" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"tgB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/science/genetics)
+"tgH" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"tgP" = (
+/mob/living/simple_animal/bot/secbot/beepsky/armsky,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"thA" = (
+/turf/open/genturf/blue,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"thC" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/electronics/airlock,
+/obj/item/electronics/airlock,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"thD" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"thE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"thI" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Fore Primary Hallway - Courtroom Hallway"
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"thK" = (
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/radio/off,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/start/depsec/supply,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"thM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"thP" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/decal/cleanable/ash,
+/obj/item/rack_parts,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"thW" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"thX" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"thY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"tia" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/machinery/camera/directional/east{
+ c_tag = "Research Division Office";
+ network = list("ss13","rd")
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/lab)
+"tii" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/item/kirbyplants/organic/plant2,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"tis" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"tix" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"tiI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"tiT" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"tiV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/chapel)
+"tiX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/plastic,
+/area/station/commons/dorms/laundry)
+"tiY" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"tiZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/storage)
+"tjf" = (
+/obj/structure/fence/door,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"tjk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"tjo" = (
+/turf/open/genturf,
+/area/icemoon/underground/unexplored/rivers)
+"tjs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tjv" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"tjC" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"tjG" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/item/gun/ballistic/shotgun/doublebarrel,
+/obj/structure/rack,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/box/red,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"tjH" = (
+/obj/effect/turf_decal/loading_area,
+/obj/effect/turf_decal/siding/yellow,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/iron/half{
+ dir = 1
+ },
+/area/station/engineering/storage)
+"tjM" = (
+/obj/structure/table/wood,
+/obj/item/soap/deluxe{
+ pixel_y = 11
+ },
+/obj/item/soap/deluxe{
+ pixel_y = 6
+ },
+/obj/item/soap/deluxe,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"tjN" = (
+/obj/structure/closet/secure_closet/personal{
+ anchored = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"tjY" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"tkc" = (
+/obj/machinery/airalarm/directional/north,
+/obj/item/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+"tkf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"tkp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"tkP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"tkT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/small/dim/directional/north,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"tkU" = (
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/surface/outdoors/nospawn)
+"tkX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"tla" = (
+/obj/structure/marker_beacon/jade,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"tlf" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"tlh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"tlm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"tln" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"tlo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/command/storage/eva)
+"tlt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/status_display/door_timer{
+ pixel_x = -32;
+ id = "Cell 3";
+ name = "Cell 3"
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"tlA" = (
+/obj/machinery/light/small/directional/south,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"tlE" = (
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tlH" = (
+/turf/open/openspace/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tlO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"tlP" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/button/door/directional/north{
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ req_access = list("robotics")
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"tlS" = (
+/obj/machinery/door/airlock/security{
+ name = "Permanent Cell 3"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/safe)
+"tma" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"tml" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tmw" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"tmy" = (
+/obj/machinery/plate_press,
+/obj/effect/turf_decal/siding/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/prison/work)
+"tmA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"tmB" = (
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"tmE" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ name = "Bench"
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/dark,
+/area/mine/eva/lower)
+"tmL" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"tmQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/bridge)
+"tmR" = (
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tnb" = (
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"tnp" = (
+/obj/structure/table,
+/obj/item/folder/blue{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/folder/yellow,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"tnu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/item/rack_parts,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tny" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Fore Primary Hallway"
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"tnD" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/obj/structure/bed{
+ dir = 1
+ },
+/obj/effect/spawner/random/bedsheet{
+ dir = 1
+ },
+/obj/effect/spawner/random/contraband/permabrig_gear,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"tnI" = (
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"tnO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"tnP" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"toi" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/east,
+/obj/machinery/status_display/evac/directional/south,
+/obj/structure/chair/sofa/left/brown{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"too" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"toq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"toG" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/shower/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"toT" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"toV" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"toW" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/navigate_destination/gateway,
+/obj/machinery/holopad,
+/turf/open/floor/iron/large,
+/area/station/command/gateway)
+"tpc" = (
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_y = -30
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tpd" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"tpk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/binary/pressure_valve/on{
+ dir = 4;
+ name = "Output Release"
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"tpG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/landmark/navigate_destination,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/locker)
+"tpH" = (
+/turf/closed/wall,
+/area/station/security/execution/education)
+"tpO" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"tpX" = (
+/obj/item/storage/box/bodybags,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/item/reagent_containers/syringe{
+ name = "steel point"
+ },
+/obj/item/reagent_containers/cup/bottle/multiver,
+/obj/item/reagent_containers/cup/bottle/epinephrine,
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"tqk" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/item/key/janitor,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"tqs" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"tqy" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/space_heater,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"tqJ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/heavy{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/north{
+ areastring = "/area/station/science/ordnance/burnchamber"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"tqQ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tqR" = (
+/obj/docking_port/stationary/escape_pod{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"trc" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"trm" = (
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"tro" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Aft Primary Hallway South";
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/light/small/directional/east,
+/obj/structure/sign/departments/engineering/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"tru" = (
+/obj/structure/chair/pew/left{
+ dir = 1
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"trA" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/obey/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/execution/transfer)
+"trK" = (
+/obj/structure/disposalpipe/junction/flip,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"trT" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tsa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/freezer,
+/area/station/science/xenobiology)
+"tsc" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"tsh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"tsk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tsl" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"tsr" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/rnd/server/master,
+/turf/open/openspace/icemoon,
+/area/station/science/server)
+"tsu" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/entertainment/cigarette,
+/obj/effect/spawner/random/entertainment/lighter,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+"tsz" = (
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/get_your_legs/directional/north,
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 4
+ },
+/area/station/ai_monitored/command/storage/eva)
+"tsH" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Interrogation"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"tsP" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"tsQ" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Public Mining Storage"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"tsR" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/decal/cleanable/oil/slippery,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"ttb" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"ttk" = (
+/obj/machinery/door/airlock/freezer,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"ttw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/science/lab)
+"ttD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/sign/painting/large,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"ttI" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm5";
+ name = "Cabin 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"ttT" = (
+/obj/machinery/door/airlock/mining/glass{
+ id_tag = "innercargo";
+ name = "Cargo Bay"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"tuc" = (
+/turf/closed/wall,
+/area/station/ai_monitored/security/armory)
+"tue" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/supply)
+"tug" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Distribution Loop"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"tuk" = (
+/obj/structure/closet/crate/grave,
+/turf/open/misc/dirt/dark{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"tur" = (
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"tut" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"tuy" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/ignition{
+ id = "testigniter";
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+"tuz" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/trapdoor_remote/preloaded{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/machinery/recharger{
+ pixel_x = 5;
+ pixel_y = 2
+ },
+/obj/item/storage/wallet/random{
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"tuD" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ dir = 4;
+ name = "Auxiliary Dock"
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"tuH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"tuQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/service/chapel)
+"tva" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/openspace,
+/area/station/service/chapel)
+"tvd" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos)
+"tvk" = (
+/obj/structure/sign/warning/docking/directional/north,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"tvm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"tvt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/chair/stool/bar/directional/north,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"tvv" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Research Director"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/mapping_helpers/airlock/access/all/science/rd,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"tvF" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/engine_smes)
+"tvJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"tvK" = (
+/obj/structure/closet{
+ name = "evidence closet 2"
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/evidence)
+"tvW" = (
+/obj/machinery/computer/telecomms/monitor{
+ dir = 4;
+ network = "tcommsat"
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"tvZ" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"twn" = (
+/obj/machinery/vending/wardrobe/chef_wardrobe,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 8
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/sign/poster/contraband/moffuchis_pizza/directional/east,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"twt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"tww" = (
+/obj/effect/landmark/start/prisoner,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/holopad,
+/turf/open/floor/carpet/red,
+/area/station/security/prison/work)
+"twK" = (
+/obj/machinery/porta_turret/ai{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 9
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"twU" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"twV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"twZ" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"txc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Construction Area Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/construction,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"txf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"txj" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"txm" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"txo" = (
+/obj/effect/turf_decal/siding/yellow/end{
+ dir = 4
+ },
+/obj/machinery/plumbing/receiver,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"txE" = (
+/obj/item/cigbutt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"txH" = (
+/obj/machinery/vending/wallmed/directional/south,
+/obj/structure/cable,
+/obj/structure/table/glass,
+/obj/item/stack/sticky_tape/surgical,
+/obj/item/stack/medical/bone_gel,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/camera/directional/south{
+ c_tag = "Surgery B";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"txI" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"txU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"txX" = (
+/obj/structure/water_source/puddle,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"tyb" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"tyi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light/floor,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"tyl" = (
+/obj/structure/ladder,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"tym" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/fore/lesser)
+"tyv" = (
+/obj/effect/landmark/start/librarian,
+/obj/structure/chair/office,
+/turf/open/floor/wood,
+/area/station/service/library)
+"tyK" = (
+/obj/item/mop,
+/obj/item/reagent_containers/cup/bucket,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"tyS" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Distro"
+ },
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"tzf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"tzE" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/mine/eva)
+"tzH" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/structure/sign/warning/no_smoking/directional/north,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/glasses/meson/engine,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"tzM" = (
+/obj/structure/filingcabinet,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/newscaster/directional/west,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"tzP" = (
+/obj/structure/table,
+/obj/item/hand_labeler,
+/obj/item/storage/box/shipping,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/art)
+"tzR" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/neutral/filled/end{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"tAg" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"tAi" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/commons/storage/mining)
+"tAx" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"tAA" = (
+/obj/structure/table/glass,
+/obj/item/storage/fancy/candle_box,
+/turf/open/floor/iron/chapel{
+ dir = 4
+ },
+/area/station/service/chapel)
+"tAL" = (
+/obj/structure/table,
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/mine/laborcamp)
+"tAN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tAO" = (
+/obj/machinery/space_heater,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/lesser)
+"tAS" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Dock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "miner-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"tAT" = (
+/obj/structure/stairs/east,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/service/kitchen/coldroom)
+"tBq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance_hatch,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/structure/sign/warning/radiation/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"tBs" = (
+/turf/closed/wall,
+/area/station/maintenance/department/chapel)
+"tBw" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"tBL" = (
+/obj/machinery/computer/atmos_control/nitrogen_tank{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"tBR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/depsec/supply,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"tCe" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"tCj" = (
+/obj/structure/sign/warning,
+/turf/closed/wall/r_wall,
+/area/icemoon/surface/outdoors/nospawn)
+"tCk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"tCu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"tCx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"tCB" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"tCF" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics - Mixing Room East"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"tCL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"tCR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "Interrogation";
+ name = "Interrogation Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/security/interrogation)
+"tCW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/machinery/meter,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"tDa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/production)
+"tDg" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/turf/open/floor/glass/reinforced/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tDj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"tDk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"tDw" = (
+/obj/machinery/suit_storage_unit/hos,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/west,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/hos)
+"tDy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tDL" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory/upper)
+"tDN" = (
+/obj/structure/chair{
+ name = "Defense"
+ },
+/obj/effect/landmark/start/lawyer,
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"tDS" = (
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tDU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"tDY" = (
+/obj/machinery/vending/cola/sodie,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"tEc" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"tEe" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"tEi" = (
+/obj/structure/sink/directional/south,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"tEj" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"tEs" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"tEw" = (
+/turf/open/genturf/blue,
+/area/icemoon/underground/unexplored/rivers)
+"tEC" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"tEL" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"tEO" = (
+/obj/structure/closet,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/button/door/directional/north{
+ id = "miningdorm_A";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/carpet/donk,
+/area/mine/production)
+"tEZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos/pumproom)
+"tFd" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"tFe" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/effect/landmark/start/cook,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"tFs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"tFw" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Central Hallway North-West"
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tFF" = (
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/research,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/science/lab)
+"tFI" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Fitness Maintenance"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"tFV" = (
+/obj/structure/cable,
+/obj/machinery/light/directional/south,
+/obj/structure/closet/secure_closet/psychology,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"tFY" = (
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ id_tag = "virology_airlock_interior";
+ name = "Virology Interior Airlock"
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/virology)
+"tGi" = (
+/obj/effect/turf_decal/stripes/end,
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"tGr" = (
+/turf/closed/mineral/random/snow,
+/area/icemoon/surface/outdoors/nospawn)
+"tGs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"tGx" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Departure Lounge East"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"tGz" = (
+/obj/machinery/door/airlock/hydroponics/glass{
+ name = "Apiary"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/hydroponics)
+"tGA" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/security/prison)
+"tGB" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"tGE" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/stairs/south,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/commons/lounge)
+"tGF" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Bridge East"
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"tGH" = (
+/obj/structure/cable,
+/turf/open/floor/iron/edge{
+ dir = 1
+ },
+/area/station/engineering/lobby)
+"tGJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"tGP" = (
+/obj/machinery/conveyor{
+ id = "gulag"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/mine/laborcamp)
+"tHb" = (
+/obj/effect/spawner/random/structure/musician/piano/random_piano,
+/obj/machinery/button/curtain{
+ pixel_x = -32;
+ id = "cantena_curtains"
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"tHi" = (
+/obj/structure/filingcabinet,
+/obj/machinery/requests_console/directional/west{
+ department = "Captain's Desk";
+ name = "Captain's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"tHj" = (
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"tHr" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/treatment_center)
+"tHv" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"tHw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tHJ" = (
+/obj/structure/mannequin/skeleton,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"tHK" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"tHQ" = (
+/obj/effect/turf_decal/stripes/asteroid/corner{
+ dir = 4
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/folder/white,
+/obj/effect/turf_decal/tile/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/mine/living_quarters)
+"tHT" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/camera/directional/south{
+ c_tag = "Ordnance Upper Mix Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"tHX" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"tIf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"tIh" = (
+/obj/structure/light_construct/directional/south,
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"tIq" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"tIu" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sink/directional/west,
+/obj/structure/sign/warning/biohazard/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"tIw" = (
+/obj/structure/table/wood,
+/obj/item/food/grown/harebell{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/food/grown/harebell{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/food/grown/harebell,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"tIC" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tIM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"tIS" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"tIW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"tJh" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/item/kirbyplants/random,
+/obj/machinery/light/warm/directional/south,
+/obj/machinery/digital_clock/directional/south,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"tJl" = (
+/obj/effect/decal/cleanable/blood/tracks,
+/obj/structure/fence/cut/large{
+ dir = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"tJu" = (
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"tJD" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/turf/open/misc/dirt/dark{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored)
+"tJE" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"tJG" = (
+/obj/machinery/firealarm/directional/south,
+/obj/item/experi_scanner{
+ pixel_x = 4
+ },
+/obj/item/experi_scanner,
+/obj/item/experi_scanner{
+ pixel_x = -4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/science/lab)
+"tJI" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "robo1"
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"tJK" = (
+/obj/structure/transit_tube/horizontal,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tJN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/office)
+"tJR" = (
+/obj/structure/rack,
+/obj/item/tank/internals/oxygen,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plating,
+/area/station/command/teleporter)
+"tJY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"tKi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/lobby)
+"tKm" = (
+/obj/structure/ore_container/food_trough/raptor_trough,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+"tKq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"tKz" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tKB" = (
+/obj/structure/chair/pew/left,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"tKD" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "Biohazard Containment Door"
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"tKH" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"tKI" = (
+/turf/closed/wall,
+/area/station/maintenance/port/greater)
+"tKJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_y = 32
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tKN" = (
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tKO" = (
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"tKV" = (
+/obj/structure/table_frame,
+/obj/effect/decal/cleanable/glass,
+/obj/item/food/canned/peaches/maint,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"tKW" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Unfiltered & Air to Mix"
+ },
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"tKY" = (
+/obj/structure/rack,
+/obj/item/soap{
+ pixel_y = -2
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Ordnance Lower Mix Lab";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"tKZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"tLe" = (
+/obj/machinery/cryo_cell,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"tLi" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tLj" = (
+/obj/structure/flora/rock/pile/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"tLm" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"tLp" = (
+/obj/machinery/computer/records/medical{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"tLB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"tLF" = (
+/turf/closed/wall,
+/area/station/hallway/primary/starboard)
+"tLI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "kitchencounter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"tLL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"tLM" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Robotics Lab - South";
+ network = list("ss13","rd")
+ },
+/obj/machinery/mechpad,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"tLQ" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"tLT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"tLW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"tMa" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tMc" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tMe" = (
+/obj/machinery/computer/mechpad{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"tMk" = (
+/obj/machinery/duct,
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance{
+ name = "Virology Service Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"tMD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"tMI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/closet/secure_closet/exile,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/command/gateway)
+"tMO" = (
+/turf/closed/wall,
+/area/station/medical/break_room)
+"tMS" = (
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"tMY" = (
+/obj/item/reagent_containers/cup/glass/bottle/vodka/badminka,
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tNd" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/siding/green{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"tNi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"tNk" = (
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"tNw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"tNx" = (
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"tNz" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"tND" = (
+/obj/effect/turf_decal/stripes/asteroid/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/mine/living_quarters)
+"tNJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"tOb" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/light/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay Chemistry Lab - South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"tOi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"tOk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"tOq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"tOw" = (
+/turf/closed/wall,
+/area/station/commons/toilet/locker)
+"tOy" = (
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"tOE" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"tOF" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"tOX" = (
+/obj/machinery/light/small/broken/directional/south,
+/obj/item/trash/energybar,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tPz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/science/research)
+"tPC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"tPG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"tPH" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tPL" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"tPT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"tPV" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"tPW" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Secure Walkway"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/security/brig/entrance)
+"tPY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"tQb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tQc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/storage)
+"tQM" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"tQS" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/status_display/ai/directional/east,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"tQW" = (
+/obj/item/kirbyplants/organic/plant5,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"tQX" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"tRd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"tRo" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/starboard)
+"tRq" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/item/toy/plush/moth{
+ name = "Theseus"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/sign/flag/mothic/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tRP" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"tRX" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"tRZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"tSb" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/bluespace_vendor/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"tSi" = (
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig/upper)
+"tSj" = (
+/obj/structure/fence/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"tSs" = (
+/obj/item/flashlight/lantern{
+ start_on = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"tSx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"tSF" = (
+/obj/machinery/door/window/left/directional/west{
+ req_one_access = list("bar", "kitchen");
+ name = "Deliveries"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/textured,
+/area/station/service/kitchen/coldroom)
+"tTc" = (
+/obj/item/storage/bag/plants/portaseeder,
+/obj/structure/table/glass,
+/obj/item/plant_analyzer,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"tTK" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tTL" = (
+/obj/structure/chair,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"tTO" = (
+/obj/structure/fence/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tTV" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"tTY" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"tUh" = (
+/obj/item/chair/wood,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"tUn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"tUo" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"tUx" = (
+/obj/effect/spawner/random/trash/moisture_trap,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"tUz" = (
+/obj/machinery/button/door/directional/north{
+ id = "permainner";
+ name = "Inner Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ req_access = list("brig");
+ specialfunctions = 4
+ },
+/obj/machinery/button/door/directional/north{
+ id = "permaouter";
+ name = "Outer Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ req_access = list("brig");
+ specialfunctions = 4
+ },
+/obj/machinery/photobooth/security,
+/obj/machinery/button/flasher{
+ id = "transferflash";
+ pixel_y = 34
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"tUC" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"tUG" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance/four,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/construction)
+"tUK" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/mine/living_quarters)
+"tUN" = (
+/obj/machinery/atmospherics/components/binary/pump,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"tUO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/painting/large/library{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"tUV" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"tUX" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"tVd" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tVf" = (
+/turf/closed/wall,
+/area/station/security/prison)
+"tVn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"tVx" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tVA" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/closet/radiation,
+/obj/item/analyzer,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"tVF" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/tlv_cold_room,
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"tWc" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/spawner/random/trash/soap,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"tWd" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"tWj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/service/bar/backroom)
+"tWp" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "ai-passthrough"
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Atmospherics"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"tWy" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "MiniSat External Access"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"tWz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"tWJ" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/carpet/lone,
+/area/station/service/chapel)
+"tWK" = (
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"tWO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Permabrig Workroom";
+ network = list("ss13","prison")
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"tXb" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"tXc" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/effect/landmark/start/paramedic,
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"tXh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"tXk" = (
+/obj/machinery/shower/directional/west,
+/obj/structure/fluff/shower_drain,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"tXs" = (
+/obj/structure/ladder,
+/obj/machinery/light/small/red/directional/west,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/port/greater)
+"tXB" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/disposalpipe/segment{
@@ -67288,6 +133958,639 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+"tXM" = (
+/obj/machinery/hydroponics/constructable,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/plant_analyzer,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/green{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/mine/laborcamp)
+"tXV" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Chapel Mass Driver"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"tXY" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/multitool,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"tYe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"tYt" = (
+/obj/effect/turf_decal/tile/neutral/diagonal_edge,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/kitchen/diagonal,
+/area/station/service/kitchen)
+"tYu" = (
+/obj/effect/spawner/random/trash/hobo_squat,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tYz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"tYA" = (
+/obj/structure/cable,
+/obj/structure/table/glass,
+/obj/item/stack/sticky_tape/surgical,
+/obj/item/stack/medical/bone_gel,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"tYE" = (
+/obj/machinery/biogenerator,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"tYF" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"tYS" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tYW" = (
+/obj/machinery/light/directional/west,
+/obj/structure/chair,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+"tYZ" = (
+/obj/machinery/door/airlock/external{
+ name = "External Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"tZa" = (
+/obj/effect/turf_decal/weather/snow,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"tZd" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/shovel/spade,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"tZm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"tZp" = (
+/obj/structure/ladder,
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"tZv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"tZZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uab" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"uag" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"uah" = (
+/obj/machinery/light_switch/directional/west,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"uan" = (
+/obj/structure/disposalpipe/trunk/multiz,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"uao" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/secure_closet/personal,
+/obj/item/storage/briefcase/secure,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"uap" = (
+/obj/structure/fence/cut/large{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"uar" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"uau" = (
+/turf/open/openspace,
+/area/station/medical/medbay/lobby)
+"uaz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"uaG" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/storage)
+"uaT" = (
+/obj/machinery/rnd/experimentor,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"ubc" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"ubk" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"ubq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"ubx" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/east,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"ubE" = (
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ubF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ubG" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/stairs/medium,
+/area/mine/eva/lower)
+"ubH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ubY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/stool/directional/south,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/dark,
+/area/station/science/breakroom)
+"ucl" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen 4";
+ req_access = list("xenobiology")
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio4";
+ name = "Xenobio Pen 4 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"ucn" = (
+/obj/item/toy/snowball{
+ pixel_x = 9;
+ pixel_y = 1
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ucs" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"ucu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ucN" = (
+/turf/closed/wall/r_wall,
+/area/station/security/detectives_office)
+"ucO" = (
+/obj/structure/sign/warning/electric_shock,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"udj" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/mine/living_quarters)
+"udw" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"udA" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/item/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/status_display/evac/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+"udK" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"udL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance/glass,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"uee" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"uei" = (
+/obj/machinery/power/solar{
+ id = "auxsolareast";
+ name = "Port Auxiliary Solar Array"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"uen" = (
+/obj/structure/fence/door{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"uep" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"uer" = (
+/obj/structure/flora/tree/pine/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"uet" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/hos)
+"uey" = (
+/obj/machinery/power/supermatter_crystal/engine,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"ueD" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/sign/warning/directional/north,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"ueF" = (
+/obj/structure/sign/departments/holy/directional/east,
+/turf/open/openspace,
+/area/station/service/chapel)
+"ueP" = (
+/obj/structure/table,
+/obj/structure/reagent_dispensers/servingdish,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"ueS" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/station/ai_monitored/command/storage/eva)
+"ueV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"ufb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"uff" = (
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ufm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"ufF" = (
+/obj/structure/table,
+/obj/item/storage/box/prisoner{
+ pixel_y = 8
+ },
+/obj/item/storage/box/prisoner,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"ufN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"ugd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security - Permabrig Meditation";
+ network = list("ss13","prison")
+ },
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"ugi" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/computer/order_console/bitrunning{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ugq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"ugs" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/machinery/requests_console/auto_name/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"ugA" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ugG" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/multitool,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/department/electrical)
+"ugP" = (
+/obj/effect/turf_decal/siding/red{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"ugR" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/structure/cable,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+"ugX" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm3";
+ name = "Dorm 3"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"ugZ" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"uhb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"uht" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Pure to Mix"
+ },
+/obj/effect/turf_decal/siding/wideplating{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"uhx" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"uhA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/landmark/navigate_destination/dockaux,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"uhE" = (
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/mine/living_quarters)
+"uhF" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"uhH" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Chemistry Lab Utilities"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"uif" = (
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+<<<<<<< HEAD
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
"tXV" = (
/obj/machinery/airalarm/directional/north,
/obj/machinery/camera/directional/north{
@@ -68022,6 +135325,45 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/wood/parquet,
/area/station/service/bar/backroom)
+=======
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"uig" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/brown{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"uii" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 8
+ },
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"uiF" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/item/kirbyplants/random,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"uiI" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uja" = (
/turf/closed/wall,
/area/station/commons/toilet)
@@ -68031,10 +135373,13 @@
},
/turf/open/floor/wood,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"ujp" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
/turf/open/floor/engine/xenobio,
/area/station/science/xenobiology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ujs" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -68047,6 +135392,15 @@
/obj/machinery/status_display/evac/directional/south,
/turf/open/floor/iron/smooth,
/area/station/engineering/lobby)
+<<<<<<< HEAD
+=======
+"ujK" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ujP" = (
/obj/structure/table,
/obj/machinery/computer/security/telescreen/research,
@@ -68071,6 +135425,7 @@
/obj/effect/landmark/start/hangover,
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+<<<<<<< HEAD
"uks" = (
/obj/machinery/door/airlock/command{
name = "Conference Room"
@@ -68099,6 +135454,8 @@
},
/turf/open/floor/iron/dark,
/area/station/cargo/drone_bay)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ukz" = (
/obj/machinery/duct,
/obj/structure/disposalpipe/segment{
@@ -68121,6 +135478,35 @@
},
/turf/open/floor/iron/grimy,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"ukJ" = (
+/obj/effect/turf_decal/trimline/neutral/warning,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/item/flashlight{
+ pixel_y = 9
+ },
+/obj/item/flashlight{
+ pixel_y = 9
+ },
+/obj/item/flashlight{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/flashlight{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/dark/smooth_edge,
+/area/station/ai_monitored/command/storage/eva)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ukN" = (
/obj/structure/table,
/obj/machinery/door/poddoor/shutters{
@@ -68132,6 +135518,22 @@
/obj/machinery/door/window/left/directional/south,
/turf/open/floor/iron,
/area/station/security/prison/visit)
+<<<<<<< HEAD
+=======
+"ukR" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Teleporter Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/teleporter,
+/turf/open/floor/plating,
+/area/station/maintenance/central/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ukV" = (
/obj/structure/closet/crate/freezer,
/obj/item/reagent_containers/blood/random,
@@ -68168,6 +135570,16 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"ulm" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ult" = (
/turf/closed/wall/r_wall,
/area/station/science/robotics/lab)
@@ -68177,12 +135589,38 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/security/prison/safe)
+<<<<<<< HEAD
"ulE" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
dir = 1
},
/turf/open/floor/iron,
/area/station/science/ordnance)
+=======
+"ulL" = (
+/obj/machinery/modular_computer/preset/id,
+/obj/effect/turf_decal/tile/blue/full,
+/obj/machinery/camera/directional/north{
+ c_tag = "Chief Medical Office North";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/button/door/directional/east{
+ id = "cmoprivacy";
+ name = "CMO Shutter Control";
+ req_access = list("cmo")
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east{
+ pixel_x = 37
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"ulR" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uma" = (
/obj/item/chisel,
/obj/item/storage/toolbox/artistic,
@@ -68190,6 +135628,7 @@
/obj/item/storage/crayons,
/turf/open/floor/sepia,
/area/station/security/prison/rec)
+<<<<<<< HEAD
"umb" = (
/obj/structure/sign/warning/docking/directional/south,
/turf/open/misc/asteroid/snow/icemoon,
@@ -68201,6 +135640,18 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/stone,
/area/station/service/bar/atrium)
+=======
+"umg" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"umh" = (
+/turf/closed/wall/ice,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uml" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -68214,6 +135665,20 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
+=======
+"umv" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/research)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"umz" = (
/obj/effect/turf_decal/siding/yellow{
dir = 1
@@ -68234,6 +135699,7 @@
},
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+<<<<<<< HEAD
"umF" = (
/obj/structure/stairs/north,
/obj/structure/railing{
@@ -68241,6 +135707,17 @@
},
/turf/open/floor/iron,
/area/station/service/chapel)
+=======
+"umD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"umM" = (
+/obj/effect/landmark/start/clown,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"umR" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
@@ -68288,6 +135765,7 @@
/obj/machinery/gulag_teleporter,
/turf/open/floor/iron/showroomfloor,
/area/station/security/processing)
+<<<<<<< HEAD
"unM" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair{
@@ -68296,6 +135774,16 @@
/obj/structure/sign/departments/exodrone/directional/west,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"unG" = (
+/obj/machinery/computer/station_alert{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/computer/security/telescreen/ce/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"unO" = (
/obj/item/paper_bin{
pixel_x = -3;
@@ -68306,6 +135794,7 @@
/obj/structure/table,
/turf/open/floor/iron,
/area/station/cargo/office)
+<<<<<<< HEAD
"unT" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/official/random/directional/west,
@@ -68316,6 +135805,8 @@
dir = 8
},
/area/mine/eva)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uog" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -68372,6 +135863,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"uoF" = (
/obj/machinery/pdapainter/engineering,
/obj/machinery/button/door/directional/west{
@@ -68399,6 +135891,8 @@
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/iron/dark/textured,
/area/station/security/prison)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uoT" = (
/obj/structure/extinguisher_cabinet/directional/west,
/obj/structure/table,
@@ -68412,6 +135906,25 @@
/obj/effect/turf_decal/trimline/blue/filled/corner,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"uoY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "kitchencounter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 3
+ },
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -3
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"upa" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
@@ -68439,12 +135952,19 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/prison)
+<<<<<<< HEAD
"upx" = (
/obj/machinery/light_switch/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/duct,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet)
+=======
+"upB" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"upH" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -68464,6 +135984,20 @@
/obj/structure/tank_holder/extinguisher,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"upU" = (
+/obj/structure/table/wood,
+/obj/item/raptor_dex{
+ pixel_y = 13
+ },
+/obj/item/raptor_dex{
+ pixel_y = 7
+ },
+/obj/item/raptor_dex,
+/turf/open/misc/hay/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"upV" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
@@ -68507,6 +136041,7 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"uqV" = (
/obj/structure/sign/warning/directional/east{
desc = "A sign warning of a sudden drop below.";
@@ -68514,6 +136049,13 @@
},
/turf/open/openspace/icemoon/keep_below,
/area/icemoon/surface/outdoors/nospawn)
+=======
+"uqX" = (
+/obj/effect/decal/remains/human,
+/obj/item/pickaxe/improvised,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/labor_camp)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"urd" = (
/obj/structure/chair/stool/directional/north,
/turf/open/floor/iron,
@@ -68528,6 +136070,25 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/iron/dark,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"urk" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "Biohazard Containment Door"
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/research)
+"urm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uro" = (
/obj/machinery/requests_console/directional/east{
department = "Telecomms Admin";
@@ -68538,6 +136099,16 @@
/obj/effect/mapping_helpers/requests_console/assistance,
/turf/open/floor/iron,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
+=======
+"urp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"urw" = (
/obj/structure/railing/corner{
dir = 4
@@ -68565,6 +136136,27 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"urQ" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/machinery/light/small/directional/west,
+/obj/item/stack/package_wrap{
+ pixel_y = 3
+ },
+/obj/item/hand_labeler,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"usm" = (
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uso" = (
/obj/structure/closet/crate/trashcart,
/obj/effect/spawner/random/contraband/prison,
@@ -68577,6 +136169,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
"usz" = (
/obj/structure/sign/nanotrasen{
pixel_x = -32;
@@ -68593,6 +136186,8 @@
dir = 8
},
/area/station/science/research)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"usS" = (
/obj/structure/bed{
dir = 1
@@ -68607,6 +136202,7 @@
dir = 10
},
/area/station/security/prison/safe)
+<<<<<<< HEAD
"utn" = (
/obj/effect/turf_decal/tile/blue/opposingcorners,
/obj/effect/turf_decal/tile/green/opposingcorners{
@@ -68638,6 +136234,14 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+"usU" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/commons/vacant_room/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"utr" = (
/obj/structure/table,
/obj/item/storage/toolbox/mechanical{
@@ -68651,6 +136255,7 @@
/obj/item/clothing/glasses/welding,
/obj/item/multitool{
pixel_x = 3
+<<<<<<< HEAD
},
/turf/open/floor/iron,
/area/station/science/robotics/lab)
@@ -69038,6 +136643,465 @@
"uAJ" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
+=======
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"utA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"utR" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uub" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port to Fuel Pipe"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"uud" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/tcomms_all,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"uum" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/sepia,
+/area/station/service/library)
+"uuq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uuw" = (
+/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_blue/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_red/end{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"uuC" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"uuI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"uuO" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"uuP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/cargo/office)
+"uvk" = (
+/obj/structure/window/reinforced/plasma/spawner/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/power/energy_accumulator/grounding_rod/anchored,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"uvt" = (
+/turf/closed/wall,
+/area/station/science/robotics/mechbay)
+"uvu" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"uvv" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"uvA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "botany_chasm_and_wolf_shutters"
+ },
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"uvM" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/middle,
+/turf/open/floor/plating,
+/area/mine/production)
+"uvU" = (
+/obj/structure/railing,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"uvX" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/aisat/hallway)
+"uwd" = (
+/obj/item/chair/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"uwj" = (
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 1
+ },
+/area/station/engineering/lobby)
+"uwB" = (
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig Walkway"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigoutpost"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+"uwE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/hydroponics,
+/obj/effect/mapping_helpers/mail_sorting/service/theater,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"uwH" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 9
+ },
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"uwM" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"uwO" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Custodial Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/service/janitor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"uwR" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Xenobiology External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"uwT" = (
+/turf/closed/wall/r_wall,
+/area/station/science/cytology)
+"uxd" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"uxj" = (
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"uxl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"uxm" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uxx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{
+ dir = 1
+ },
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"uxA" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"uxG" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat/service";
+ name = "Service Bay Turret Control";
+ pixel_x = 27;
+ req_access = list("minisat")
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"uxK" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"uyo" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Courtroom"
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/structure/chair{
+ name = "Defense"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/security/courtroom)
+"uyq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"uyx" = (
+/obj/effect/spawner/random/structure/chair_maintenance,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"uyH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"uyO" = (
+/obj/machinery/shower/directional/north,
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 5
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/treatment_center)
+"uyV" = (
+/obj/item/target/alien/anchored,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/icemoon,
+/area/station/science/ordnance/bomb)
+"uyW" = (
+/obj/machinery/washing_machine,
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"uza" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "MiniSat Antechamber";
+ network = list("minisat");
+ start_active = 1
+ },
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat/atmos";
+ name = "Atmospherics Turret Control";
+ pixel_x = -27;
+ req_access = list("minisat")
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"uzd" = (
+/obj/structure/rack,
+/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{
+ pixel_y = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"uze" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"uzf" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/poster/contraband/atmosia_independence/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos/storage/gas)
+"uzi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"uzr" = (
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/table/glass,
+/obj/machinery/fax{
+ fax_name = "Medical";
+ name = "Medical Fax Machine"
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Medbay Mid-South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"uzs" = (
+/obj/structure/rack,
+/obj/item/pickaxe,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"uzu" = (
+/obj/machinery/door/airlock/wood{
+ name = "Bar Backroom"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/service/bar/backroom)
+"uzB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"uzM" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"uAi" = (
+/obj/structure/table/reinforced,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/core{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics - HFR West";
+ name = "atmospherics camera"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"uAl" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"uAE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"uAJ" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/starboard/aft)
"uAK" = (
/obj/structure/cable,
@@ -69050,6 +137114,21 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"uAL" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"uAP" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 4
+ },
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uBi" = (
/turf/closed/wall,
/area/station/ai_monitored/turret_protected/ai)
@@ -69064,11 +137143,18 @@
/obj/structure/railing{
dir = 9
},
+<<<<<<< HEAD
+=======
+/obj/effect/turf_decal/siding/thinplating{
+ dir = 9
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating/snowed/smoothed/icemoon,
/area/icemoon/underground/explored)
"uBA" = (
/turf/closed/wall,
/area/station/engineering/atmos/project)
+<<<<<<< HEAD
"uBD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -69092,6 +137178,8 @@
dir = 5
},
/area/station/hallway/secondary/entry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uBP" = (
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating,
@@ -69174,10 +137262,23 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron/dark,
/area/station/engineering/lobby)
+<<<<<<< HEAD
+=======
+"uCM" = (
+/obj/structure/flora/rock/pile/jungle/style_random,
+/mob/living/carbon/human/species/monkey,
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Pen";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/grass,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uCN" = (
/obj/structure/grille/broken,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
"uCU" = (
/obj/machinery/button/flasher{
id = "executionflash";
@@ -69194,6 +137295,8 @@
/obj/machinery/door/window/left/directional/south,
/turf/open/floor/plating/icemoon,
/area/station/security/execution/education)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uDc" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -69240,6 +137343,7 @@
/obj/structure/grille,
/turf/open/floor/plating,
/area/station/maintenance/department/chapel)
+<<<<<<< HEAD
"uDr" = (
/obj/item/stamp{
pixel_x = -3;
@@ -69252,6 +137356,16 @@
/obj/structure/table,
/turf/open/floor/iron,
/area/station/cargo/office)
+=======
+"uDv" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/sink/kitchen/directional/west,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uDy" = (
/obj/item/book/bible,
/obj/structure/cable,
@@ -69260,6 +137374,7 @@
/obj/structure/table/wood,
/turf/open/floor/iron/dark,
/area/station/security/prison/rec)
+<<<<<<< HEAD
"uDC" = (
/obj/structure/table/wood,
/obj/machinery/airalarm/directional/north,
@@ -69267,6 +137382,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uDE" = (
/obj/structure/table,
/obj/item/folder/yellow,
@@ -69291,6 +137408,16 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"uEf" = (
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uEk" = (
/obj/structure/closet/wardrobe/miner,
/obj/effect/turf_decal/tile/brown/half/contrasted{
@@ -69309,10 +137436,13 @@
/obj/effect/turf_decal/tile/blue/full,
/turf/open/floor/iron/large,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"uEA" = (
/obj/structure/closet/crate,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uEI" = (
/obj/structure/railing/corner{
dir = 4
@@ -69341,11 +137471,38 @@
/turf/open/floor/plating,
/area/station/security/processing)
"uFg" = (
+<<<<<<< HEAD
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters)
"uFh" = (
/turf/open/floor/plating,
/area/station/construction)
+=======
+/obj/machinery/door/poddoor/preopen{
+ id = "Prison Gate";
+ name = "Prison Blast Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/machinery/status_display/door_timer{
+ pixel_x = -32;
+ id = "Cell 1";
+ name = "Cell 1"
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"uFh" = (
+/turf/open/floor/plating,
+/area/station/construction)
+"uFt" = (
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uFz" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/holopad,
@@ -69354,6 +137511,25 @@
},
/turf/open/floor/iron/white,
/area/station/medical/psychology)
+<<<<<<< HEAD
+=======
+"uFE" = (
+/obj/machinery/vending/boozeomat,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"uFF" = (
+/obj/machinery/disposal/bin{
+ desc = "A pneumatic waste disposal unit. This one leads to the frozen exterior of the moon.";
+ name = "deathsposal unit"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/sign/warning/deathsposal/directional/north,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uFH" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -69367,6 +137543,7 @@
/obj/machinery/holopad,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/storage)
+<<<<<<< HEAD
"uGe" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/tile/bar/opposingcorners,
@@ -69378,6 +137555,37 @@
},
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+"uFS" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"uFV" = (
+/obj/structure/tank_dispenser{
+ pixel_x = -1
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics Monitoring"
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"uGe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uGl" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -69394,7 +137602,11 @@
/obj/structure/disposalpipe/trunk{
dir = 4
},
+<<<<<<< HEAD
/turf/open/floor/plating/snowed/icemoon,
+=======
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/icemoon/surface/outdoors/nospawn)
"uGq" = (
/obj/structure/cable,
@@ -69422,10 +137634,13 @@
},
/turf/open/floor/iron/dark/smooth_large,
/area/station/engineering/main)
+<<<<<<< HEAD
"uGY" = (
/obj/structure/bookcase,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uHc" = (
/obj/effect/turf_decal/trimline/purple/filled/corner{
dir = 8
@@ -69444,6 +137659,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+<<<<<<< HEAD
"uHS" = (
/obj/structure/disposaloutlet{
dir = 8
@@ -69454,6 +137670,15 @@
/obj/structure/sign/warning/gas_mask/directional/north,
/turf/open/floor/engine/xenobio,
/area/station/science/xenobiology)
+=======
+"uHN" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uHV" = (
/obj/structure/disposalpipe/trunk/multiz{
dir = 1
@@ -69466,6 +137691,16 @@
"uIg" = (
/turf/open/floor/engine/n2o,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"uIh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uIj" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -69478,6 +137713,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"uIz" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -69485,6 +137721,8 @@
/obj/structure/cable/multilayer/multiz,
/turf/open/floor/plating,
/area/station/engineering/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uIC" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 1;
@@ -69516,20 +137754,76 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/service/chapel/office)
+<<<<<<< HEAD
+=======
+"uIJ" = (
+/obj/structure/ladder{
+ name = "chemistry lab access"
+ },
+/obj/effect/turf_decal/stripes/end,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Chemistry Lab - North";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/medical/chemistry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uIM" = (
/obj/effect/decal/cleanable/glass,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"uIS" = (
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+=======
+"uIQ" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/item/stack/sheet/glass,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/matter_bin,
+/obj/item/stock_parts/scanning_module,
+/obj/item/stock_parts/scanning_module,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/item/multitool,
+/obj/item/flatpack{
+ board = /obj/item/circuitboard/machine/flatpacker
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/lab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uIV" = (
/obj/machinery/meter,
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"uJd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"uJi" = (
+/obj/structure/rack,
+/obj/item/crowbar/large/old,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uJn" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -69554,6 +137848,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
"uJI" = (
/obj/structure/table/wood,
/obj/structure/noticeboard/directional/north,
@@ -69561,12 +137856,37 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+=======
+"uJN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"uJR" = (
+/turf/open/floor/plating,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uJX" = (
/obj/structure/closet/firecloset,
/obj/item/radio/intercom/directional/north,
/obj/effect/turf_decal/tile/red/half,
/turf/open/floor/iron/smooth_half,
/area/station/security/brig/upper)
+<<<<<<< HEAD
+=======
+"uKc" = (
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uKj" = (
/obj/machinery/portable_atmospherics/canister/anesthetic_mix,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -69575,6 +137895,7 @@
/obj/structure/extinguisher_cabinet/directional/east,
/turf/open/floor/iron/white,
/area/station/medical/cryo)
+<<<<<<< HEAD
"uKx" = (
/obj/structure/closet,
/obj/item/clothing/suit/hooded/wintercoat{
@@ -69600,6 +137921,8 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/security/prison/work)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uKM" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
@@ -69626,11 +137949,20 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
+=======
+"uKR" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uKW" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/execution/education)
+<<<<<<< HEAD
"uLe" = (
/obj/effect/spawner/structure/window/reinforced/plasma,
/turf/open/floor/plating,
@@ -69706,11 +138038,51 @@
/obj/item/kirbyplants/random/dead,
/turf/open/floor/iron,
/area/station/maintenance/starboard/fore)
+=======
+"uKY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"uLe" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"uLC" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uLF" = (
+/turf/open/floor/carpet,
+/area/station/security/processing)
+"uLH" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"uLX" = (
+/obj/machinery/door/airlock{
+ name = "Port Emergency Storage"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/storage/emergency/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uMm" = (
/turf/open/floor/iron/white/corner{
dir = 4
},
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"uMq" = (
/obj/structure/sign/warning/cold_temp{
pixel_x = -29
@@ -69721,6 +138093,23 @@
},
/turf/open/floor/iron/dark,
/area/mine/storage)
+=======
+"uMp" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"uMs" = (
+/obj/structure/sign/warning/fire/directional/north,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uMx" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -69766,6 +138155,7 @@
"uMN" = (
/turf/open/openspace,
/area/station/commons/storage/mining)
+<<<<<<< HEAD
"uMU" = (
/obj/structure/fence/corner,
/turf/open/misc/asteroid/snow/icemoon,
@@ -69779,6 +138169,12 @@
/obj/machinery/duct,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet)
+=======
+"uMW" = (
+/obj/structure/sign/warning/directional/west,
+/turf/open/openspace/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uNq" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 1
@@ -69788,6 +138184,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"uNu" = (
/obj/effect/turf_decal/siding/yellow/corner{
dir = 8
@@ -69802,11 +138199,14 @@
/obj/item/trash/raisins,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uNE" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/circuit,
/area/station/ai_monitored/turret_protected/aisat/hallway)
+<<<<<<< HEAD
"uNG" = (
/obj/machinery/light/small/directional/west,
/obj/effect/turf_decal/weather/snow/corner{
@@ -69819,6 +138219,13 @@
/obj/structure/closet/secure_closet/cytology,
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+"uNN" = (
+/obj/effect/spawner/random/trash/bin,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uNV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -69840,6 +138247,7 @@
"uOb" = (
/turf/closed/wall/r_wall,
/area/station/security/prison/toilet)
+<<<<<<< HEAD
"uOe" = (
/obj/machinery/door/window/left/directional/west{
name = "Fitness Ring"
@@ -69850,6 +138258,8 @@
},
/turf/open/floor/iron/dark,
/area/station/commons/fitness)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uOf" = (
/obj/machinery/door/airlock{
id_tag = "miningdorm_A";
@@ -69877,6 +138287,7 @@
"uOj" = (
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
"uOk" = (
/obj/machinery/turretid{
control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
@@ -69891,12 +138302,21 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+"uOm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uOn" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 4
},
/turf/open/floor/plating,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
"uOq" = (
/obj/effect/turf_decal/trimline/green/filled/line{
dir = 6
@@ -69919,6 +138339,14 @@
initial_gas_mix = "ICEMOON_ATMOS"
},
/area/icemoon/underground/explored/graveyard)
+=======
+"uOs" = (
+/obj/structure/bed/dogbed,
+/obj/effect/decal/cleanable/blood/gibs/body,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uOE" = (
/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
dir = 5
@@ -69936,6 +138364,7 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/station/commons/vacant_room/commissary)
+<<<<<<< HEAD
"uOW" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/effect/landmark/start/paramedic,
@@ -69958,6 +138387,17 @@
pixel_y = 23
},
/obj/machinery/light_switch/directional/north,
+=======
+"uPh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/button/door/directional/north{
+ pixel_y = 37;
+ id = "Mining_launch";
+ name = "Mech Bay Door Control"
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/textured,
/area/mine/mechbay)
"uPk" = (
@@ -69977,11 +138417,14 @@
/obj/structure/closet/crate/bin,
/turf/open/floor/iron/dark,
/area/mine/eva/lower)
+<<<<<<< HEAD
"uPx" = (
/obj/effect/spawner/random/structure/crate,
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/iron/smooth,
/area/station/maintenance/fore/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uPB" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
@@ -70006,6 +138449,7 @@
dir = 8
},
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
"uPQ" = (
/obj/effect/mapping_helpers/airlock/access/all/science/general,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -70016,14 +138460,45 @@
},
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uPS" = (
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"uPY" = (
/obj/structure/noticeboard/directional/east,
/turf/open/floor/wood,
/area/station/command/meeting_room)
+=======
+"uPT" = (
+/obj/machinery/light/directional/north,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uPY" = (
+/obj/item/stack/sheet/mineral/wood,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"uQc" = (
+/obj/structure/table,
+/obj/machinery/fax/auto_name,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+"uQj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uQl" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/decal/cleanable/dirt,
@@ -70033,6 +138508,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
+=======
+"uQv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/chair,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uQx" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -70046,6 +138535,16 @@
/obj/effect/turf_decal/tile/red,
/turf/open/floor/iron/textured,
/area/station/security/brig)
+<<<<<<< HEAD
+=======
+"uQR" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/xenobiology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uQV" = (
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable,
@@ -70142,6 +138641,7 @@
dir = 4
},
/obj/machinery/meter,
+<<<<<<< HEAD
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
"uSE" = (
@@ -70181,6 +138681,11 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+=======
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uTk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -70203,11 +138708,40 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron/dark/textured_edge,
/area/station/security/prison)
+<<<<<<< HEAD
+=======
+"uTq" = (
+/obj/machinery/restaurant_portal/restaurant,
+/obj/effect/turf_decal/delivery/red,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uTr" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/spawner/random/structure/steam_vent,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
+=======
+"uTu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"uTx" = (
+/obj/machinery/air_sensor/ordnance_burn_chamber,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uTI" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -70228,12 +138762,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/morgue)
+<<<<<<< HEAD
"uTL" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/sign/poster/official/random/directional/south,
/turf/open/floor/iron/white,
/area/station/science/robotics/lab)
+=======
+"uTV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uTX" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/item/kirbyplants/random,
@@ -70241,6 +138783,7 @@
dir = 4
},
/area/station/service/chapel)
+<<<<<<< HEAD
"uUn" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/engine/xenobio,
@@ -70266,15 +138809,73 @@
/obj/machinery/fax/auto_name,
/turf/open/floor/iron/grimy,
/area/station/service/bar/backroom)
+=======
+"uUp" = (
+/obj/effect/spawner/random/structure/tank_holder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"uUs" = (
+/obj/machinery/computer/records/medical/laptop{
+ pixel_y = 1
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/camera/directional/north,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uUH" = (
/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
dir = 10
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+<<<<<<< HEAD
"uUT" = (
/turf/closed/wall,
/area/mine/mechbay)
+=======
+"uUM" = (
+/obj/machinery/light_switch/directional/south,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/bluespace_vendor/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"uUT" = (
+/turf/closed/wall,
+/area/mine/mechbay)
+"uVb" = (
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/turf/closed/wall,
+/area/station/service/hydroponics)
+"uVf" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/mixingchamber_access,
+/obj/effect/mapping_helpers/airalarm/link{
+ chamber_id = "ordnanceburn"
+ },
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/obj/machinery/airlock_controller/incinerator_ordmix{
+ pixel_y = 27
+ },
+/obj/machinery/button/ignition/incinerator/ordmix{
+ pixel_y = 39;
+ pixel_x = -6
+ },
+/obj/machinery/button/door/incinerator_vent_ordmix{
+ pixel_y = 39;
+ pixel_x = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uVj" = (
/obj/effect/turf_decal/arrows/white,
/obj/effect/turf_decal/stripes/line{
@@ -70290,6 +138891,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat/atmos)
+<<<<<<< HEAD
+=======
+"uVr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uVu" = (
/obj/machinery/space_heater,
/obj/structure/window/reinforced/spawner/directional/east,
@@ -70310,6 +138923,7 @@
dir = 1
},
/area/station/security/lockers)
+<<<<<<< HEAD
"uWf" = (
/obj/structure/railing/corner/end{
dir = 4
@@ -70324,6 +138938,13 @@
/obj/structure/sign/warning/secure_area,
/turf/closed/wall,
/area/station/maintenance/aft/greater)
+=======
+"uWo" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uWw" = (
/obj/structure/railing/corner{
dir = 1
@@ -70333,15 +138954,44 @@
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
+=======
+"uWy" = (
+/obj/structure/table/wood,
+/obj/machinery/reagentgrinder{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/glass/shaker{
+ pixel_x = -6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/box/white/corners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uWE" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/plating/snowed/smoothed/icemoon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
+=======
+"uWS" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/turf/open/floor/wood/large,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uWW" = (
/obj/structure/closet/cardboard,
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"uXh" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -70349,6 +138999,14 @@
dir = 8
},
/area/station/science/ordnance/office)
+=======
+"uXd" = (
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/duct,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uXk" = (
/turf/open/misc/dirt/dark{
initial_gas_mix = "ICEMOON_ATMOS"
@@ -70360,6 +139018,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/department/electrical)
+<<<<<<< HEAD
"uXy" = (
/obj/machinery/light_switch/directional/east,
/obj/structure/table,
@@ -70374,6 +139033,8 @@
dir = 1
},
/area/station/commons/storage/art)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uXC" = (
/obj/structure/table/reinforced,
/obj/item/tank/internals/emergency_oxygen/engi{
@@ -70401,6 +139062,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/freezer,
/area/mine/laborcamp)
+<<<<<<< HEAD
"uYm" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -70410,6 +139072,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uYq" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=2";
@@ -70426,6 +139090,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
"uYF" = (
/obj/structure/railing{
dir = 6
@@ -70436,6 +139101,28 @@
/obj/machinery/atmospherics/pipe/layer_manifold/dark/visible{
dir = 8
},
+=======
+"uYE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"uYF" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/mine/production)
+"uYH" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/dark/visible{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible,
/turf/open/floor/iron,
/area/station/engineering/atmos)
@@ -70459,6 +139146,17 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"uZu" = (
+/obj/structure/table/wood,
+/obj/item/camera,
+/obj/item/taperecorder,
+/obj/item/radio/intercom/directional/east,
+/obj/item/storage/photo_album/library,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uZB" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/structure/extinguisher_cabinet/directional/east,
@@ -70466,6 +139164,7 @@
dir = 9
},
/area/station/science/research)
+<<<<<<< HEAD
"uZD" = (
/obj/machinery/recharge_station,
/obj/machinery/airalarm/directional/north,
@@ -70537,6 +139236,83 @@
/obj/machinery/light/directional/south,
/turf/open/floor/iron/textured,
/area/station/security/brig)
+=======
+"uZC" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance/three,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"uZD" = (
+/obj/machinery/recharge_station,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/service)
+"uZT" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"vaa" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"vad" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"vah" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vap" = (
+/obj/structure/fence{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"var" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/obj/structure/sign/departments/holy/directional/east,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vav" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
@@ -70555,13 +139331,38 @@
dir = 1
},
/obj/machinery/light/small/directional/west,
+<<<<<<< HEAD
/turf/open/floor/wood,
/area/station/service/library)
+=======
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"vaL" = (
+/obj/structure/table,
+/obj/item/storage/bag/tray,
+/obj/item/knife/kitchen{
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vaM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron/dark/side,
/area/mine/eva)
+<<<<<<< HEAD
+=======
+"vaW" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vaZ" = (
/obj/item/book/manual/wiki/plumbing{
pixel_x = 4;
@@ -70634,6 +139435,7 @@
/obj/structure/railing,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+<<<<<<< HEAD
"vbI" = (
/obj/effect/turf_decal/tile/bar{
dir = 1
@@ -70641,6 +139443,8 @@
/obj/structure/chair/stool/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vbO" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
/obj/item/kirbyplants/random,
@@ -70655,6 +139459,8 @@
/obj/effect/landmark/generic_maintenance_landmark,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 1
+<<<<<<< HEAD
+=======
},
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/aft)
@@ -70670,6 +139476,66 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/maintenance/port/fore)
+"vcf" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Chapel Maintenance External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"vch" = (
+/obj/machinery/door/morgue{
+ name = "Relic Closet";
+ req_access = list("chapel_office");
+ dir = 4
+ },
+/turf/open/floor/cult,
+/area/station/service/chapel/office)
+"vcj" = (
+/turf/closed/wall/r_wall,
+/area/mine/storage)
+"vcx" = (
+/obj/machinery/newscaster/directional/east,
+/obj/structure/sink/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/blue,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"vcD" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+<<<<<<< HEAD
+/area/station/maintenance/solars/starboard/aft)
+"vbZ" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vcc" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
"vcj" = (
/turf/closed/wall/r_wall,
/area/mine/storage)
@@ -70688,6 +139554,9 @@
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+/area/station/service/kitchen/coldroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vcO" = (
/obj/machinery/vending/wardrobe/chap_wardrobe,
/turf/open/floor/iron/dark,
@@ -70748,6 +139617,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/service)
+<<<<<<< HEAD
"vdM" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -70769,6 +139639,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vdW" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/effect/decal/cleanable/dirt,
@@ -70777,12 +139649,24 @@
},
/turf/open/floor/iron/grimy,
/area/station/security/prison/work)
+<<<<<<< HEAD
"vek" = (
/obj/effect/turf_decal/weather/snow/corner,
/obj/machinery/light/small/directional/north,
/obj/structure/sign/departments/maint/directional/north,
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+=======
+"vei" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ven" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -70793,11 +139677,14 @@
"vep" = (
/turf/closed/wall,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
"veq" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ver" = (
/obj/structure/lattice/catwalk,
/obj/structure/marker_beacon/burgundy{
@@ -70805,6 +139692,7 @@
},
/turf/open/lava/plasma/ice_moon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
"ves" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -70813,6 +139701,18 @@
"vey" = (
/turf/closed/wall,
/area/station/command/heads_quarters/captain)
+=======
+"vey" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/captain)
+"veH" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"veK" = (
/turf/open/floor/iron/white,
/area/mine/living_quarters)
@@ -70832,6 +139732,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"veX" = (
/obj/machinery/camera{
c_tag = "Research Division Server Room";
@@ -70842,6 +139743,8 @@
/obj/structure/lattice/catwalk,
/turf/open/openspace/icemoon,
/area/station/science/server)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vfe" = (
/obj/machinery/atmospherics/components/unary/passive_vent,
/obj/effect/turf_decal/stripes/line{
@@ -70850,10 +139753,22 @@
/obj/machinery/light/cold/directional/north,
/turf/open/floor/iron/freezer,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"vfg" = (
/obj/structure/stairs/north,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"vfj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor/heavy{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vfm" = (
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/iron/smooth,
@@ -70878,6 +139793,7 @@
},
/turf/open/floor/iron,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"vfw" = (
/obj/structure/railing/corner/end/flip,
/obj/effect/turf_decal/siding/white{
@@ -70899,6 +139815,36 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/service/kitchen/coldroom)
+=======
+"vfH" = (
+/obj/structure/closet/crate{
+ name = "Le Caisee D'abeille"
+ },
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/honey_frame,
+/obj/item/queen_bee/bought,
+/obj/item/clothing/suit/hooded/bee_costume,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/warm/directional/north,
+/obj/item/seeds/sunflower,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service - Botany Apiary"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vfI" = (
/obj/machinery/door/window/right/directional/south{
name = "Ordnance Freezer Chamber Access";
@@ -70920,10 +139866,28 @@
"vfW" = (
/turf/open/floor/iron,
/area/station/commons/fitness)
+<<<<<<< HEAD
+=======
+"vfZ" = (
+/obj/structure/ladder{
+ name = "chemistry lab access"
+ },
+/obj/machinery/door/window/right/directional/east{
+ req_access = list("medical");
+ name = "Morgue Access Hatch"
+ },
+/obj/effect/turf_decal/stripes/end{
+ dir = 4
+ },
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vgf" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"vgj" = (
/obj/structure/filingcabinet,
/obj/effect/turf_decal/siding/wood{
@@ -70932,6 +139896,8 @@
/obj/structure/sign/poster/contraband/random/directional/west,
/turf/open/floor/wood,
/area/station/commons/vacant_room/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vgu" = (
/obj/structure/table,
/obj/item/toy/plush/beeplushie{
@@ -70957,6 +139923,13 @@
/obj/item/stack/cable_coil,
/turf/open/floor/iron/smooth,
/area/mine/eva)
+<<<<<<< HEAD
+=======
+"vgK" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vgM" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
dir = 4
@@ -70975,6 +139948,7 @@
/obj/effect/mapping_helpers/airlock/abandoned,
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+<<<<<<< HEAD
"vgU" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -70995,11 +139969,27 @@
},
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+"vgW" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vhB" = (
/obj/structure/chair/plastic,
/obj/effect/turf_decal/bot_red,
/turf/open/floor/plating,
/area/station/maintenance/fore/lesser)
+<<<<<<< HEAD
+=======
+"vhF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vhL" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -71026,6 +140016,7 @@
dir = 6
},
/area/station/science/research)
+<<<<<<< HEAD
"viE" = (
/obj/structure/cable,
/obj/structure/sign/warning/gas_mask/directional/south,
@@ -71033,6 +140024,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+=======
+"vij" = (
+/obj/machinery/computer/prisoner/management,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"viH" = (
/obj/machinery/power/emitter/welded{
dir = 4
@@ -71046,10 +140049,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain)
+<<<<<<< HEAD
"viR" = (
/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner,
/turf/open/floor/engine/xenobio,
/area/station/science/xenobiology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"viV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/window/reinforced/spawner/directional/south,
@@ -71060,6 +140066,7 @@
"vja" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/mapping_helpers/broken_floor,
+<<<<<<< HEAD
/turf/open/floor/plating,
/area/station/construction)
"vjh" = (
@@ -72133,6 +141140,1210 @@
/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+/turf/open/floor/plating,
+/area/station/construction)
+"vjg" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"vjh" = (
+/turf/closed/wall/r_wall,
+/area/mine/laborcamp)
+"vjk" = (
+/obj/machinery/atmospherics/components/binary/crystallizer{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"vjq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vjA" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Service - Kitchen"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/structure/table,
+/obj/machinery/processor{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+"vjJ" = (
+/obj/structure/table,
+/obj/machinery/light/directional/north,
+/obj/machinery/microwave,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"vjN" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Cryogenics";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"vjQ" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"vjS" = (
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"vjZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"vkz" = (
+/obj/machinery/suit_storage_unit/ce,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white/textured,
+/area/station/command/heads_quarters/ce)
+"vkC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/fore/lesser)
+"vkD" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"vkF" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"vkG" = (
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"vkJ" = (
+/obj/structure/table,
+/obj/item/plate,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"vkN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/construction)
+"vkW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"vlf" = (
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vlF" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/stairs/north,
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"vlH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/north,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"vlL" = (
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"vlN" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"vlS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining Mech Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "mining-mechbay-external"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"vlZ" = (
+/obj/effect/turf_decal/trimline/neutral/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"vmj" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Logistics Station"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"vmk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"vmn" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"vmr" = (
+/obj/structure/musician/piano,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"vms" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"vmu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"vmw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Law Office"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/service/lawyer,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"vmx" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"vmA" = (
+/obj/structure/fluff/tram_rail{
+ pixel_y = 17
+ },
+/obj/structure/fluff/tram_rail,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"vmC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Arrivals Hallway North"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"vmK" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/test_chamber/directional/north,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"vmO" = (
+/obj/structure/table,
+/obj/machinery/light/small/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/engineering/material_cheap,
+/turf/open/floor/iron/smooth,
+/area/station/maintenance/starboard/fore)
+"vmP" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"vmR" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "Escape Airlock";
+ space_dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vmU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"vmW" = (
+/obj/structure/table/wood,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"vne" = (
+/obj/item/clothing/head/beanie/orange{
+ pixel_y = 8
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/wheelys/skishoes{
+ pixel_y = -8
+ },
+/obj/effect/decal/remains/human,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"vng" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"vnj" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"vnt" = (
+/obj/machinery/computer/station_alert{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/south{
+ id = "atmos"
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = -10
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"vnw" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Fitness Room South"
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = -7
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"vnA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/obj/machinery/door/airlock{
+ name = "Kitchen"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white/textured_half,
+/area/station/service/kitchen)
+"vnN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"vnW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"vnY" = (
+/obj/structure/closet/crate/critter,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"voj" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/mail_sorting/medbay/general,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"vol" = (
+/obj/structure/table,
+/obj/item/clothing/mask/gas,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"vos" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"vov" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"voH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"voK" = (
+/turf/closed/wall/r_wall,
+/area/station/tcommsat/computer)
+"voY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"vpc" = (
+/obj/structure/closet,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/stellar,
+/area/mine/production)
+"vpd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vpg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"vpi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/smooth,
+/area/station/security/execution/transfer)
+"vpn" = (
+/obj/vehicle/sealed/mecha/ripley/paddy/preset,
+/obj/structure/cable,
+/turf/open/floor/iron/recharge_floor,
+/area/station/security/mechbay)
+"vpx" = (
+/obj/structure/sign/departments/evac/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"vpJ" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"vpR" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/medical/central)
+"vpW" = (
+/obj/structure/displaycase/labcage,
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/command/heads_quarters/rd)
+"vpX" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/machinery/requests_console/auto_name/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"vqf" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"vqi" = (
+/obj/structure/disposalpipe/trunk/multiz{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"vqv" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"vqH" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"vqN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"vqS" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"vqX" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"vra" = (
+/obj/machinery/modular_computer/preset/cargochat/cargo{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/office)
+"vrc" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"vrw" = (
+/obj/machinery/button/door/directional/west{
+ id = "xenobio3";
+ name = "Xenobio Pen 3 Blast Door";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"vrC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"vrD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"vrG" = (
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"vrI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"vrO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"vrX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vsk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"vsp" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/red/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"vsx" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"vsz" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"vsF" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/surface/outdoors/nospawn)
+"vsI" = (
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vsL" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Office - Port"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"vsM" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/exit/departure_lounge)
+"vsT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/greater)
+"vsZ" = (
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"vtg" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vtj" = (
+/obj/machinery/air_sensor/carbon_tank,
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"vtr" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/kirbyplants/random,
+/turf/open/floor/wood,
+/area/station/maintenance/aft/greater)
+"vtu" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/coroner,
+/obj/machinery/door/airlock/external{
+ name = "Graveyard Access";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"vtv" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port to Infiltrate/Filter"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"vtz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/mining_weather_monitor/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vtA" = (
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"vtO" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"vtR" = (
+/obj/item/storage/briefcase,
+/obj/structure/rack,
+/obj/item/camera/detective,
+/obj/item/taperecorder{
+ pixel_x = -5
+ },
+/obj/structure/cable,
+/obj/structure/detectiveboard/directional/west,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"vuf" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 6
+ },
+/turf/open/floor/iron/textured,
+/area/station/engineering/atmos)
+"vuh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/medical{
+ name = "Surgery North"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/medical/surgery,
+/obj/effect/turf_decal/tile/blue/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/aft)
+"vuk" = (
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"vuq" = (
+/obj/machinery/modular_computer/preset/civilian,
+/obj/structure/fireaxecabinet/mechremoval/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"vuu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/layer_manifold/dark,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"vux" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"vuK" = (
+/obj/structure/sign/warning/fire,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"vuR" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"vvc" = (
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"vvh" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"vvi" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"vvu" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"vvv" = (
+/obj/structure/filingcabinet,
+/obj/machinery/airalarm/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+"vvE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/lab)
+"vvG" = (
+/obj/structure/closet{
+ name = "evidence closet 6"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/evidence)
+"vvJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/library)
+"vvL" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"vvP" = (
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/science/robotics/mechbay)
+"vvT" = (
+/obj/structure/table,
+/obj/machinery/button/ticket_machine{
+ pixel_x = -6;
+ pixel_y = -1;
+ req_access = list("hop")
+ },
+/obj/machinery/button/photobooth{
+ pixel_y = -1;
+ pixel_x = 6;
+ req_access = list("hop")
+ },
+/obj/machinery/button/door/directional/south{
+ id = "hop";
+ name = "Privacy Shutters";
+ pixel_x = -6;
+ req_access = list("hop")
+ },
+/obj/machinery/button/door/directional/south{
+ id = "hopqueue";
+ name = "Queue Shutters";
+ pixel_x = 6;
+ req_access = list("hop")
+ },
+/obj/machinery/button/flasher{
+ pixel_y = 9;
+ id = "hopflash";
+ req_access = list("hop")
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"vvU" = (
+/obj/item/beacon,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/mine/eva)
+"vvX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"vwi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/wood/large,
+/area/station/commons/vacant_room/office)
+"vwj" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Port Mix to West Ports"
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"vwl" = (
+/obj/machinery/light_switch/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"vws" = (
+/obj/structure/chair/sofa/bench{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"vwt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/station/security/holding_cell)
+"vwC" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vwD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"vwE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"vwG" = (
+/obj/machinery/vending/security{
+ onstation_override = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"vwJ" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vwN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"vwO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"vwQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ name = "Gateway Chamber";
+ req_one_access = list("gateway","mining","cargo","medical")
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"vxc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"vxd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"vxf" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth,
+/area/station/engineering/lobby)
+"vxi" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance/three,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"vxx" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/iron/smooth,
+/area/mine/eva/lower)
+"vxO" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"vxV" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/iron/large,
+/area/station/engineering/atmos)
+"vxW" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"vyb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vyd" = (
+/obj/machinery/modular_computer/preset/id,
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/hos)
+"vyg" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/mine/storage)
+"vyh" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"vym" = (
+/turf/closed/wall,
+/area/station/construction)
+"vyp" = (
+/obj/structure/bonfire,
+/obj/item/melee/roastingstick,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"vyq" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Hallway";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/door_buttons/access_button{
+ pixel_x = 35;
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ req_access = list("virology")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"vyt" = (
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat/maint)
+"vyw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"vyx" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"vyz" = (
+/obj/structure/sign/warning/test_chamber/directional/north,
+/turf/open/floor/glass/reinforced,
+/area/station/science/ordnance/office)
+"vyI" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"vyO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/station/security/prison/rec)
+"vyU" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vyW" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/machinery/camera/directional/south{
+ network = list("ss13","medbay");
+ c_tag = "Medbay Stasis Center North"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzb" = (
/obj/structure/rack,
/obj/effect/spawner/random/clothing/costume,
@@ -72156,10 +142367,22 @@
dir = 1
},
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"vzp" = (
+/obj/machinery/light/warm/directional/north,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/rec)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzs" = (
/obj/structure/filingcabinet,
/obj/structure/cable,
/obj/effect/turf_decal/tile/blue/half/contrasted,
+<<<<<<< HEAD
+=======
+/obj/item/radio/intercom/directional/south,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/medical/psychology)
"vzw" = (
@@ -72170,6 +142393,7 @@
"vzD" = (
/turf/closed/wall,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"vzI" = (
/obj/structure/sign/directions/engineering{
desc = "A sign that shows there are doors here. There are doors everywhere!";
@@ -72185,6 +142409,31 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/medical/cryo)
+=======
+"vzG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"vzH" = (
+/obj/machinery/oven/range,
+/obj/effect/turf_decal/siding/white/corner,
+/obj/machinery/light/directional/north,
+/obj/machinery/button/door/directional/north{
+ id = "kitchencounter";
+ name = "Counter Shutters Control";
+ req_access = list("kitchen")
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzS" = (
/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab,
/obj/structure/disposalpipe/sorting/mail{
@@ -72207,6 +142456,7 @@
/obj/machinery/newscaster/directional/west,
/turf/open/floor/iron/recharge_floor,
/area/station/science/robotics/mechbay)
+<<<<<<< HEAD
"vAj" = (
/obj/effect/turf_decal/bot,
/obj/structure/closet/crate,
@@ -72219,6 +142469,8 @@
},
/turf/open/floor/iron/smooth,
/area/mine/living_quarters)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAm" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -72232,6 +142484,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"vAo" = (
/obj/machinery/door/airlock{
id_tag = "Dorm5";
@@ -72241,10 +142494,22 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood,
/area/station/commons/dorms)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAq" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/maintenance/department/medical/morgue)
+<<<<<<< HEAD
+=======
+"vAr" = (
+/obj/machinery/light/floor,
+/obj/structure/railing/corner/end{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAt" = (
/obj/structure/table,
/obj/item/book/manual/wiki/security_space_law{
@@ -72269,17 +142534,30 @@
/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"vAO" = (
/obj/structure/bodycontainer/morgue/beeper_off{
dir = 1
},
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAP" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/station/science/genetics)
+<<<<<<< HEAD
+=======
+"vAS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAU" = (
/obj/machinery/light/small/directional/east,
/obj/machinery/camera/directional/east{
@@ -72299,6 +142577,7 @@
},
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat/service)
+<<<<<<< HEAD
"vAW" = (
/obj/effect/turf_decal/tile/neutral/diagonal_edge,
/obj/effect/landmark/start/cook,
@@ -72308,6 +142587,8 @@
/obj/structure/cable,
/turf/open/floor/iron/kitchen/diagonal,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAY" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -72320,6 +142601,7 @@
dir = 1
},
/area/station/hallway/primary/port)
+<<<<<<< HEAD
"vBa" = (
/obj/structure/table,
/obj/item/storage/crayons,
@@ -72338,6 +142620,8 @@
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron/dark/side,
/area/mine/eva/lower)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vBh" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
@@ -72355,6 +142639,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"vBt" = (
/obj/machinery/door/airlock/freezer{
desc = "The freezer where the chef keeps all the stuff that needs to be kept cold. Ice cold.";
@@ -72377,6 +142662,21 @@
/turf/open/floor/iron,
/area/station/commons/storage/tools)
"vBv" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/siding/wideplating/corner{
+=======
+"vBu" = (
+/obj/machinery/space_heater,
+/obj/machinery/camera/directional/south{
+ c_tag = "Auxiliary Tool Storage"
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"vBv" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
dir = 9
},
@@ -72393,6 +142693,423 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+"vBG" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/cmo)
+"vCm" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 5
+ },
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vCn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Upper Permabrig Cafeteria";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"vCy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/lesser)
+"vCz" = (
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"vCD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vCK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/edge,
+/area/station/engineering/lobby)
+"vDb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig/entrance)
+"vDh" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/dropper,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"vDu" = (
+/obj/structure/table/glass,
+/obj/item/biopsy_tool{
+ pixel_x = -10;
+ pixel_y = 3
+ },
+/obj/structure/microscope{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"vDx" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/effect/spawner/random/armory/disablers,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"vDy" = (
+/obj/structure/sign/poster/official/safety_report/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/camera/directional/west{
+ c_tag = "Labor Camp Central";
+ network = list("labor")
+ },
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"vEc" = (
+/obj/machinery/door/poddoor/incinerator_ordmix,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"vEw" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics Access"
+ },
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"vEy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"vEG" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Supply Door Airlock";
+ pixel_y = 0;
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"vEJ" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"vEN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/smooth_half,
+/area/station/maintenance/department/medical/central)
+"vEU" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Drone Bay External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/iron/smooth,
+/area/station/cargo/drone_bay)
+"vFg" = (
+/obj/structure/falsewall,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"vFq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth,
+/area/mine/living_quarters)
+"vFs" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"vFO" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/security/brig)
+"vFT" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vFW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/mapping_helpers/mail_sorting/medbay/virology,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"vGw" = (
+/obj/structure/transit_tube/station/reverse,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"vGy" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Pens Observation - Starboard Aft";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"vGI" = (
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/vault{
+ name = "Vault"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/supply/vault,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"vGJ" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"vGY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"vHa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/tcommsat/computer)
+"vHf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/obj/effect/landmark/start/depsec/medical,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/security/checkpoint/medical)
+"vHm" = (
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"vHo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"vHq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"vHA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"vHI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vHJ" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"vHK" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"vHR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"vHU" = (
+/obj/item/radio/intercom/prison/directional/south,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 1
+ },
+/area/station/security/prison)
+"vHZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"vIe" = (
+/obj/item/soap/deluxe,
+/obj/item/bikehorn/rubberducky,
+/obj/structure/curtain,
+/obj/machinery/shower/directional/south,
+/turf/open/floor/iron/freezer,
+/area/station/medical/break_room)
+"vIg" = (
+/obj/structure/table,
+/obj/item/computer_disk{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/computer_disk{
+ pixel_x = -2
+ },
+/obj/item/computer_disk/ordnance{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"vIm" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Chapel External Airlock";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/chapel_office,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/external,
+/turf/open/floor/iron,
+/area/station/service/chapel)
+"vIu" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/medical/chemistry)
+"vIH" = (
+/obj/structure/closet{
+ name = "evidence closet 1"
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/evidence)
+"vIZ" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"vJk" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/upper)
+"vJl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/mob/living/carbon/human/species/monkey,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"vJv" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vJB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+<<<<<<< HEAD
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"vBC" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
"vBD" = (
/obj/structure/chair{
dir = 1
@@ -72815,6 +143532,29 @@
},
/turf/open/floor/plating,
/area/station/engineering/storage/tech)
+=======
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 2
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/mail_sorting/medbay/virology,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"vJI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"vJJ" = (
+/obj/structure/closet/secure_closet/bar,
+/obj/machinery/light/small/directional/north,
+/obj/item/vending_refill/cigarette,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vJS" = (
/obj/structure/chair/sofa/corp/right{
dir = 4;
@@ -72825,9 +143565,12 @@
/turf/open/floor/iron/dark,
/area/station/science/breakroom)
"vJY" = (
+<<<<<<< HEAD
/obj/structure/railing/corner{
dir = 8
},
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/window/brigdoor/left/directional/west{
name = "Research Director Observation";
req_access = list("rd")
@@ -72849,13 +143592,65 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"vKT" = (
+=======
+"vKy" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/utility/radiation,
+/obj/item/clothing/head/utility/radiation,
+/obj/item/geiger_counter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/clothing/glasses/meson,
+/obj/machinery/button/door/directional/north{
+ id = "engsm";
+ name = "Radiation Shutters Control";
+ req_access = list("engineering")
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"vKD" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/entry)
+"vKR" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable,
+<<<<<<< HEAD
/turf/open/floor/plating/snowed/coldroom,
/area/station/service/kitchen/coldroom)
+=======
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/curtain/cloth/fancy/mechanical/start_closed{
+ id = "cantena_curtains"
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"vKZ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vLj" = (
/obj/machinery/suit_storage_unit/rd,
/obj/effect/turf_decal/stripes/line{
@@ -72864,16 +143659,28 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron/smooth_half,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
"vLo" = (
/obj/effect/landmark/generic_maintenance_landmark,
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+=======
+"vLY" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/closet/l3closet/virology,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vMa" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm/directional/south,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
"vMc" = (
/obj/machinery/camera/directional/west{
c_tag = "Gateway"
@@ -72906,6 +143713,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vMl" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -72924,6 +143733,7 @@
/obj/structure/cable/layer3,
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"vMN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/table,
@@ -72932,6 +143742,8 @@
},
/turf/open/floor/wood,
/area/station/maintenance/aft/greater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vMY" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -72970,6 +143782,7 @@
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
/turf/closed/wall/r_wall,
/area/station/engineering/atmos/mix)
+<<<<<<< HEAD
"vNK" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/cobweb,
@@ -72993,6 +143806,13 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+=======
+"vNU" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vOw" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/red{
@@ -73000,6 +143820,14 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central/fore)
+<<<<<<< HEAD
+=======
+"vOy" = (
+/obj/structure/fake_stairs/wood/directional/north,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vOD" = (
/obj/machinery/status_display/ai/directional/north,
/obj/effect/turf_decal/tile/dark_green{
@@ -73017,6 +143845,18 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"vPc" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Security Post - Engineering"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/computer/security/telescreen/engine/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/engineering)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vPh" = (
/obj/machinery/light/directional/north,
/obj/machinery/digital_clock/directional/north,
@@ -73085,12 +143925,28 @@
/turf/open/floor/iron,
/area/mine/production)
"vQz" = (
+<<<<<<< HEAD
/obj/effect/turf_decal/weather/snow/corner{
dir = 10
},
/obj/machinery/light/small/directional/east,
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/underground/explored)
+=======
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
+ name = "Antechamber Turret Control";
+ pixel_y = -24;
+ req_access = list("minisat")
+ },
+/obj/machinery/light/small/directional/south,
+/obj/machinery/camera/motion/directional/south{
+ c_tag = "MiniSat Foyer";
+ network = list("minisat")
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vQG" = (
/obj/effect/turf_decal/trimline/neutral/filled/line{
dir = 10
@@ -73115,6 +143971,12 @@
/obj/effect/landmark/start/hangover,
/turf/open/floor/iron,
/area/station/cargo/lobby)
+<<<<<<< HEAD
+=======
+"vRn" = (
+/turf/open/floor/iron/stairs/medium,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vRo" = (
/obj/machinery/shower/directional/north,
/obj/effect/turf_decal/trimline/blue/line{
@@ -73190,6 +144052,7 @@
"vSi" = (
/turf/closed/wall,
/area/mine/eva)
+<<<<<<< HEAD
"vSu" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -73220,6 +144083,8 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vSE" = (
/obj/machinery/door/window/right/directional/east{
name = "Bar Access"
@@ -73287,6 +144152,29 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
+=======
+"vTh" = (
+/obj/structure/fence/post{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vTm" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/duct,
+/obj/effect/turf_decal/siding/dark{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/checker,
+/area/station/hallway/secondary/service)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vTo" = (
/obj/structure/disposalpipe/sorting/mail{
dir = 1
@@ -73301,6 +144189,22 @@
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
+=======
+"vTq" = (
+/obj/effect/spawner/random/contraband/prison,
+/obj/structure/closet/crate,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/effect/turf_decal/siding/dark{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/prison/work)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vTJ" = (
/obj/structure/table,
/obj/item/toy/plush/slimeplushie{
@@ -73324,14 +144228,439 @@
/area/station/security/checkpoint/science)
"vTP" = (
/obj/effect/turf_decal/tile/green{
+<<<<<<< HEAD
dir = 1
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
"vUn" = (
-/obj/effect/turf_decal/stripes/line{
+=======
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"vUr" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vUs" = (
+/obj/structure/easel,
+/obj/item/canvas/nineteen_nineteen,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/sepia,
+/area/station/security/prison/rec)
+"vUI" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"vUW" = (
+/obj/item/stack/cable_coil{
+ amount = 7;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"vUY" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"vVj" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"vVl" = (
+/obj/structure/table/wood,
+/obj/item/soap/nanotrasen,
+/obj/item/clothing/head/costume/sombrero/green,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/iron/grimy,
+/area/station/commons/lounge)
+"vVw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"vVH" = (
+/turf/closed/wall,
+/area/station/security/prison/safe)
+"vVP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"vVY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
dir = 8
},
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"vWe" = (
+/obj/effect/turf_decal/siding/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/storage)
+"vWh" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"vWm" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"vWr" = (
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"vWy" = (
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/large,
+/area/station/engineering/storage)
+"vWz" = (
+/turf/closed/wall,
+/area/mine/storage)
+"vWL" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Security Station"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"vWP" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"vWU" = (
+/obj/structure/table/glass,
+/obj/item/book/bible,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"vWW" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"vXb" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vXd" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Firefighting Equipment"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"vXh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vXn" = (
+/obj/structure/table,
+/obj/item/food/pie/cream,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/mess)
+"vXv" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing/corner,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/turf/open/openspace,
+/area/station/engineering/atmos/storage)
+"vXy" = (
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vXC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"vXH" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/mine/living_quarters)
+"vXU" = (
+/obj/item/toy/snowball,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vYa" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/commons/storage/primary)
+"vYg" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Chapel West"
+ },
+/obj/structure/cable,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"vYm" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Head of Personnel's Office";
+ name = "Head of Personnel's Fax Machine"
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"vYq" = (
+/obj/structure/barricade/wooden/snowed,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"vYs" = (
+/obj/machinery/light/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"vYv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vYw" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vYz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair/stool/directional/south,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"vYA" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Central Hallway South-West - HoP's Office"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/sign/departments/cargo/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vYH" = (
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"vYJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/large,
+/area/station/engineering/lobby)
+"vZa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"vZg" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/dice,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"vZo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"vZt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"vZz" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"vZD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"vZM" = (
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"wab" = (
+/obj/structure/cable,
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"wam" = (
+/turf/open/openspace,
+/area/station/cargo/storage)
+"waz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"waF" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"waH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"waL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"waM" = (
+/obj/structure/table/glass,
+/obj/item/restraints/handcuffs/cable/zipties,
+/obj/item/reagent_containers/blood/random,
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"waU" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"waZ" = (
+/obj/structure/table,
+/obj/item/assembly/igniter{
+ pixel_x = -8;
+ pixel_y = -4
+ },
+/obj/item/assembly/igniter,
+/obj/item/screwdriver,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/primary)
+"wbe" = (
+/obj/structure/cable/multilayer/multiz,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"wbf" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"wbk" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"wbw" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+<<<<<<< HEAD
/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
color = "#0000ff";
dir = 8;
@@ -74617,6 +145946,775 @@
name = "Research Lab Shutters"
},
/turf/open/floor/plating,
+=======
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"wbG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/interrogation)
+"wbH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/mine/eva/lower)
+"wbR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+"wbW" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"wbY" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet4";
+ name = "Unit 4"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"wcn" = (
+/obj/effect/turf_decal/weather/snow/corner,
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+"wcx" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/large,
+/area/station/command/heads_quarters/ce)
+"wcD" = (
+/obj/structure/chair/plastic{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"wcL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"wcN" = (
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/mine/eva)
+"wdg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/central/lesser)
+"wdo" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"wds" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"wdI" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 1
+ },
+/area/station/ai_monitored/command/storage/eva)
+"wdL" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"wdX" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/mine/laborcamp)
+"wee" = (
+/obj/item/radio/intercom/chapel/directional/east,
+/obj/structure/chair,
+/obj/machinery/light/small/red/directional/north,
+/turf/open/floor/wood/large,
+/area/station/service/chapel)
+"wes" = (
+/obj/effect/turf_decal/siding/wideplating_new/light,
+/obj/item/trash/bee,
+/obj/machinery/light/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/work)
+"weF" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"weI" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/treatment_center)
+"weL" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/fore)
+"weR" = (
+/turf/open/floor/wood,
+/area/station/maintenance/space_hut/cabin)
+"weT" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"weW" = (
+/obj/docking_port/stationary/random/icemoon{
+ dir = 8;
+ name = "lavaland";
+ shuttle_id = "pod_lavaland"
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"wfc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"wfm" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer1{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"wfn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"wfp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Upper Hallway North"
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"wfE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wfF" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/hallway/secondary/entry)
+"wfK" = (
+/obj/item/folder/blue,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/command/meeting_room)
+"wfP" = (
+/obj/structure/table/wood,
+/obj/item/paper,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"wfR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_edge,
+/area/station/command/heads_quarters/rd)
+"wgo" = (
+/obj/item/food/grown/potato{
+ pixel_y = 4
+ },
+/obj/structure/rack,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wgr" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio9";
+ name = "Xenobio Pen 9 Blast Door"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"wgG" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"wgI" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"wgK" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"wgL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/science/breakroom)
+"wgO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/lab)
+"wgU" = (
+/obj/machinery/modular_computer/preset/cargochat/science{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"whb" = (
+/obj/machinery/recharge_station,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"whd" = (
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/medkit/regular,
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"whe" = (
+/obj/item/stack/rods/two,
+/obj/item/stack/sheet/iron,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"whf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible,
+/turf/open/floor/glass/reinforced,
+/area/station/engineering/atmos/pumproom)
+"whg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"whh" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/button/door/directional/east{
+ id = "chemistry_access_shutters";
+ name = "Chemistry Access Shutter Control";
+ req_access = list("medical")
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"whk" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"whr" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/cultivator,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"whC" = (
+/obj/structure/destructible/cult/item_dispenser/archives/library,
+/obj/item/book/codex_gigas,
+/obj/machinery/computer/security/telescreen/entertainment/directional/east,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"whP" = (
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/obj/structure/sign/poster/official/random/directional/east,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/science/breakroom)
+"whQ" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/machinery/newscaster/directional/west,
+/obj/item/stack/sheet/iron/fifty{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"whU" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Pharmacy Desk";
+ req_access = list("pharmacy")
+ },
+/obj/item/folder/white,
+/obj/item/pen,
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"whW" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/tank_dispenser,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/engine_smes)
+"wib" = (
+/obj/structure/sign/departments/xenobio/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wik" = (
+/obj/structure/table,
+/obj/item/plant_analyzer,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"wiv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
+"wiz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"wiD" = (
+/obj/effect/turf_decal/tile/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"wiX" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/flora/grass/brown/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+"wjj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"wjz" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"wjA" = (
+/obj/structure/sign/warning/directional/north,
+/turf/closed/mineral/random/snow/high_chance,
+/area/icemoon/underground/explored)
+"wjD" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/defibrillator/loaded{
+ pixel_y = 3
+ },
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/machinery/light/cold/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"wjL" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"wjP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/rack,
+/obj/item/storage/backpack/satchel/leather/withwallet,
+/obj/item/toy/figure/assistant,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"wjS" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/pew{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/glass/reinforced,
+/area/station/hallway/primary/starboard)
+"wjZ" = (
+/obj/effect/turf_decal/caution{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"wkd" = (
+/obj/structure/rack,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/effect/spawner/random/armory/shotgun,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"wkl" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Telecomms Server Room";
+ network = list("tcomms")
+ },
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"wkr" = (
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"wkw" = (
+/obj/machinery/power/emitter,
+/turf/open/floor/plating,
+/area/station/engineering/engine_smes)
+"wkB" = (
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"wkH" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/table,
+/obj/item/storage/box/bodybags,
+/obj/item/pen,
+/obj/item/clothing/mask/breath/medical,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"wkN" = (
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/cargo/lobby)
+"wkO" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"wkW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/dark_red/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"wlr" = (
+/obj/structure/table,
+/obj/item/stack/spacecash/c10,
+/obj/item/stack/spacecash/c1{
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"wls" = (
+/obj/item/trash/sosjerky,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wlt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"wlz" = (
+/obj/structure/filingcabinet,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"wlR" = (
+/obj/structure/closet/boxinggloves,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"wlW" = (
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/computer/robotics{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/command/heads_quarters/rd)
+"wlY" = (
+/obj/machinery/door/airlock/freezer,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"wma" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"wme" = (
+/obj/effect/turf_decal/weather/snow,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating/icemoon,
+/area/icemoon/underground/explored)
+"wml" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/railing/corner/end/flip,
+/obj/effect/turf_decal/siding/thinplating/corner,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"wmG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/directional/west,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/science/ordnance/testlab)
+"wmK" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L5"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wmN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"wmP" = (
+/obj/machinery/plate_press,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/siding/dark{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/prison/work)
+"wmR" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/glass{
+ name = "Mining Station Bridge"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/mine/production)
+"wmT" = (
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"wna" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"wnm" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"wnv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"wnB" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Pens - Starboard Aft";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"wnK" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"wnR" = (
+/obj/machinery/computer/scan_consolenew,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"wnT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/science/lab)
"wnX" = (
/obj/structure/sink/directional/south,
@@ -74640,6 +146738,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/brig)
+<<<<<<< HEAD
"wol" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/extinguisher_cabinet/directional/east,
@@ -74654,6 +146753,15 @@
dir = 10
},
/area/station/science/research)
+=======
+"woc" = (
+/obj/machinery/vending/wardrobe/atmos_wardrobe,
+/obj/effect/turf_decal/stripes/end,
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/no_smoking/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/engineering/atmos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wor" = (
/turf/open/openspace,
/area/station/medical/medbay/aft)
@@ -74664,11 +146772,14 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
"woC" = (
/obj/effect/turf_decal/trimline/yellow/filled/line,
/obj/structure/sign/poster/official/safety_eye_protection/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"woH" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -74696,6 +146807,7 @@
},
/turf/open/floor/plating,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"woV" = (
/obj/structure/table,
/obj/item/petri_dish{
@@ -75341,6 +147453,565 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
+=======
+"wpc" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"wpn" = (
+/obj/machinery/light/small/dim/directional/east,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"wpp" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/pipedispenser/disposal,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"wpu" = (
+/obj/structure/table,
+/obj/item/stock_parts/micro_laser,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/servo,
+/obj/item/stock_parts/capacitor,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/obj/item/stock_parts/micro_laser/high,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"wpx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/mine/eva)
+"wpC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"wpO" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"wpQ" = (
+/obj/machinery/bluespace_vendor/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"wpY" = (
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wpZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/end,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"wqb" = (
+/obj/structure/cable,
+/obj/machinery/camera/directional/east{
+ c_tag = "Research Division South"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"wqj" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"wqo" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"wqx" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/fore)
+"wqI" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+"wqN" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"wqT" = (
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Public Mining Storage";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/mine/storage)
+"wqU" = (
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+"wrk" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge";
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"wrw" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/safety_report/directional/east,
+/obj/item/radio/intercom/prison/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"wrA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/textured,
+/area/station/commons/storage/primary)
+"wrE" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 2
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/cable_coil{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"wrP" = (
+/obj/machinery/computer/cargo,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"wrV" = (
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"wrX" = (
+/turf/closed/wall,
+/area/station/service/chapel)
+"wsh" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"wsk" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing/corner/end,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wsp" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"wsr" = (
+/obj/machinery/door/airlock/hatch,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wsu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"wsD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"wsF" = (
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/infections{
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/structure/reagent_dispensers/wall/virusfood/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"wsN" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"wsO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/blobstart,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wsV" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/thinplating_new,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"wta" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"wtg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/hos)
+"wtj" = (
+/obj/structure/flora/grass/brown/style_2,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"wtr" = (
+/obj/structure/table/glass,
+/obj/item/food/grown/wheat,
+/obj/item/food/grown/watermelon,
+/obj/item/food/grown/watermelon,
+/obj/item/food/grown/watermelon,
+/obj/item/food/grown/citrus/orange,
+/obj/item/food/grown/grapes,
+/obj/item/food/grown/cocoapod,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics/garden)
+"wtC" = (
+/obj/structure/chair/stool/directional/south,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wtM" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access";
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"wtP" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"wtT" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/science/research)
+"wug" = (
+/obj/machinery/gulag_item_reclaimer{
+ pixel_y = 24
+ },
+/turf/open/floor/carpet,
+/area/station/security/processing)
+"wuh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+"wuo" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"wuv" = (
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/fore)
+"wuz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/cargo/bitrunning/den)
+"wuA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"wuC" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"wuH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Upper Permabrig Hallway West";
+ network = list("ss13","prison")
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"wve" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"wvl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"wvv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Launch Room"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"wvw" = (
+/obj/structure/fence/cut/medium{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"wvz" = (
+/obj/structure/table,
+/obj/item/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/assembly/timer{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/assembly/timer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/assembly/timer,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/office)
+"wvF" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 8
+ },
+/turf/open/openspace/icemoon/keep_below,
+/area/icemoon/underground/explored)
+"wvI" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"wvJ" = (
+/obj/machinery/photocopier,
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/structure/sign/calendar/directional/north,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"wvK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"wvV" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/pumproom)
+"wvW" = (
+/obj/structure/bed/dogbed/runtime,
+/obj/item/toy/cattoy,
+/obj/machinery/newscaster/directional/north,
+/mob/living/basic/pet/cat/runtime,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"wwi" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ dir = 4;
+ name = "Arrivals Dock"
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/secondary/entry)
+"wwn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/left/directional/west{
+ name = "Reception Window"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "hop";
+ name = "Privacy Shutters"
+ },
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ name = "Head of Personnel's Desk";
+ req_access = list("hop")
+ },
+/obj/machinery/flasher/directional/south{
+ id = "hopflash";
+ pixel_y = -23
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"wws" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"wwu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"wwI" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wwK" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"wwO" = (
+/obj/machinery/recharger,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"wxg" = (
+/turf/open/floor/iron/freezer,
+/area/mine/laborcamp)
+"wxl" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"wxw" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/department/chapel)
"wxy" = (
/obj/structure/disposalpipe/segment,
@@ -75366,6 +148037,7 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
"wyj" = (
/obj/machinery/light/directional/south,
/obj/effect/turf_decal/trimline/blue/filled/line,
@@ -75397,6 +148069,44 @@
dir = 4
},
/turf/open/floor/plating,
+=======
+"wxY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/construction)
+"wyj" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"wyo" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Holding Area"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wyr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"wyB" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/cargo/storage)
"wyF" = (
/obj/structure/rack,
@@ -75408,6 +148118,17 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
+=======
+"wyL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wyO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -75419,6 +148140,16 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/security/prison/mess)
+<<<<<<< HEAD
+=======
+"wyX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/stairs/south,
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wzc" = (
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable,
@@ -75430,6 +148161,14 @@
/obj/effect/spawner/random/clothing/bowler_or_that,
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+<<<<<<< HEAD
+=======
+"wzi" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wzk" = (
/turf/open/floor/wood,
/area/station/command/meeting_room)
@@ -75451,6 +148190,39 @@
},
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
+=======
+"wzv" = (
+/obj/machinery/atmospherics/components/tank/air{
+ initialize_directions = 3;
+ dir = 3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"wzH" = (
+/obj/structure/minecart_rail{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/icemoon/underground/explored)
+"wzU" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wAf" = (
/obj/machinery/requests_console/directional/north{
department = "Cargo Bay";
@@ -75462,6 +148234,7 @@
/obj/item/folder/yellow,
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
"wAk" = (
/obj/item/toy/snowball{
pixel_x = -6;
@@ -75481,6 +148254,8 @@
},
/turf/open/floor/iron,
/area/station/security/brig/upper)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wAv" = (
/obj/structure/chair/comfy/brown{
dir = 1
@@ -75490,6 +148265,7 @@
},
/turf/open/floor/iron/grimy,
/area/station/service/chapel/office)
+<<<<<<< HEAD
"wAx" = (
/obj/structure/sign/warning/secure_area/directional/north{
desc = "A warning sign which reads 'SERVER ROOM'.";
@@ -75498,6 +148274,8 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/science/server)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wAB" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
dir = 4
@@ -75505,6 +148283,16 @@
/obj/machinery/meter,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"wAJ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/griddle,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wAQ" = (
/obj/machinery/computer/shuttle/labor/one_way{
dir = 4
@@ -75539,12 +148327,30 @@
/turf/open/floor/plating,
/area/station/maintenance/fore)
"wBa" = (
+<<<<<<< HEAD
/obj/structure/railing,
/obj/effect/turf_decal/siding/thinplating_new/light{
dir = 10
},
/turf/open/floor/wood/large,
/area/station/hallway/primary/starboard)
+=======
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/gloves/color/grey/protects_cold,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/iron/textured,
+/area/station/ai_monitored/command/storage/eva)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wBb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75582,6 +148388,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/security/prison/workout)
+<<<<<<< HEAD
"wBr" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -75591,6 +148398,18 @@
/obj/item/kirbyplants/organic/plant2,
/turf/open/floor/stone,
/area/station/service/bar/atrium)
+=======
+"wBs" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/item/kirbyplants/random,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/service/chapel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wBy" = (
/obj/machinery/netpod,
/obj/item/radio/intercom/directional/south,
@@ -75602,12 +148421,15 @@
},
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+<<<<<<< HEAD
"wBF" = (
/obj/machinery/status_display/supply{
pixel_y = 2
},
/turf/closed/wall,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wBT" = (
/obj/machinery/camera/directional/south{
c_tag = "Port Hallway Center"
@@ -75617,6 +148439,12 @@
/area/station/hallway/primary/port)
"wBV" = (
/obj/structure/closet/crate,
+<<<<<<< HEAD
+=======
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/cargo/miningdock)
"wCo" = (
@@ -75625,6 +148453,13 @@
},
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+<<<<<<< HEAD
+=======
+"wCI" = (
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/openspace,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wCK" = (
/obj/effect/turf_decal/trimline/dark_blue/corner{
dir = 8
@@ -75650,6 +148485,19 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron/dark,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"wCN" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/poster/official/wtf_is_co2/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wCV" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -75657,6 +148505,15 @@
dir = 8
},
/area/station/science/explab)
+<<<<<<< HEAD
+=======
+"wDb" = (
+/obj/machinery/requests_console/auto_name/directional/east,
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wDc" = (
/obj/structure/cable,
/obj/machinery/door/airlock/engineering{
@@ -75693,6 +148550,7 @@
"wDg" = (
/turf/open/floor/iron,
/area/station/engineering/atmos/storage)
+<<<<<<< HEAD
"wDi" = (
/obj/structure/table,
/obj/item/clothing/mask/breath{
@@ -75721,6 +148579,8 @@
},
/turf/open/floor/iron,
/area/station/commons/storage/mining)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wDk" = (
/obj/effect/turf_decal/trimline/green/filled/line{
dir = 6
@@ -75735,6 +148595,7 @@
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/station/maintenance/starboard/upper)
+<<<<<<< HEAD
"wDs" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/window/reinforced/spawner/directional/west,
@@ -75745,6 +148606,8 @@
},
/turf/open/floor/iron/dark,
/area/mine/laborcamp)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wDG" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -75765,6 +148628,17 @@
},
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
+=======
+"wDS" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/fake_stairs/wood/directional/north,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wDU" = (
/turf/closed/wall/r_wall,
/area/mine/eva/lower)
@@ -75775,10 +148649,19 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/iron,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
+=======
+"wEb" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wEh" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/cargo/sorting)
+<<<<<<< HEAD
"wEq" = (
/obj/structure/chair/office{
dir = 8
@@ -75789,12 +148672,29 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+"wEp" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/dark/textured_edge,
+/area/station/security/prison)
+"wEu" = (
+/obj/structure/sign/warning/directional/south,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wEG" = (
/obj/structure/extinguisher_cabinet/directional/south{
pixel_x = 4
},
/obj/machinery/light_switch/directional/south{
+<<<<<<< HEAD
pixel_x = -6
+=======
+ pixel_x = -8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75853,6 +148753,30 @@
/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
+=======
+"wFt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{
+ color = "#0000ff";
+ dir = 8;
+ name = "Supply multi deck pipe adapter"
+ },
+/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
+ color = "#ff0000";
+ dir = 8;
+ name = "Scrubbers multi deck pipe adapter"
+ },
+/obj/structure/cable/multilayer/multiz,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"wFJ" = (
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wFN" = (
/mob/living/basic/slime,
/turf/open/floor/engine,
@@ -75884,6 +148808,7 @@
name = "Test Chamber Blast Door"
},
/obj/effect/spawner/structure/window/reinforced,
+<<<<<<< HEAD
/turf/open/floor/engine,
/area/station/science/explab)
"wGm" = (
@@ -75893,6 +148818,16 @@
/obj/structure/chair/stool/bar/directional/north,
/turf/open/floor/stone,
/area/station/service/bar/atrium)
+=======
+/turf/open/floor/plating,
+/area/station/science/explab)
+"wGt" = (
+/obj/structure/table/glass,
+/obj/item/storage/box/monkeycubes,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wGv" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
@@ -75917,6 +148852,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"wGN" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -75930,6 +148866,8 @@
/obj/structure/sign/warning/electric_shock,
/turf/open/floor/plating,
/area/station/science/xenobiology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wGO" = (
/obj/machinery/light/directional/south,
/obj/machinery/atmospherics/pipe/multiz/violet/visible{
@@ -75943,10 +148881,13 @@
},
/turf/open/floor/iron/dark/diagonal,
/area/station/engineering/atmos/storage)
+<<<<<<< HEAD
"wGQ" = (
/obj/machinery/light/small/dim/directional/west,
/turf/open/floor/stone,
/area/station/commons/lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wGW" = (
/obj/structure/table,
/obj/item/book/manual/wiki/security_space_law,
@@ -75964,6 +148905,17 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
+=======
+"wGZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/insectguts,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wHb" = (
/obj/machinery/atmospherics/components/unary/passive_vent{
dir = 1
@@ -75997,12 +148949,15 @@
},
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
"wHr" = (
/obj/structure/fence/post{
dir = 8
},
/turf/open/floor/plating/snowed/smoothed/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wHH" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/red{
@@ -76010,6 +148965,7 @@
},
/turf/open/floor/iron,
/area/mine/laborcamp/security)
+<<<<<<< HEAD
"wHK" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/stripes/line{
@@ -76021,6 +148977,8 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wIg" = (
/obj/machinery/mech_bay_recharge_port{
dir = 2
@@ -76033,6 +148991,7 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"wIx" = (
/obj/machinery/newscaster/directional/south,
/obj/effect/turf_decal/siding/thinplating/dark{
@@ -76049,12 +149008,24 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wIz" = (
/obj/machinery/light/small/directional/west,
/obj/structure/table/wood,
/obj/effect/landmark/start/hangover,
/turf/open/floor/carpet,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"wIC" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/flashlight/lantern,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wIR" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -76084,10 +149055,20 @@
/obj/effect/landmark/start/hangover,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"wJD" = (
/obj/structure/sign/departments/maint/alt,
/turf/closed/wall,
/area/station/maintenance/aft/lesser)
+=======
+"wJy" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wJG" = (
/obj/machinery/holopad,
/obj/structure/cable,
@@ -76120,10 +149101,40 @@
/obj/effect/landmark/start/depsec/medical,
/turf/open/floor/iron/dark/smooth_large,
/area/station/security/checkpoint/medical)
+<<<<<<< HEAD
"wKh" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
/turf/closed/wall/r_wall,
/area/station/science/ordnance/burnchamber)
+=======
+"wKi" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/lab)
+"wKu" = (
+/obj/structure/disposalpipe/trunk/multiz/down{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/port/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wKv" = (
/obj/structure/table,
/obj/item/radio/off,
@@ -76150,11 +149161,48 @@
},
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
"wKY" = (
/obj/machinery/vending/games,
/obj/machinery/newscaster/directional/north,
/turf/open/floor/wood,
/area/station/service/library)
+=======
+"wLc" = (
+/obj/structure/table,
+/obj/machinery/button/flasher{
+ pixel_x = -6;
+ pixel_y = -1;
+ id = "brigentry"
+ },
+/obj/machinery/button/door{
+ pixel_y = 9;
+ pixel_x = 6;
+ req_access = list("secuirty");
+ id = "innerbrig";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1
+ },
+/obj/machinery/button/door{
+ pixel_y = -1;
+ pixel_x = 6;
+ req_access = list("secuirty");
+ id = "outerbrig";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1
+ },
+/obj/machinery/button/door/directional/north{
+ id = "briggate";
+ name = "Front Gate Shutters";
+ req_access = list("brig");
+ pixel_y = 9;
+ pixel_x = -6
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/security/brig/entrance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wLk" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
@@ -76170,10 +149218,19 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
"wLK" = (
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai)
+=======
+"wLI" = (
+/obj/structure/flora/tree/pine/style_random,
+/obj/structure/marker_beacon/cerulean,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/unexplored/rivers/no_monsters)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wLO" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -76193,6 +149250,7 @@
dir = 1
},
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"wLU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -76201,6 +149259,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wLW" = (
/obj/effect/landmark/atmospheric_sanity/mark_all_station_areas_as_goal,
/turf/open/misc/asteroid/snow/icemoon,
@@ -76284,6 +149344,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/commons/storage/mining)
+<<<<<<< HEAD
"wME" = (
/obj/machinery/light_switch/directional/north{
pixel_x = 6;
@@ -76314,6 +149375,48 @@
dir = 1
},
/area/station/security/office)
+=======
+"wMT" = (
+/obj/structure/sign/poster/random/directional/south,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"wMU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wMV" = (
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin/tagger,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/security/office)
+"wMY" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/maintenance/fore)
+"wNj" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wNp" = (
/obj/machinery/door/airlock/maintenance{
name = "Medbay Maintenance"
@@ -76362,6 +149465,26 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/engineering/atmos/storage)
+<<<<<<< HEAD
+=======
+"wOq" = (
+/obj/structure/fence/door/opened,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"wOt" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wOy" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -76372,12 +149495,15 @@
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"wOC" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wOF" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/official/random/directional/north,
@@ -76414,6 +149540,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"wPe" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -76434,6 +149561,8 @@
dir = 1
},
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wPf" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -76464,6 +149593,21 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"wPx" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wPD" = (
/obj/machinery/door/airlock/security/glass{
name = "Evidence Storage"
@@ -76479,6 +149623,22 @@
/obj/machinery/status_display/ai/directional/north,
/turf/open/openspace,
/area/station/engineering/atmos/storage)
+<<<<<<< HEAD
+=======
+"wPG" = (
+/obj/structure/fence{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"wPJ" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/stairs/north,
+/turf/open/floor/iron/stairs/medium,
+/area/station/commons/dorms/laundry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wPN" = (
/obj/structure/railing{
dir = 4
@@ -76488,6 +149648,7 @@
},
/turf/open/floor/plating/snowed/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+<<<<<<< HEAD
"wPR" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -76498,6 +149659,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wPX" = (
/obj/structure/table,
/obj/item/storage/belt/medical{
@@ -76513,6 +149676,10 @@
/obj/item/reagent_containers/spray/cleaner,
/obj/item/blood_filter,
/obj/item/radio/intercom/directional/south,
+<<<<<<< HEAD
+=======
+/obj/structure/window/reinforced/spawner/directional/west,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/medical/storage)
"wQh" = (
@@ -76544,6 +149711,7 @@
/turf/open/floor/plating/icemoon,
/area/station/security/execution/education)
"wQx" = (
+<<<<<<< HEAD
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -76551,6 +149719,11 @@
/obj/effect/spawner/random/structure/steam_vent,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+/obj/structure/flora/grass/brown/style_random,
+/turf/open/misc/asteroid/snow/standard_air,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wQC" = (
/obj/item/flashlight/lantern,
/obj/structure/table/wood,
@@ -76564,12 +149737,15 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"wQN" = (
/obj/structure/fence/cut/large{
dir = 1
},
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wQR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 8
@@ -76588,6 +149764,7 @@
"wRa" = (
/turf/open/openspace,
/area/station/security/prison)
+<<<<<<< HEAD
"wRc" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -76597,6 +149774,18 @@
"wRd" = (
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+"wRd" = (
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"wRk" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wRr" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -76610,6 +149799,17 @@
/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/glass/reinforced,
/area/station/security/lockers)
+<<<<<<< HEAD
+=======
+"wRu" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wRx" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -76650,6 +149850,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/freezer,
/area/mine/eva/lower)
+<<<<<<< HEAD
"wRO" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -76658,6 +149859,8 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wRR" = (
/obj/machinery/door/poddoor/shutters/preopen{
dir = 1;
@@ -76668,10 +149871,13 @@
/obj/effect/spawner/structure/window/hollow/reinforced/middle,
/turf/open/floor/plating,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"wSc" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wSd" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -76701,6 +149907,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"wSp" = (
+/obj/structure/fence/corner{
+ dir = 10
+ },
+/obj/item/stack/cable_coil/five,
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wSs" = (
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
@@ -76718,6 +149934,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/security/prison/work)
+<<<<<<< HEAD
"wSL" = (
/obj/effect/landmark/start/botanist,
/obj/effect/turf_decal/tile/green/opposingcorners{
@@ -76738,18 +149955,30 @@
},
/turf/open/floor/plating,
/area/station/cargo/storage)
+=======
+"wSC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wSU" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"wSX" = (
/obj/structure/railing/corner,
/obj/machinery/door/firedoor/border_only,
/obj/effect/turf_decal/tile/brown/half/contrasted,
/turf/open/floor/iron/dark/side,
/area/mine/eva)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wSZ" = (
/obj/machinery/camera/directional/east{
c_tag = "Security - Permabrig Upper Hallway East";
@@ -76760,11 +149989,14 @@
"wTg" = (
/turf/closed/wall,
/area/station/engineering/main)
+<<<<<<< HEAD
"wTl" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/effect/landmark/start/mime,
/turf/open/floor/wood,
/area/station/commons/lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wTw" = (
/obj/effect/turf_decal/trimline/neutral/warning{
dir = 10
@@ -76785,6 +150017,17 @@
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/iron/dark/telecomms,
/area/station/tcommsat/server)
+<<<<<<< HEAD
+=======
+"wTB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot,
+/obj/structure/cable,
+/obj/structure/closet/radiation,
+/obj/structure/sign/warning/no_smoking/circle/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wTC" = (
/obj/structure/closet/secure_closet/security/engine,
/obj/machinery/requests_console/directional/north{
@@ -76798,6 +150041,28 @@
/obj/effect/turf_decal/tile/red/opposingcorners,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint/engineering)
+<<<<<<< HEAD
+=======
+"wTL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wTX" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -76805,11 +150070,24 @@
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"wUb" = (
/obj/structure/rack,
/obj/item/poster/random_contraband,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+=======
+"wUf" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/hallway/secondary/entry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wUi" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Stbd";
@@ -76823,6 +150101,16 @@
"wUj" = (
/turf/closed/wall,
/area/station/service/lawoffice)
+<<<<<<< HEAD
+=======
+"wUm" = (
+/obj/machinery/vatgrower{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wUt" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -76854,11 +150142,25 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
"wUD" = (
/obj/structure/fake_stairs/wood/directional/north,
/obj/effect/mapping_helpers/no_atoms_ontop,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+"wUB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/chair/stool/bar/directional/north,
+/turf/open/floor/eighties,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wUJ" = (
/obj/machinery/computer/atmos_alert,
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
@@ -76917,6 +150219,25 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
+=======
+"wVd" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wVe" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -76926,6 +150247,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/carpet,
/area/station/service/library)
+<<<<<<< HEAD
"wVq" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -76935,6 +150257,15 @@
/obj/structure/sign/warning/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/port/lesser)
+=======
+"wVr" = (
+/obj/structure/mineral_door/wood{
+ name = "Maintenance Bar";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wVu" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -76968,6 +150299,7 @@
},
/turf/open/floor/iron,
/area/station/cargo/sorting)
+<<<<<<< HEAD
"wVI" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -76985,6 +150317,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wWa" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -76998,6 +150332,7 @@
/obj/effect/spawner/random/structure/tank_holder,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"wWB" = (
/obj/structure/chair/plastic{
dir = 8
@@ -77005,6 +150340,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/maintenance/starboard/fore)
+=======
+"wWo" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wWw" = (
+/obj/structure/fence{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wWM" = (
/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
dir = 4
@@ -77034,6 +150384,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
+=======
+"wXb" = (
+/obj/machinery/firealarm/directional/west,
+/turf/open/openspace,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wXh" = (
/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{
dir = 8
@@ -77041,10 +150398,13 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/white,
/area/station/medical/cryo)
+<<<<<<< HEAD
"wXn" = (
/obj/structure/flora/grass/both/style_3,
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wXR" = (
/obj/structure/table,
/obj/item/storage/medkit/regular{
@@ -77082,10 +150442,13 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central/fore)
+<<<<<<< HEAD
"wYp" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/ice,
/area/icemoon/underground/explored)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wYq" = (
/obj/machinery/door/airlock{
name = "Perma Overlook Closet"
@@ -77116,6 +150479,19 @@
/obj/machinery/requests_console/auto_name/directional/north,
/turf/open/floor/iron/cafeteria,
/area/station/commons/dorms/laundry)
+<<<<<<< HEAD
+=======
+"wYH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wYJ" = (
/turf/closed/wall,
/area/station/engineering/storage_shared)
@@ -77125,6 +150501,15 @@
},
/turf/open/floor/plating,
/area/station/security/courtroom)
+<<<<<<< HEAD
+=======
+"wYS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wYZ" = (
/obj/structure/disposalpipe/junction/flip{
dir = 1
@@ -77136,6 +150521,7 @@
"wZj" = (
/turf/open/floor/iron/dark/textured,
/area/station/security/warden)
+<<<<<<< HEAD
"wZp" = (
/obj/item/storage/toolbox/electrical{
pixel_x = 4;
@@ -77162,6 +150548,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/storage/eva)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wZr" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 8
@@ -77172,6 +150560,7 @@
/obj/structure/extinguisher_cabinet/directional/east,
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"wZv" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -77185,6 +150574,20 @@
/obj/structure/sign/xenobio_guide/directional/north,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+=======
+"wZu" = (
+/obj/vehicle/ridden/wheelchair{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/end{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/medical/medbay/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wZD" = (
/obj/machinery/computer/records/security{
dir = 1
@@ -77198,11 +150601,43 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
+=======
+"wZW" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/rack,
+/obj/item/clothing/accessory/armband/hydro{
+ pixel_y = 4;
+ pixel_x = 2
+ },
+/obj/item/clothing/accessory/armband/hydro,
+/obj/item/toy/figure/botanist,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xad" = (
/obj/effect/spawner/structure/window/hollow/reinforced/middle,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/range)
+<<<<<<< HEAD
+=======
+"xaf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xal" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
@@ -77245,6 +150680,25 @@
/obj/machinery/door/airlock/external/glass,
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"xax" = (
+/obj/machinery/photocopier,
+/obj/machinery/button/door/directional/north{
+ id = "heads_meeting";
+ name = "Security Shutters"
+ },
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"xay" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood/parquet,
+/area/station/service/bar/backroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xaA" = (
/obj/structure/closet/secure_closet/hop,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -77302,6 +150756,14 @@
},
/turf/open/floor/carpet,
/area/station/command/heads_quarters/captain)
+<<<<<<< HEAD
+=======
+"xbq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xbr" = (
/obj/effect/spawner/random/structure/steam_vent,
/turf/open/floor/plating,
@@ -77326,9 +150788,27 @@
/turf/open/floor/iron/freezer,
/area/mine/eva/lower)
"xbB" = (
+<<<<<<< HEAD
/obj/machinery/gibber,
/turf/open/misc/asteroid/snow/coldroom,
/area/station/service/kitchen/coldroom)
+=======
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/shower/directional/south,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/fluff/shower_drain,
+/obj/effect/turf_decal/stripes/white/end,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Pharmacy";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xbC" = (
/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
/obj/machinery/meter,
@@ -77348,6 +150828,15 @@
/obj/effect/turf_decal/siding/white,
/turf/open/floor/iron/dark,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"xcf" = (
+/obj/structure/closet/crate/grave/filled,
+/turf/open/misc/dirt{
+ initial_gas_mix = "ICEMOON_ATMOS"
+ },
+/area/icemoon/underground/explored/graveyard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xcp" = (
/obj/item/trash/pistachios,
/turf/open/floor/plating,
@@ -77378,6 +150867,7 @@
},
/turf/open/lava/plasma/ice_moon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
"xcO" = (
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/machinery/status_display/ai/directional/north,
@@ -77388,6 +150878,8 @@
/obj/structure/extinguisher_cabinet/directional/east,
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xcW" = (
/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{
dir = 1
@@ -77411,16 +150903,38 @@
/obj/effect/mapping_helpers/airlock/access/any/command/ai_upload,
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"xdk" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+"xdh" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/stairs/north,
+/turf/open/floor/iron/stairs/medium,
+/area/station/commons/dorms/laundry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xdl" = (
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/storage)
+<<<<<<< HEAD
+=======
+"xds" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xdH" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/chair{
@@ -77431,10 +150945,13 @@
},
/turf/open/floor/iron/white/corner,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"xdM" = (
/obj/structure/sign/warning/cold_temp,
/turf/closed/wall,
/area/station/hallway/secondary/exit/departure_lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xdU" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1
@@ -77448,21 +150965,27 @@
/obj/item/radio/intercom/directional/east,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"xdY" = (
/obj/structure/sign/warning/directional/west,
/turf/open/genturf/blue,
/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xdZ" = (
/obj/effect/turf_decal/siding/wideplating/dark{
dir = 6
},
/turf/open/floor/iron/dark/textured,
/area/station/security/prison/rec)
+<<<<<<< HEAD
"xea" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/small/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xeg" = (
/obj/effect/turf_decal/weather/snow/corner,
/turf/open/misc/asteroid/snow/icemoon,
@@ -77481,10 +151004,47 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/qm)
+<<<<<<< HEAD
+=======
+"xer" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rnd2";
+ name = "Research Lab Shutters"
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/science/lab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xex" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plating,
/area/station/command/teleporter)
+<<<<<<< HEAD
+=======
+"xeF" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xeH" = (
/obj/machinery/airalarm/directional/west,
/turf/open/floor/wood,
@@ -77550,10 +151110,46 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"xfp" = (
+/obj/structure/table,
+/obj/item/multitool/circuit{
+ pixel_x = -8
+ },
+/obj/item/multitool/circuit{
+ pixel_x = -4
+ },
+/obj/item/multitool/circuit,
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = 8;
+ pixel_y = -2
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xft" = (
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"xfv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/filled/corner,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xfB" = (
/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
/turf/open/floor/iron,
@@ -77562,6 +151158,7 @@
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Testing Lab Maintenance"
+<<<<<<< HEAD
},
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -77645,6 +151242,101 @@
"xgy" = (
/turf/open/openspace,
/area/station/service/hydroponics)
+=======
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/science/research,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xfM" = (
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/components/binary/pump/layer2{
+ dir = 8;
+ name = "Exfiltrate to Waste"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage)
+"xfZ" = (
+/obj/structure/flora/bush/snow/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xgc" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/glass/reinforced,
+/area/station/ai_monitored/security/armory/upper)
+"xgg" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/gloves/color/grey/protects_cold,
+/obj/item/clothing/mask/gas,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/textured,
+/area/station/ai_monitored/command/storage/eva)
+"xgi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"xgm" = (
+/obj/structure/sign/directions/evac{
+ dir = 4;
+ pixel_x = -31;
+ pixel_y = -32
+ },
+/obj/structure/sign/directions/engineering{
+ pixel_x = -31;
+ pixel_y = -40
+ },
+/obj/structure/sign/directions/security{
+ dir = 4;
+ pixel_x = -31;
+ pixel_y = -24
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xgy" = (
+/turf/open/openspace,
+/area/station/service/hydroponics)
+"xgF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/structure/table,
+/obj/item/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stack/cable_coil,
+/obj/item/pen{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/machinery/door/firedoor/border_only,
+/obj/machinery/door/firedoor/border_only{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria{
+ dir = 8
+ },
+/area/station/science/ordnance/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xgI" = (
/obj/structure/sign/warning/secure_area{
desc = "A warning sign which reads 'BOMB RANGE";
@@ -77705,6 +151397,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/carpet/blue,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"xhg" = (
/obj/machinery/camera/directional/east{
c_tag = "Garden"
@@ -77713,6 +151406,8 @@
/obj/structure/water_source/puddle,
/turf/open/floor/grass,
/area/station/service/hydroponics/garden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xhk" = (
/turf/open/floor/iron/dark,
/area/station/commons/storage/primary)
@@ -77752,6 +151447,19 @@
/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
+=======
+"xhA" = (
+/obj/structure/fence/door/opened,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xhD" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -77764,6 +151472,13 @@
"xhK" = (
/turf/closed/wall/r_wall,
/area/station/security/prison/safe)
+<<<<<<< HEAD
+=======
+"xhV" = (
+/obj/machinery/duct,
+/turf/open/floor/wood,
+/area/station/hallway/secondary/service)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xie" = (
/obj/machinery/camera/directional/west{
c_tag = "Engineering MiniSat Access"
@@ -77775,6 +151490,7 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/transit_tube)
+<<<<<<< HEAD
"xij" = (
/obj/structure/railing{
dir = 1
@@ -77783,6 +151499,25 @@
/obj/machinery/light_switch/directional/west,
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+"xiq" = (
+/obj/machinery/computer/security/telescreen/interrogation/directional/north,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 8
+ },
+/area/station/security/processing)
+"xir" = (
+/obj/item/radio/intercom/prison/directional/north,
+/obj/effect/turf_decal/tile/red/full,
+/obj/machinery/light_switch/directional/north{
+ pixel_x = 16
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/brig/entrance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xit" = (
/obj/item/book/manual/wiki/security_space_law,
/obj/structure/table/wood,
@@ -77804,6 +151539,17 @@
},
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+<<<<<<< HEAD
+=======
+"xiL" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/structure/sink/kitchen/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xiO" = (
/obj/effect/turf_decal/weather/snow/corner{
dir = 1
@@ -77829,10 +151575,13 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/large,
/area/station/medical/medbay/lobby)
+<<<<<<< HEAD
"xjg" = (
/obj/structure/sign/departments/medbay/alt,
/turf/closed/wall,
/area/station/medical/medbay/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xjm" = (
/obj/machinery/light_switch/directional/north,
/obj/machinery/camera/directional/north{
@@ -77841,17 +151590,21 @@
/obj/vehicle/ridden/janicart,
/turf/open/floor/iron,
/area/station/service/janitor)
+<<<<<<< HEAD
"xjs" = (
/obj/structure/railing/corner/end{
dir = 8
},
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xjC" = (
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
"xjF" = (
/obj/item/radio/intercom/directional/west,
+<<<<<<< HEAD
/obj/structure/disposalpipe/trunk{
dir = 4
},
@@ -77872,10 +151625,33 @@
dir = 8
},
/obj/structure/disposalpipe/trunk{
+=======
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"xjO" = (
+/obj/machinery/power/port_gen/pacman{
+ anchored = 1
+ },
+/turf/open/floor/iron/smooth,
+/area/mine/laborcamp/security)
+"xjP" = (
+/obj/machinery/disposal/delivery_chute{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 1
},
/turf/open/floor/plating,
/area/station/cargo/sorting)
+<<<<<<< HEAD
"xjU" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -78021,6 +151797,156 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
+=======
+"xjT" = (
+/obj/structure/table,
+/obj/item/storage/medkit/regular,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness)
+"xjZ" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/iron/dark,
+/area/mine/eva)
+"xke" = (
+/obj/effect/turf_decal/trimline/dark_red/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"xkr" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/wtf_is_co2/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"xkI" = (
+/obj/machinery/door/airlock/command{
+ name = "Conference Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"xkW" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"xkZ" = (
+/obj/machinery/teleport/station,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"xlh" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Medbay Delivery";
+ req_access = list("medical")
+ },
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/large,
+/area/station/medical/storage)
+"xlm" = (
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xlq" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing,
+/turf/open/lava/plasma/ice_moon,
+/area/icemoon/underground/explored)
+"xlx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/security/office)
+"xlA" = (
+/obj/structure/railing/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"xlC" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/smooth_edge{
+ dir = 1
+ },
+/area/station/security/lockers)
+"xlH" = (
+/obj/effect/mapping_helpers/broken_floor,
+/mob/living/basic/mouse/white{
+ desc = "This mouse smells faintly of alcohol.";
+ name = "Mik"
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/fore)
+"xlN" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "maint2"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xmf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/science/research)
+"xmk" = (
+/obj/structure/plasticflaps{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"xmo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
"xmx" = (
@@ -78028,6 +151954,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/morgue)
+<<<<<<< HEAD
+=======
+"xmD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xmK" = (
/obj/structure/table,
/obj/item/stack/sheet/iron/fifty,
@@ -78038,6 +151977,7 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/engineering/storage)
+<<<<<<< HEAD
"xmL" = (
/obj/machinery/portable_atmospherics/canister,
/obj/effect/turf_decal/bot,
@@ -78049,6 +151989,16 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+=======
+"xmM" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xmN" = (
/obj/structure/table/reinforced,
/obj/item/radio/intercom/directional/south,
@@ -78082,6 +152032,7 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"xnc" = (
/obj/effect/turf_decal/siding/white/end{
dir = 4
@@ -78096,12 +152047,15 @@
/obj/item/kirbyplants/fern,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xni" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 1
},
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
"xnt" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -78116,6 +152070,8 @@
},
/turf/open/floor/iron/smooth_large,
/area/station/science/cytology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xnE" = (
/obj/machinery/duct,
/obj/effect/turf_decal/tile/yellow{
@@ -78123,6 +152079,19 @@
},
/turf/open/floor/iron/dark/corner,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"xnK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/sign/warning/gas_mask/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xnM" = (
/obj/structure/cable,
/turf/open/floor/iron/white/side{
@@ -78150,18 +152119,37 @@
},
/turf/open/lava/plasma/ice_moon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
"xog" = (
/obj/structure/fence{
dir = 1
},
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/surface/outdoors/nospawn)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xow" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/firealarm/directional/west,
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat/atmos)
+<<<<<<< HEAD
+=======
+"xpc" = (
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/machinery/status_display/evac/directional/south,
+/obj/structure/table,
+/obj/item/flatpack{
+ board = /obj/item/circuitboard/machine/flatpacker;
+ pixel_x = -5
+ },
+/obj/item/multitool{
+ pixel_x = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xpw" = (
/obj/machinery/power/apc/auto_name/directional/south,
/obj/structure/cable,
@@ -78198,6 +152186,7 @@
/obj/machinery/camera/autoname/directional/east,
/turf/open/floor/iron,
/area/station/command/heads_quarters/hop)
+<<<<<<< HEAD
"xpO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/spawner/directional/west,
@@ -78208,6 +152197,8 @@
},
/turf/open/floor/plating,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xpP" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
@@ -78216,6 +152207,7 @@
/obj/effect/spawner/random/trash/mess,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
"xqa" = (
/obj/structure/railing{
dir = 4
@@ -78230,12 +152222,46 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/service/kitchen/coldroom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xqj" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/station/maintenance/port/greater)
+<<<<<<< HEAD
+=======
+"xqk" = (
+/obj/machinery/door/airlock{
+ name = "Bar";
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/bar)
+"xqt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/stone,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xqu" = (
/obj/machinery/door/window/left/directional/east{
name = "Containment Pen 10";
@@ -78248,12 +152274,25 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"xqw" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Exfiltrate to Port"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/railing,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xqy" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/cargo/office)
+<<<<<<< HEAD
"xqP" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/effect/turf_decal/siding/white{
@@ -78261,6 +152300,22 @@
},
/turf/open/floor/iron/dark,
/area/station/commons/fitness)
+=======
+"xqU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "kitchencounter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xqX" = (
/obj/structure/sign/poster/contraband/random/directional/north,
/obj/structure/cable,
@@ -78278,6 +152333,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
"xre" = (
/obj/structure/table/glass,
/obj/machinery/door/window/left/directional/north{
@@ -78297,6 +152353,8 @@
},
/turf/open/floor/iron/dark,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xrf" = (
/obj/structure/railing,
/obj/structure/cable,
@@ -78340,6 +152398,7 @@
},
/turf/open/floor/iron/dark,
/area/mine/storage)
+<<<<<<< HEAD
"xrL" = (
/obj/machinery/washing_machine,
/obj/structure/sign/poster/official/no_erp/directional/west,
@@ -78351,6 +152410,8 @@
},
/turf/open/floor/iron,
/area/station/commons/dorms/laundry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xrS" = (
/obj/structure/ladder,
/obj/effect/turf_decal/stripes/box,
@@ -78361,12 +152422,15 @@
/obj/machinery/light/blacklight/directional/east,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"xsm" = (
/obj/structure/cable,
/obj/machinery/duct,
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xss" = (
/obj/machinery/light/directional/south,
/obj/effect/turf_decal/tile/yellow/half/contrasted,
@@ -78383,6 +152447,7 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage,
/turf/open/floor/plating,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
"xsy" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -78405,6 +152470,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xtc" = (
/obj/effect/turf_decal/trimline/blue/filled/warning{
dir = 1
@@ -78412,6 +152479,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
"xte" = (
/obj/structure/railing/corner/end/flip{
dir = 4
@@ -78421,6 +152489,14 @@
},
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+=======
+"xth" = (
+/obj/structure/closet/crate/miningcar,
+/obj/effect/spawner/random/exotic/snow_gear,
+/obj/effect/spawner/random/exotic/snow_gear,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xtn" = (
/obj/structure/extinguisher_cabinet/directional/south,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -78446,6 +152522,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/security/prison/workout)
+<<<<<<< HEAD
"xtH" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 8
@@ -78549,6 +152626,1767 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron/cafeteria{
dir = 5
+=======
+"xtQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"xua" = (
+/obj/machinery/computer/security/qm,
+/obj/machinery/requests_console/directional/west{
+ department = "Quartermaster's Desk";
+ name = "Quartermaster's Desk Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/work_for_a_future/directional/north,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+"xug" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron/stairs/medium,
+/area/station/cargo/storage)
+"xul" = (
+/obj/structure/table/glass,
+/obj/machinery/door/window/left/directional/north{
+ name = "Hydroponics Desk";
+ req_access = list("hydroponics")
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/item/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -5
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"xuo" = (
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"xur" = (
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/xenobiology)
+"xuA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/textured,
+/area/station/ai_monitored/security/armory)
+"xuB" = (
+/obj/effect/turf_decal/stripes/asteroid/line,
+/obj/effect/turf_decal/tile/dark/half/contrasted,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/mine/living_quarters)
+"xuJ" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmos/hfr_room)
+"xuL" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"xuR" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/manifold{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xuW" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/cafeteria{
+ dir = 5
+ },
+/area/station/hallway/secondary/entry)
+"xvd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/warning/cold_temp/directional/north,
+/turf/open/openspace/icemoon/keep_below,
+/area/station/maintenance/port/lesser)
+"xvj" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/dark_red/arrow_ccw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw,
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xvk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/blobstart,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"xvl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"xvn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
+"xvp" = (
+/obj/structure/fence/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/underground/explored)
+"xvy" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"xvE" = (
+/obj/item/toy/snowball{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"xvI" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"xvN" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 6
+ },
+/obj/structure/sign/departments/botany/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"xvU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"xvZ" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/central/greater)
+"xwc" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"xwf" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"xwi" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+"xwm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"xwp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xwq" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xwr" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/gloves/color/grey/protects_cold,
+/obj/item/clothing/mask/gas,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/textured,
+/area/station/ai_monitored/command/storage/eva)
+"xws" = (
+/obj/structure/table,
+/obj/machinery/light/small/directional/north,
+/obj/item/folder{
+ pixel_x = 3
+ },
+/obj/item/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"xwu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Monkey Pen"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/turf/open/floor/iron/dark,
+/area/station/medical/virology)
+"xwx" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"xwz" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"xwC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xwE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"xwM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/maintenance/aft/greater)
+"xxg" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"xxi" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/acidic_buffer{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/basic_buffer{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/formaldehyde{
+ pixel_x = 1
+ },
+/obj/structure/sign/warning/no_smoking/circle/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"xxs" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/reagent_dispensers/plumbed,
+/obj/effect/turf_decal/siding/yellow/corner,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/large,
+/area/station/engineering/atmos)
+"xxv" = (
+/obj/effect/turf_decal/arrows,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/maintenance/starboard/aft)
+"xxx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+"xxB" = (
+/obj/machinery/power/solar{
+ id = "portsolar";
+ name = "Port Solar Array"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xxC" = (
+/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw,
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics - HFR South"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"xxI" = (
+/obj/machinery/airalarm/directional/north,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/grimy,
+/area/station/hallway/secondary/entry)
+"xxQ" = (
+/obj/structure/table,
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/wirecutters,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"xxV" = (
+/obj/structure/flora/grass/brown/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"xyc" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"xyd" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "rd_office_shutters";
+ name = "Privacy Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/detectives_office)
+"xyl" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xyn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobiomain";
+ name = "Containment Blast Door"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"xyr" = (
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 10
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/underground/explored)
+"xyx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/command/heads_quarters/hos)
+"xyy" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/treatment_center)
+"xyz" = (
+/obj/machinery/light_switch/directional/north{
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/science,
+/obj/machinery/button/door/directional/north{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -6;
+ req_access = list("research")
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"xyE" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/engine,
+/area/station/science/genetics)
+"xyI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"xyN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"xyO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/meter/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xyS" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/security/processing)
+"xyT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"xyU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"xza" = (
+/obj/vehicle/ridden/wheelchair{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/end,
+/obj/structure/sign/warning/no_smoking/circle/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/directional/west,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/medical/medbay/aft)
+"xzd" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Library South"
+ },
+/obj/structure/displaycase/trophy,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/wood/parquet,
+/area/station/service/library)
+"xzh" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xzk" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/storage/wallet{
+ pixel_y = 5;
+ pixel_x = 3
+ },
+/obj/item/newspaper,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"xzo" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"xzp" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/mine/laborcamp/security)
+"xzH" = (
+/obj/structure/grille/broken,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"xzO" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance/three,
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"xzT" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 6
+ },
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"xAk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/secondary/entry)
+"xAn" = (
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"xAs" = (
+/turf/closed/wall/r_wall,
+/area/icemoon/surface/outdoors/nospawn)
+"xAy" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"xAQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"xAW" = (
+/obj/machinery/door/airlock/security{
+ name = "Cafeteria"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison/mess)
+"xAY" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/sign/departments/court/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central/fore)
+"xBa" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 5
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/science/explab)
+"xBf" = (
+/obj/item/book/manual/wiki/barman_recipes{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/rag,
+/obj/structure/table/wood,
+/obj/item/holosign_creator/robot_seat/bar{
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/box/white/corners{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/bar)
+"xBj" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/obj/machinery/door/airlock{
+ name = "Bar"
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/bar)
+"xBn" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"xBp" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"xBt" = (
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"xBv" = (
+/obj/machinery/light/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/red/line,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/range)
+"xBL" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Solar Maintenance - North East Access"
+ },
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xBN" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos/storage/gas)
+"xBU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"xCl" = (
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"xCo" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xCr" = (
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms/laundry)
+"xCs" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/departments/aisat/directional/east,
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/storage_shared)
+"xCv" = (
+/obj/machinery/computer/security,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"xCz" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"xCD" = (
+/turf/open/floor/iron/smooth,
+/area/mine/living_quarters)
+"xCF" = (
+/obj/machinery/nuclearbomb/beer,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xCQ" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/pill_bottle/mannitol,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"xDa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
+"xDb" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/virology)
+"xDe" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"xDh" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Locker Room West"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"xDj" = (
+/obj/effect/turf_decal/trimline/yellow/end{
+ dir = 1
+ },
+/obj/machinery/exodrone_launcher,
+/obj/item/fuel_pellet,
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/mid_joiner{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/north{
+ id = "drone_bay";
+ name = "Shutter Control"
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/drone_bay)
+"xDu" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Cargo Bay Receiving Dock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/west{
+ id = "QMLoaddoor";
+ name = "Loading Doors";
+ pixel_y = -8;
+ req_access = list("cargo")
+ },
+/obj/machinery/button/door/directional/west{
+ id = "QMLoaddoor2";
+ name = "Loading Doors";
+ pixel_y = 8;
+ req_access = list("cargo")
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xDw" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"xDG" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"xDK" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/iron,
+/area/station/security/prison/workout)
+"xDU" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/drugs,
+/obj/item/poster/random_contraband,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/department/medical/morgue)
+"xDX" = (
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/chem_dispenser,
+/obj/structure/sign/warning/chem_diamond/directional/north,
+/turf/open/floor/glass/reinforced,
+/area/station/medical/treatment_center)
+"xEb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/green/filled/warning{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"xEd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/security/evidence)
+"xEh" = (
+/obj/machinery/door/airlock/virology/glass{
+ name = "Isolation A"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/effect/turf_decal/tile/green/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/virology)
+"xEn" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xEE" = (
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"xEF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"xEI" = (
+/obj/machinery/door/airlock/security{
+ name = "Private Cell"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/carpet/black,
+/area/station/security/prison/safe)
+"xEV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"xEW" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/mine/living_quarters)
+"xEX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/obj/machinery/door/airlock/hydroponics/glass{
+ name = "Apiary"
+ },
+/turf/open/floor/iron/dark/textured_half{
+ dir = 1
+ },
+/area/station/service/hydroponics)
+"xFf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"xFm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"xFn" = (
+/obj/structure/fence/cut/large{
+ dir = 2
+ },
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xFo" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"xFs" = (
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"xFB" = (
+/obj/structure/table,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/tank/internals/emergency_oxygen/engi{
+ pixel_x = 5
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage)
+"xGp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/left/directional/east{
+ name = "Atmospherics Desk";
+ req_access = list("atmospherics")
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"xGt" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/machinery/door/airlock/external{
+ glass = 1;
+ name = "Mining External Airlock";
+ opacity = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining_station,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"xGx" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"xGA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/server)
+"xGI" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xGJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/commons/storage/mining)
+"xGK" = (
+/obj/machinery/computer/mecha{
+ dir = 1
+ },
+/obj/machinery/camera/autoname/directional/south{
+ c_tag = "Research Director's Office";
+ network = list("ss13","rd")
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"xGL" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"xGM" = (
+/obj/machinery/computer/atmos_control/carbon_tank{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xGX" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Trial Transfer"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/security/courtroom)
+"xHe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"xHf" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"xHq" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Entrance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brigentrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron,
+/area/station/security/brig/upper)
+"xHr" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"xHx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/mine/eva/lower)
+"xId" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hooded/wintercoat/eva{
+ pixel_y = 9
+ },
+/obj/item/clothing/shoes/winterboots/ice_boots/eva{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery/red,
+/obj/item/clothing/gloves/color/grey/protects_cold,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/iron/textured,
+/area/station/ai_monitored/command/storage/eva)
+"xIk" = (
+/obj/structure/chair/comfy{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/carpet,
+/area/station/security/processing)
+"xIp" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Transport"
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/processing)
+"xIz" = (
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 8
+ },
+/area/station/ai_monitored/command/storage/eva)
+"xIF" = (
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"xIO" = (
+/obj/machinery/light/small/dim/directional/east,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/commons/lounge)
+"xIS" = (
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xIW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"xJj" = (
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"xJn" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"xJv" = (
+/obj/structure/rack,
+/obj/item/screwdriver,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"xJw" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics Project Room"
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/project)
+"xJD" = (
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"xJG" = (
+/obj/machinery/light/directional/east,
+/turf/open/openspace,
+/area/station/science/xenobiology)
+"xJH" = (
+/obj/machinery/button/door/directional/east{
+ id = "Atmospherics HFR Shutters";
+ name = "Atmospherics HFR Shutters";
+ req_access = list("atmospherics")
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/hfr_room)
+"xJJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xJT" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"xKb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark/smooth_corner{
+ dir = 4
+ },
+/area/station/command/gateway)
+"xKd" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"xKe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"xKj" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"xKk" = (
+/obj/structure/sign/plaques/kiddie/gameoflife{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"xKo" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/upper)
+"xKq" = (
+/obj/machinery/seed_extractor,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xKx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/railing/corner/end/flip,
+/obj/structure/railing/corner/end{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"xKJ" = (
+/turf/closed/wall,
+/area/station/command/meeting_room)
+"xKX" = (
+/obj/effect/turf_decal/trimline/dark_green/arrow_ccw{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/violet/visible/layer1{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage)
+"xKY" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/secequipment,
+/obj/machinery/camera/directional/north{
+ c_tag = "Security - Office"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/security/office)
+"xLq" = (
+/turf/open/floor/glass/reinforced,
+/area/station/science/ordnance/office)
+"xLv" = (
+/obj/structure/stairs/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xLF" = (
+/obj/machinery/door/window/right/directional/east{
+ name = "Captain's Desk Door";
+ req_access = list("captain")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+"xLJ" = (
+/obj/structure/rack,
+/obj/item/mecha_parts/mecha_equipment/drill,
+/turf/open/floor/iron/smooth,
+/area/mine/mechbay)
+"xLK" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"xLS" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xLT" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xLV" = (
+/obj/machinery/washing_machine,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison/work)
+"xMh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"xMn" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/holopad,
+/turf/open/floor/iron/white/textured,
+/area/station/security/medical)
+"xMq" = (
+/turf/closed/mineral/random/snow,
+/area/icemoon/underground/explored)
+"xMQ" = (
+/obj/effect/mapping_helpers/ianbirthday,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"xMR" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"xMT" = (
+/turf/closed/wall,
+/area/station/science/research)
+"xMW" = (
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/shovel,
+/obj/item/storage/box/emptysandbags,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"xMX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/smooth_half,
+/area/station/ai_monitored/command/storage/eva)
+"xNh" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "Cargo_Store_In";
+ name = "Cargo Warehouse Shutters"
+ },
+/obj/machinery/door/firedoor{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/south{
+ id = "Cargo_Store_In";
+ name = "Warehouse Access"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"xNs" = (
+/obj/structure/table/wood,
+/obj/item/clothing/mask/fakemoustache,
+/obj/item/cigarette/pipe,
+/obj/item/clothing/glasses/monocle,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/service/theater)
+"xNC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"xNF" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Dorm";
+ location = "HOP2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xNR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"xOb" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/machinery/door/window/right/directional/east{
+ name = "Airlock"
+ },
+/turf/open/floor/iron/dark,
+/area/mine/mechbay)
+"xOc" = (
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"xOk" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xOQ" = (
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external/glass{
+ name = "Garden Access"
+ },
+/turf/open/floor/iron/textured,
+/area/station/service/hydroponics)
+"xPs" = (
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external/glass{
+ name = "Cytology External Airlock"
+ },
+/turf/open/floor/iron/smooth_large,
+/area/station/science/cytology)
+"xPu" = (
+/obj/machinery/light/directional/east,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"xPv" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/aft)
+"xPF" = (
+/obj/structure/fence{
+ dir = 4
+ },
+/obj/structure/sign/nanotrasen,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xPI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xPN" = (
+/obj/item/storage/box/lights/mixed,
+/obj/item/storage/box/lights/mixed,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"xPT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xPV" = (
+/obj/machinery/computer/arcade/battle{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"xPW" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Holodeck - North";
+ name = "holodeck camera"
+ },
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/station/holodeck/rec_center)
+"xQf" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/locker)
+"xQg" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xQh" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"xQi" = (
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/minecart_rail/railbreak{
+ dir = 4
+ },
+/obj/structure/closet/crate/miningcar{
+ name = "delivery cart";
+ desc = "Used for quick transit of fresh produce to the kitchen. Just give it a shove."
+ },
+/obj/item/storage/bag/plants,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xQj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"xQm" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/closet/secure_closet/freezer/fridge/all_access,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/mess)
+"xQs" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/customs/auxiliary)
+"xQB" = (
+/obj/effect/spawner/random/clothing/costume,
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"xQG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/station/security/processing)
+"xQK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/mine/production)
+"xQT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"xQU" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"xRv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"xRw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"xRI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/entry)
+"xRP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/eighties/red,
+/area/station/security/prison/safe)
+"xRZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"xSg" = (
+/obj/structure/cable,
+/obj/structure/sign/warning/test_chamber/directional/north,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"xSl" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"xSn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+"xSv" = (
+/obj/structure/closet/firecloset,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron/dark,
+/area/station/engineering/lobby)
+"xSx" = (
+/obj/structure/closet/secure_closet/chemical,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 4
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/area/station/hallway/secondary/entry)
"xvj" = (
@@ -78570,6 +154408,7 @@
/obj/structure/cable,
/obj/effect/landmark/blobstart,
/obj/effect/decal/cleanable/dirt,
+<<<<<<< HEAD
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
"xvl" = (
@@ -80189,6 +156028,28 @@
/obj/machinery/camera/directional/south{
c_tag = "Solar Maintenance - North East"
},
+=======
+/turf/open/floor/iron/white,
+/area/station/maintenance/port/fore)
+"xSA" = (
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"xSE" = (
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xSL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/large,
+/area/station/hallway/primary/port)
+"xTp" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Solar Maintenance - North East"
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/power/smes,
/obj/structure/cable,
/turf/open/floor/plating,
@@ -80206,6 +156067,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/maintenance/starboard/upper)
+<<<<<<< HEAD
"xTI" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 1
@@ -80216,6 +156078,29 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron,
/area/station/commons/fitness)
+=======
+"xTN" = (
+/obj/effect/turf_decal/siding/thinplating/dark/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/warm/directional/south,
+/obj/structure/sign/poster/contraband/lizard/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xTQ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -80249,12 +156134,105 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"xUd" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/structure/fluff/fokoff_sign,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xUe" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/morgue)
"xUf" = (
/obj/effect/spawner/structure/window/hollow/reinforced/middle{
+<<<<<<< HEAD
+=======
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"xUg" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xUk" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/openspace,
+/area/station/science/ordnance/office)
+"xUF" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/maintenance/disposal)
+"xUG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"xUH" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"xUP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/engine_smes)
+"xUS" = (
+/obj/structure/rack,
+/obj/item/pickaxe{
+ pixel_x = 5
+ },
+/obj/item/shovel{
+ pixel_x = -5
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"xUU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"xUV" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xUW" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 4
},
/turf/open/floor/plating,
@@ -80372,6 +156350,73 @@
pixel_y = 4
},
/turf/open/floor/wood,
+<<<<<<< HEAD
+=======
+/area/station/maintenance/aft/greater)
+"xVc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"xVf" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/cargo)
+"xVo" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/bowl{
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"xVq" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/wood,
+/area/station/command/meeting_room)
+"xVv" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/purple,
+/obj/machinery/camera/directional/south{
+ c_tag = "Starboard Primary Hallway Center"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"xVB" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"xVG" = (
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"xVK" = (
+/turf/closed/wall,
+/area/station/service/janitor)
+"xVN" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"xVO" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/glass/mug/coco{
+ desc = "Still hot!";
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/space_hut/cabin)
"xVT" = (
/obj/structure/railing{
@@ -80379,6 +156424,7 @@
},
/turf/open/misc/asteroid/snow/icemoon,
/area/icemoon/underground/explored)
+<<<<<<< HEAD
"xVX" = (
/obj/structure/closet/crate,
/obj/machinery/light/small/directional/south,
@@ -80392,6 +156438,12 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
},
+=======
+"xVZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/medical/virology)
"xWb" = (
@@ -80399,11 +156451,27 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/textured,
/area/station/security/warden)
+<<<<<<< HEAD
+=======
+"xWk" = (
+/obj/machinery/biogenerator,
+/obj/machinery/door/window/left/directional/south{
+ name = "Biogenerator Access";
+ req_access = list("hydroponics")
+ },
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xWo" = (
/obj/structure/rack,
/obj/effect/spawner/random/maintenance/two,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"xWA" = (
/obj/structure/table,
/obj/item/plate,
@@ -80419,6 +156487,11 @@
dir = 8;
id = "kitchencounter";
name = "Kitchen Counter Shutters"
+=======
+"xWr" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Service - Electrical Maintenace Upper"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white/smooth_large,
@@ -80427,6 +156500,24 @@
/obj/structure/disposalpipe/segment{
dir = 9
},
+<<<<<<< HEAD
+=======
+/turf/open/floor/catwalk_floor/iron_smooth,
+/area/station/maintenance/starboard/fore)
+"xWA" = (
+/obj/structure/table,
+/obj/item/plate,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"xWG" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet)
+"xWM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
"xWN" = (
@@ -80435,12 +156526,18 @@
/turf/open/floor/circuit,
/area/station/ai_monitored/command/nuke_storage)
"xWT" = (
+<<<<<<< HEAD
/obj/machinery/firealarm/directional/south,
/obj/structure/closet/crate/freezer/surplus_limbs,
+=======
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/machinery/light_switch/directional/south,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/medical/cryo)
"xWU" = (
/obj/structure/railing{
+<<<<<<< HEAD
dir = 8
},
/obj/effect/turf_decal/tile/neutral/half/contrasted{
@@ -80469,6 +156566,36 @@
/turf/open/floor/iron/white/corner{
dir = 1
},
+=======
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"xXd" = (
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/multi_tile/public/glass{
+ name = "Laundry Room"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms/laundry)
+"xXf" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/engineering/atmos/storage/gas)
"xXk" = (
/obj/structure/railing,
@@ -80496,6 +156623,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"xXE" = (
/obj/structure/chair/pew{
dir = 1
@@ -80503,6 +156631,8 @@
/obj/structure/cable,
/turf/open/floor/iron/chapel,
/area/station/service/chapel)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xXQ" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
@@ -80512,6 +156642,7 @@
},
/turf/open/floor/iron,
/area/mine/laborcamp)
+<<<<<<< HEAD
"xXU" = (
/obj/machinery/camera/directional/east{
c_tag = "Library Art Gallery"
@@ -80659,6 +156790,173 @@
/area/station/science/robotics/lab)
"yas" = (
/obj/structure/disposalpipe/segment{
+=======
+"xYg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xYj" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/science/research)
+"xYt" = (
+/obj/machinery/atmospherics/components/unary/passive_vent,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 9
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xYw" = (
+/obj/structure/flora/bush/leavy/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"xYA" = (
+/obj/machinery/holopad,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/department/electrical)
+"xYI" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"xYO" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"xYQ" = (
+/obj/structure/marker_beacon/burgundy{
+ name = "landing marker"
+ },
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored)
+"xYS" = (
+/obj/machinery/door/firedoor/border_only{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south{
+ pixel_x = -28
+ },
+/obj/effect/turf_decal/tile/dark/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"xYT" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/iron/smooth,
+/area/mine/eva)
+"xZl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/engineering/main)
+"xZq" = (
+/obj/structure/marker_beacon/cerulean,
+/obj/effect/mapping_helpers/no_atoms_ontop,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"xZv" = (
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"xZy" = (
+/obj/structure/stairs/east,
+/obj/effect/turf_decal/trimline/neutral/line,
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/mix)
+"xZA" = (
+/turf/open/floor/iron/checker,
+/area/station/science/lab)
+"xZS" = (
+/obj/effect/spawner/random/trash/moisture_trap,
+/obj/item/reagent_containers/cup/bucket,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"xZW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/psychology)
+"xZX" = (
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"yab" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Dormitories Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"yah" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/transport/linear{
+ radial_travel = 0
+ },
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/machinery/elevator_control_panel/directional/north{
+ linked_elevator_id = "publicElevator";
+ preset_destination_names = list("3"="Icemoon Level","4"="Station Level")
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/mine/storage)
+"yan" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/machinery/door/firedoor{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+"yar" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "robotics";
+ name = "Robotics Lab Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"yas" = (
+/obj/structure/disposalpipe/segment{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 4
},
/obj/machinery/camera/directional/south{
@@ -80690,12 +156988,28 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/smooth_large,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
+=======
+"yaF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Central Access"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yaG" = (
/obj/effect/landmark/navigate_destination/chapel,
/turf/open/floor/iron/dark/side{
dir = 1
},
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"yaJ" = (
/obj/effect/turf_decal/trimline/green/filled/warning{
dir = 4
@@ -80705,6 +157019,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yaL" = (
/turf/closed/wall/r_wall,
/area/station/engineering/engine_smes)
@@ -80719,6 +157035,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/showroomfloor,
/area/station/security/prison/mess)
+<<<<<<< HEAD
"ybe" = (
/obj/structure/rack,
/obj/item/soap{
@@ -80734,6 +157051,21 @@
/area/station/science/cytology)
"ybf" = (
/obj/machinery/portable_atmospherics/pump,
+=======
+"ybb" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ybf" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/box,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/dark,
/area/station/science/ordnance/office)
"ybq" = (
@@ -80746,6 +157078,7 @@
dir = 4
},
/area/station/engineering/transit_tube)
+<<<<<<< HEAD
"ybr" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
@@ -80755,6 +157088,8 @@
},
/turf/open/floor/engine/cult,
/area/station/service/library)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ybu" = (
/obj/structure/chair/stool/directional/north,
/turf/open/floor/wood,
@@ -80770,6 +157105,20 @@
/obj/effect/decal/cleanable/insectguts,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"ybC" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/closet/emcloset,
+/obj/structure/sign/warning/gas_mask/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ybE" = (
/obj/structure/extinguisher_cabinet/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -80781,11 +157130,14 @@
},
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
"ybF" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/turf/open/floor/plating,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ybI" = (
/obj/structure/bed/dogbed/ian,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -80815,6 +157167,15 @@
"ybQ" = (
/turf/closed/wall/r_wall,
/area/station/ai_monitored/command/nuke_storage)
+<<<<<<< HEAD
+=======
+"ybY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/cigbutt,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yca" = (
/obj/machinery/door/airlock/maintenance{
name = "Mining Station Maintenance"
@@ -80848,6 +157209,7 @@
/area/station/hallway/secondary/entry)
"ycB" = (
/obj/effect/spawner/structure/window,
+<<<<<<< HEAD
/turf/open/floor/plating,
/area/station/engineering/storage)
"ycE" = (
@@ -81195,6 +157557,375 @@
/obj/structure/table,
/obj/effect/spawner/random/maintenance/two,
/turf/open/floor/plating,
+=======
+/turf/open/floor/plating,
+/area/station/engineering/storage)
+"ycO" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ycQ" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"ycS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ycY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/morgue)
+"ydc" = (
+/obj/structure/sign/warning/pods/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/tank_holder/oxygen/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"ydg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/lobby)
+"ydh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table_frame,
+/obj/item/melee/baton/security/cattleprod,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ydk" = (
+/obj/machinery/computer/security/mining,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"ydt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/mess)
+"ydu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/mine/eva/lower)
+"ydA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/obj/effect/decal/cleanable/crayon{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/chapel)
+"ydI" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/secondary/entry)
+"ydN" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"yef" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/suit_storage_unit/industrial/loader,
+/turf/open/floor/iron/smooth_large,
+/area/station/cargo/warehouse)
+"yeh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Dock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/cargo/miningdock)
+"yel" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"yep" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/mine/production)
+"yev" = (
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/storage/mining)
+"yeB" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"yeC" = (
+/turf/open/floor/iron,
+/area/station/science/explab)
+"yeD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix Bypass"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"yeF" = (
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"yfa" = (
+/obj/structure/sink/directional/west,
+/obj/structure/cable,
+/obj/machinery/button/door/directional/east{
+ id = "xenobio10";
+ name = "Xenobio Pen 10 Blast DOors";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"yfg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing,
+/turf/open/floor/iron/freezer,
+/area/station/service/kitchen/coldroom)
+"yfs" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/weather/snow/corner{
+ dir = 4
+ },
+/obj/structure/minecart_rail{
+ dir = 1
+ },
+/turf/open/floor/plating/snowed/coldroom,
+/area/station/service/kitchen/coldroom)
+"yfz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"yfF" = (
+/obj/structure/flora/grass/green/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"yfW" = (
+/obj/structure/fence/post{
+ dir = 8
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ygd" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plating/snowed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"ygf" = (
+/obj/structure/bookcase{
+ name = "Forbidden Knowledge"
+ },
+/obj/structure/sign/painting/library_private{
+ pixel_x = -32
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"ygk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ygl" = (
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"ygm" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/warning/electric_shock/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ygv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"ygA" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/explored/graveyard)
+"ygB" = (
+/turf/closed/wall,
+/area/station/commons/dorms)
+"ygF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ygL" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ygM" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half{
+ dir = 1
+ },
+/turf/open/floor/iron/smooth_half,
+/area/station/security/brig/upper)
+"ygS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/rack,
+/obj/item/tank/internals/oxygen,
+/obj/item/extinguisher,
+/obj/item/clothing/suit/utility/fire/firefighter,
+/obj/item/clothing/head/utility/hardhat/red,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"yhe" = (
+/obj/structure/cable,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"yhn" = (
+/obj/structure/rack,
+/obj/item/crowbar,
+/obj/item/picket_sign,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"yhw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/grimy,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"yhU" = (
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"yhY" = (
+/obj/structure/fence/end{
+ dir = 2
+ },
+/turf/open/floor/plating/snowed/smoothed/icemoon,
+/area/icemoon/surface/outdoors/nospawn)
+"yia" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"yib" = (
+/obj/structure/flora/rock/icy/style_random,
+/turf/open/misc/asteroid/snow/icemoon,
+/area/icemoon/underground/unexplored/rivers/deep/shoreline)
+"yiv" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"yiz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/prison/toilet)
+"yiK" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/potassium{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/phosphorus{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/sodium{
+ pixel_x = 1
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/medical/chem_storage)
+"yiL" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/security/armory)
+"yiR" = (
+/obj/structure/sign/warning/cold_temp/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"yjh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured,
+/area/station/security/prison)
+"yjn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"yju" = (
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/port/aft)
"yjA" = (
/obj/structure/cable,
@@ -81205,11 +157936,14 @@
},
/turf/open/floor/plating,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"yjF" = (
/obj/structure/sink/directional/east,
/obj/structure/mirror/directional/west,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yjV" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -81225,6 +157959,19 @@
dir = 4
},
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"ykd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ykw" = (
/turf/closed/wall/r_wall,
/area/station/security/processing)
@@ -81233,10 +157980,13 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+<<<<<<< HEAD
"ykE" = (
/obj/item/kirbyplants/random,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ykG" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron,
@@ -81255,12 +158005,22 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/central/fore)
+<<<<<<< HEAD
"ylt" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/visible,
/obj/structure/sign/poster/official/safety_internals/directional/east,
/obj/structure/sign/poster/official/safety_internals/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+"yld" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/structure/sign/departments/cargo/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ylz" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/turf_decal/trimline/neutral/warning,
@@ -81275,6 +158035,7 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/iron/dark/textured,
/area/station/security/prison/workout)
+<<<<<<< HEAD
"ylF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -81285,6 +158046,18 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+=======
+"ylL" = (
+/obj/machinery/flasher/directional/north{
+ id = "Cell 3"
+ },
+/obj/structure/bed{
+ dir = 1;
+ pixel_x = -2
+ },
+/turf/open/floor/iron/smooth,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ylM" = (
/obj/machinery/light/directional/south,
/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
@@ -81299,6 +158072,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos/storage)
+<<<<<<< HEAD
"ylQ" = (
/obj/machinery/door/airlock/maintenance{
name = "Cytology Maintenance"
@@ -81306,6 +158080,8 @@
/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ylU" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -81322,6 +158098,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"ymb" = (
/obj/structure/railing/corner{
dir = 4
@@ -81339,6 +158116,25 @@
dir = 1
},
/area/mine/eva/lower)
+=======
+"ymf" = (
+/obj/effect/turf_decal/siding/wood/end{
+ dir = 1
+ },
+/obj/item/kirbyplants/organic/plant11,
+/turf/open/floor/stone,
+/area/station/service/bar/atrium)
+"ymj" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/departments/evac/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
(1,1,1) = {"
oSU
@@ -97685,6 +174481,7 @@ sYA
ghx
ghx
ghx
+<<<<<<< HEAD
vXO
hMz
ghx
@@ -97693,6 +174490,16 @@ psb
scw
scw
jSy
+=======
+ohO
+hMz
+ghx
+ghx
+psb
+dmw
+scw
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
xMq
@@ -97945,13 +174752,21 @@ ghx
isU
ghx
ghx
+<<<<<<< HEAD
hMz
+=======
+ghx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hUy
dZS
xuo
scw
iDt
+<<<<<<< HEAD
qau
+=======
+bNC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -98208,8 +175023,13 @@ stA
xuo
xuo
xuo
+<<<<<<< HEAD
nqv
thA
+=======
+qau
+dMn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -98963,7 +175783,11 @@ ghx
ghx
ghx
ndA
+<<<<<<< HEAD
mSH
+=======
+pWp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ngM
kgN
wDU
@@ -98971,7 +175795,11 @@ sKo
sKo
sKo
wDU
+<<<<<<< HEAD
kUP
+=======
+tdI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
okH
qSq
ghx
@@ -99218,13 +176046,22 @@ ghx
ghx
ghx
cpt
+<<<<<<< HEAD
dLH
kIX
+=======
+wPG
+ckL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xuo
xuo
qlU
wDU
+<<<<<<< HEAD
roa
+=======
+hDe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wRN
qPX
wDU
@@ -99474,8 +176311,13 @@ ghx
ghx
ghx
iDt
+<<<<<<< HEAD
aNc
xuo
+=======
+ewo
+eIv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xuo
xuo
xuo
@@ -99731,16 +176573,26 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
sxe
+=======
+jRi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xuo
xuo
qJT
wDU
tbX
qmt
+<<<<<<< HEAD
nAa
qLQ
vBg
+=======
+mct
+qLQ
+dtR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qmt
tbX
wDU
@@ -99993,13 +176845,21 @@ xuo
xuo
xuo
dBY
+<<<<<<< HEAD
moc
+=======
+mnm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tGi
kBX
fdp
qiF
dBY
+<<<<<<< HEAD
moc
+=======
+mnm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tGi
xuo
xuo
@@ -100245,16 +177105,28 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
sxe
xuo
qJT
+=======
+jRi
+xuo
+coe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wDU
qmt
qmt
qmt
+<<<<<<< HEAD
jpi
tYz
gle
+=======
+uJd
+tYz
+soq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qmt
qmt
qmt
@@ -100263,7 +177135,11 @@ tbX
tbX
wDU
wDU
+<<<<<<< HEAD
ghx
+=======
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -100504,7 +177380,11 @@ thA
iDt
psb
rxz
+<<<<<<< HEAD
qlU
+=======
+gFX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wDU
aNw
qmt
@@ -100759,10 +177639,17 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
xuo
wDU
wDU
qmt
+=======
+txm
+wDU
+wDU
+ijV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nfr
kLa
giV
@@ -100771,7 +177658,11 @@ eVa
gSO
tmE
qmt
+<<<<<<< HEAD
iBd
+=======
+nbs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
chO
doM
ezl
@@ -101016,6 +177907,7 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
xuo
wDU
krn
@@ -101024,6 +177916,16 @@ nfr
qmt
qmt
ymb
+=======
+txm
+wDU
+krn
+rFh
+qmt
+qmt
+qmt
+nGY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eVa
rnx
fYH
@@ -101273,6 +178175,7 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
xuo
wDU
uqz
@@ -101280,12 +178183,25 @@ kTF
nfr
qmt
iVm
+=======
+txm
+wDU
+uqz
+kTF
+qmt
+pVg
+ubG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xlA
eVa
gSO
uPt
qmt
+<<<<<<< HEAD
aQy
+=======
+opy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fLC
dLe
wzl
@@ -101535,9 +178451,15 @@ qmt
qmt
kLa
qmt
+<<<<<<< HEAD
qmt
sAa
qKk
+=======
+vlF
+kyM
+vzG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wbH
lIR
uUT
@@ -101548,7 +178470,11 @@ uUT
uUT
uUT
wDU
+<<<<<<< HEAD
scw
+=======
+mrk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
thA
@@ -101791,10 +178717,17 @@ wDU
btB
gfw
nfr
+<<<<<<< HEAD
igq
qmt
qmt
gSK
+=======
+qmt
+qmt
+qmt
+bcs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tYz
vTb
rmB
@@ -102013,10 +178946,17 @@ ghx
ghx
ghx
psb
+<<<<<<< HEAD
fSd
hUK
gqG
thA
+=======
+iYq
+hUK
+psb
+lGf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -102047,7 +178987,11 @@ iDt
wDU
uqz
bRC
+<<<<<<< HEAD
nfr
+=======
+tIM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jAu
qmt
ofz
@@ -102303,7 +179247,11 @@ thA
iDt
wDU
ljP
+<<<<<<< HEAD
uqz
+=======
+xHx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bQN
tnb
qmt
@@ -102824,6 +179772,7 @@ vfp
niN
eSY
uyq
+<<<<<<< HEAD
gdS
uUT
bzJ
@@ -102831,6 +179780,15 @@ srZ
jla
ebv
mXD
+=======
+hDv
+uUT
+dPH
+srZ
+jla
+ebv
+xLJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nUi
scw
iDt
@@ -103004,7 +179962,11 @@ thA
thA
thA
rfu
+<<<<<<< HEAD
ghx
+=======
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -103079,9 +180041,15 @@ dga
scw
dga
niN
+<<<<<<< HEAD
qqn
uyq
xVX
+=======
+vxx
+uyq
+bTM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uUT
uUT
vlS
@@ -103089,7 +180057,11 @@ hex
uUT
iwf
iwf
+<<<<<<< HEAD
wkV
+=======
+xvp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
ghx
@@ -103330,8 +180302,13 @@ thA
ipf
cCb
iDt
+<<<<<<< HEAD
mJZ
iDt
+=======
+jai
+wkB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
scw
@@ -103340,6 +180317,7 @@ bfo
sZO
wDU
iwf
+<<<<<<< HEAD
cEh
dNA
weg
@@ -103348,6 +180326,16 @@ lQw
fWX
nqv
iDt
+=======
+oXF
+dNA
+dNA
+iwf
+lQw
+fWX
+kLd
+wkB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
ghx
thA
@@ -103553,11 +180541,19 @@ thA
thA
thA
xuo
+<<<<<<< HEAD
wYp
odW
uWw
psb
ghx
+=======
+psb
+mIe
+uWw
+psb
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -103587,7 +180583,11 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
rcY
+=======
+aDG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
scw
@@ -103603,7 +180603,11 @@ gvc
iwf
unv
wrV
+<<<<<<< HEAD
qau
+=======
+bNC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
cCb
ghx
@@ -103844,7 +180848,11 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
rcY
+=======
+aDG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -103859,8 +180867,13 @@ cPd
hYP
aro
agI
+<<<<<<< HEAD
scw
qau
+=======
+iDt
+bNC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
thA
@@ -104101,7 +181114,11 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
rcY
+=======
+bNC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -104110,6 +181127,7 @@ scw
scw
scw
scw
+<<<<<<< HEAD
mJZ
iDt
scw
@@ -104117,6 +181135,15 @@ scw
rcY
iDt
scw
+=======
+jai
+wkB
+scw
+scw
+jai
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qau
iDt
iDt
@@ -104358,6 +181385,7 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
syw
kNC
kNC
@@ -104375,6 +181403,25 @@ syw
tej
tej
gIl
+=======
+gsd
+jTf
+aKb
+aKb
+aKb
+aKb
+aKb
+nvB
+jTf
+kOt
+scw
+iDt
+iDt
+gsd
+jTf
+syG
+pCG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
thA
thA
@@ -104806,7 +181853,11 @@ uOb
rfu
omJ
rfu
+<<<<<<< HEAD
pjj
+=======
+kOc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
daf
kmH
oBz
@@ -105055,10 +182106,17 @@ amx
fXO
lBR
nhg
+<<<<<<< HEAD
gnR
lBR
nhg
qrq
+=======
+scb
+lBR
+nhg
+mbe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lBR
kIo
hap
@@ -105136,7 +182194,11 @@ thA
thA
thA
thA
+<<<<<<< HEAD
thA
+=======
+iYD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
iDt
@@ -105580,7 +182642,11 @@ rfu
ooW
ooW
rfu
+<<<<<<< HEAD
xuo
+=======
+jrv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xuo
xlq
ghx
@@ -106082,7 +183148,11 @@ ifZ
amx
ddz
lBR
+<<<<<<< HEAD
fIb
+=======
+vzp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fnj
egz
hsr
@@ -106602,7 +183672,11 @@ kqh
kqh
ttD
nNn
+<<<<<<< HEAD
sxT
+=======
+urm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKB
foO
bdo
@@ -106843,11 +183917,19 @@ ghx
ghx
ghx
ghx
+<<<<<<< HEAD
gBl
uSb
uSb
uSb
gBl
+=======
+fIt
+uSb
+uSb
+uSb
+fIt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uOb
uOb
lBR
@@ -106869,7 +183951,11 @@ kIi
rfu
rfu
rfu
+<<<<<<< HEAD
ghx
+=======
+akn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -107107,6 +184193,7 @@ tWK
tWK
tWK
xhK
+<<<<<<< HEAD
tsK
jGg
vVH
@@ -107114,6 +184201,15 @@ krV
ogL
jZI
duI
+=======
+tnD
+jGg
+vVH
+gkN
+ogL
+jZI
+aHw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vVH
vVH
vVH
@@ -107122,9 +184218,15 @@ nNn
gzV
nNn
nNn
+<<<<<<< HEAD
axb
tCV
cFc
+=======
+evP
+bVs
+dgx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mJX
ghx
ghx
@@ -107138,8 +184240,13 @@ ghx
ghx
ghx
ghx
+<<<<<<< HEAD
lcA
ghx
+=======
+psb
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -107367,10 +184474,17 @@ xby
dSm
hMS
vVH
+<<<<<<< HEAD
uoS
wPg
fHg
eek
+=======
+nGo
+wPg
+fHg
+mkb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vVH
fps
usS
@@ -107636,7 +184750,11 @@ vUs
kqR
hjQ
nNn
+<<<<<<< HEAD
scQ
+=======
+eCg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aJu
ong
mJX
@@ -108156,17 +185274,28 @@ puc
kGP
sEC
dbH
+<<<<<<< HEAD
+=======
+akn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
ghx
ghx
ghx
+<<<<<<< HEAD
ghx
lcA
psb
psb
lcA
+=======
+psb
+psb
+psb
+psb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -108390,9 +185519,15 @@ ghx
ghx
ghx
eZz
+<<<<<<< HEAD
efi
xhK
nCQ
+=======
+uOs
+xhK
+nGd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
swf
vVH
jli
@@ -108420,7 +185555,11 @@ ghx
ghx
ghx
ghx
+<<<<<<< HEAD
rcY
+=======
+pJm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
thA
thA
@@ -108647,7 +185786,11 @@ ghx
ghx
ghx
iDt
+<<<<<<< HEAD
nbP
+=======
+fgN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xhK
ikb
swf
@@ -108677,7 +185820,11 @@ ghx
ghx
ghx
ghx
+<<<<<<< HEAD
rcY
+=======
+pJm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
thA
thA
@@ -108912,9 +186059,15 @@ vVH
vVH
dZW
fHg
+<<<<<<< HEAD
lJS
bol
oSD
+=======
+ayS
+aze
+lsn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ldH
xQm
yaZ
@@ -108934,8 +186087,13 @@ ghx
ghx
ghx
ghx
+<<<<<<< HEAD
lcA
iDt
+=======
+psb
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -109169,9 +186327,15 @@ nId
myQ
sby
fHg
+<<<<<<< HEAD
bol
bol
oSD
+=======
+aEY
+oad
+gAV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ldH
qiJ
qTs
@@ -110191,7 +187355,11 @@ ghx
ghx
axF
dcw
+<<<<<<< HEAD
fGI
+=======
+sKT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sSl
etw
lXJ
@@ -110212,7 +187380,11 @@ iJr
vSK
kse
dbH
+<<<<<<< HEAD
ghx
+=======
+akn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -110477,7 +187649,11 @@ ghx
ghx
ghx
psb
+<<<<<<< HEAD
iDt
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -110985,7 +188161,11 @@ psb
psb
psb
fIt
+<<<<<<< HEAD
ghx
+=======
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -111192,10 +188372,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
dhq
dhq
dhq
+=======
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dhq
dhq
dhq
@@ -111447,8 +188634,13 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
+=======
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
@@ -111463,8 +188655,13 @@ iDt
scw
scw
iDt
+<<<<<<< HEAD
iDt
ghx
+=======
+fIt
+tvk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -111476,7 +188673,11 @@ ghx
ghx
ghx
dcw
+<<<<<<< HEAD
bDd
+=======
+cdp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hBF
owf
bkX
@@ -111703,9 +188904,15 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
scw
@@ -111720,7 +188927,11 @@ scw
scw
scw
scw
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -111960,9 +189171,15 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
scw
@@ -111977,7 +189194,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
scw
+=======
+gem
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -112001,7 +189222,11 @@ thA
uPk
jYj
uAE
+<<<<<<< HEAD
dKS
+=======
+eni
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dbH
dbH
dbH
@@ -112013,7 +189238,11 @@ psb
psb
psb
fIt
+<<<<<<< HEAD
ghx
+=======
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -112215,11 +189444,19 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
scw
@@ -112234,7 +189471,11 @@ scw
scw
scw
scw
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -112471,12 +189712,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
@@ -112491,7 +189741,11 @@ scw
scw
scw
iDt
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -112728,12 +189982,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
scw
@@ -112748,7 +190011,11 @@ scw
scw
scw
scw
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -112985,12 +190252,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
@@ -113005,7 +190281,11 @@ scw
scw
iDt
scw
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -113242,12 +190522,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
scw
@@ -113262,7 +190551,11 @@ scw
iDt
scw
iDt
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -113499,12 +190792,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
iDt
@@ -113519,7 +190821,11 @@ scw
scw
iDt
scw
+<<<<<<< HEAD
scw
+=======
+gem
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -113545,7 +190851,11 @@ oXd
bJp
qdl
uPk
+<<<<<<< HEAD
scw
+=======
+ltH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -113756,12 +191066,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
iDt
@@ -113776,7 +191095,11 @@ scw
scw
iDt
iDt
+<<<<<<< HEAD
iDt
+=======
+iwV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -113802,7 +191125,11 @@ uPk
uPk
uPk
uPk
+<<<<<<< HEAD
ghx
+=======
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -114013,12 +191340,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
dLN
dLN
@@ -114031,10 +191367,17 @@ vjh
vjh
uPl
vjh
+<<<<<<< HEAD
ghx
ghx
ghx
ghx
+=======
+hMv
+qxN
+fIt
+tvk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -114270,12 +191613,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+fKw
+fKw
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
dqx
oDg
@@ -114288,13 +191640,21 @@ wAQ
njJ
kcf
vjh
+<<<<<<< HEAD
+=======
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
ghx
ghx
ghx
+<<<<<<< HEAD
ghx
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -114302,7 +191662,10 @@ iDt
iDt
iDt
xMq
+<<<<<<< HEAD
xMq
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -114527,12 +191890,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
szu
hdV
@@ -114558,7 +191930,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
xMq
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
thA
@@ -114784,9 +192160,15 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
dLN
dLN
@@ -114798,8 +192180,13 @@ dqx
njJ
cVD
njJ
+<<<<<<< HEAD
eCz
oFp
+=======
+hpl
+dqx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dqx
vjh
nTO
@@ -114811,14 +192198,22 @@ eQT
eQT
eQT
nTO
+<<<<<<< HEAD
+=======
+kXf
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
xMq
xMq
+<<<<<<< HEAD
xMq
xMq
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -115040,10 +192435,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+fKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
wxg
ipd
@@ -115068,15 +192470,26 @@ kAG
pdc
xzp
iSf
+<<<<<<< HEAD
dBw
+=======
+faV
+iDt
+iDt
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
xMq
+<<<<<<< HEAD
xMq
xMq
xMq
xMq
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -115296,11 +192709,19 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
xMx
+=======
+iZz
+iZz
+iZz
+fKw
+oIv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
pRZ
uYj
@@ -115327,14 +192748,24 @@ jvM
nTO
nTO
nTO
+<<<<<<< HEAD
nJm
+=======
+fqG
+iDt
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
xMq
xMq
xMq
+<<<<<<< HEAD
xMq
xMq
xMq
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -115551,6 +192982,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
@@ -115558,6 +192990,15 @@ iDt
iDt
iDt
lCM
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+fKw
+lxY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
aYQ
bLL
@@ -115586,8 +193027,13 @@ tmB
kCH
iDt
iDt
+<<<<<<< HEAD
xMq
xMq
+=======
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
thA
@@ -115807,11 +193253,19 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
dLN
dLN
@@ -115823,10 +193277,17 @@ njJ
bEi
rVX
dqx
+<<<<<<< HEAD
pSn
cCF
iAA
wDs
+=======
+qJC
+pzx
+bqz
+tXM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
vjh
vjh
@@ -115841,10 +193302,17 @@ aWV
nTO
nTO
nTO
+<<<<<<< HEAD
iDt
iDt
xMq
xMq
+=======
+kXf
+iDt
+iDt
+xMq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -116064,17 +193532,29 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
bml
msi
njJ
pDI
+<<<<<<< HEAD
bxX
+=======
+wdX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wzn
njJ
mZJ
@@ -116100,7 +193580,11 @@ cRE
eQT
iDt
iDt
+<<<<<<< HEAD
xMq
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
@@ -116321,26 +193805,45 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
uCk
tAL
njJ
+<<<<<<< HEAD
lWy
+=======
+mPp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jlG
rQx
duS
lmK
rVX
fez
+<<<<<<< HEAD
lxn
bVY
whz
sbO
+=======
+rqR
+maM
+aWo
+ddK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
drP
czD
@@ -116357,7 +193860,11 @@ rmv
eQT
iDt
iDt
+<<<<<<< HEAD
xMq
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
@@ -116578,11 +194085,19 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
sWo
kmA
@@ -116613,7 +194128,11 @@ iGj
nTO
nTO
nTO
+<<<<<<< HEAD
iDt
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
thA
@@ -116835,11 +194354,19 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+fKw
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
sWo
njJ
@@ -117091,12 +194618,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
iDt
iDt
iDt
iDt
aVq
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+myW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
sWo
njJ
@@ -117120,7 +194656,11 @@ eQT
eQT
eQT
nTO
+<<<<<<< HEAD
ghx
+=======
+akn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
nTO
kJw
@@ -117348,12 +194888,21 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
iDt
iDt
iDt
iDt
aVq
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+myW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
mYi
njJ
@@ -117605,6 +195154,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
iDt
iDt
@@ -117613,6 +195163,16 @@ vjh
vjh
vjh
fXP
+=======
+iZz
+iZz
+iZz
+bqf
+vjh
+vjh
+vjh
+nZC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eQH
hDK
dqx
@@ -117621,7 +195181,11 @@ dqx
rXg
njJ
uTo
+<<<<<<< HEAD
dqx
+=======
+cCG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
njJ
rKs
hLk
@@ -117641,7 +195205,11 @@ cpe
cpe
nTO
nTO
+<<<<<<< HEAD
iDt
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
thA
@@ -117862,10 +195430,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
iDt
iDt
iDt
+=======
+iZz
+iZz
+fKw
+fKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aqa
oDB
nhT
@@ -118119,10 +195694,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
iDt
iDt
qXg
+=======
+iZz
+iZz
+iZz
+bqf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
vjh
vjh
@@ -118154,7 +195736,11 @@ nTO
nTO
nTO
nTO
+<<<<<<< HEAD
iDt
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
xMq
xMq
@@ -118376,11 +195962,19 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
iDt
iDt
iDt
uEA
+=======
+iZz
+iZz
+iZz
+iZz
+mbq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
hlE
dqx
@@ -118392,7 +195986,11 @@ kpH
dqx
njJ
isc
+<<<<<<< HEAD
dqx
+=======
+mEb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
njJ
bsd
fBs
@@ -118634,10 +196232,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
+=======
+iZz
+mBV
+iZz
+fKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
dqx
dqx
@@ -118670,7 +196275,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
xMq
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
@@ -118891,10 +196500,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
ssu
iDt
+=======
+iZz
+iZz
+nxP
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
rbT
mts
@@ -118905,13 +196521,22 @@ njJ
njJ
wRK
vjh
+<<<<<<< HEAD
twb
pzD
+=======
+oCo
+dFR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vjh
vjh
vjh
vjh
+<<<<<<< HEAD
ghx
+=======
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -118927,7 +196552,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
xMq
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
@@ -119148,10 +196777,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+mBV
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
rbT
lLN
@@ -119165,6 +196801,7 @@ vjh
jmc
qDD
dLN
+<<<<<<< HEAD
iDt
iDt
ghx
@@ -119178,6 +196815,22 @@ ghx
ghx
ghx
iDt
+=======
+uqX
+adA
+etz
+ghx
+ghx
+ghx
+ghx
+ghx
+ghx
+ghx
+ghx
+ghx
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -119186,7 +196839,10 @@ iDt
iDt
xMq
xMq
+<<<<<<< HEAD
xMq
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -119405,10 +197061,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dLN
dLN
dLN
@@ -119422,8 +197085,13 @@ vjh
dLN
dLN
dLN
+<<<<<<< HEAD
iDt
iDt
+=======
+fKw
+mzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -119662,6 +197330,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
@@ -119681,6 +197350,27 @@ iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+fKw
+iZz
+iZz
+iZz
+iZz
+oGJ
+iZz
+iZz
+iZz
+iZz
+iZz
+fKw
+fKw
+iZz
+mzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -119692,9 +197382,15 @@ ghx
ghx
ghx
iDt
+<<<<<<< HEAD
xMq
xMq
xMq
+=======
+iDt
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
xMq
@@ -119919,6 +197615,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
@@ -119938,6 +197635,27 @@ iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+mzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -119949,7 +197667,11 @@ ghx
ghx
ghx
iDt
+<<<<<<< HEAD
xMq
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
xMq
@@ -120176,6 +197898,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
dhq
@@ -120195,6 +197918,27 @@ iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+dhq
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+mzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -120437,6 +198181,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
@@ -120452,6 +198197,23 @@ iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+mzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -120694,6 +198456,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iDt
iDt
iDt
@@ -120709,6 +198472,23 @@ iDt
iDt
iDt
iDt
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+iZz
+mzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -120828,7 +198608,11 @@ oSU
szG
szG
iDt
+<<<<<<< HEAD
daZ
+=======
+tla
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
szG
oSU
@@ -120957,6 +198741,7 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
dhq
dhq
dhq
@@ -120967,6 +198752,18 @@ dhq
dhq
dhq
ghx
+=======
+iZz
+iZz
+iZz
+iZz
+iZz
+dhq
+dhq
+dhq
+adA
+etz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -128256,7 +206053,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
fIt
+=======
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -128507,13 +206308,22 @@ oSU
oSU
oSU
xMq
+<<<<<<< HEAD
cbu
+=======
+wUm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
iLP
fIt
+=======
+gwW
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -128764,13 +206574,21 @@ oSU
iDt
iDt
xMq
+<<<<<<< HEAD
cbu
+=======
+wUm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
mrI
+<<<<<<< HEAD
fIt
+=======
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -129019,15 +206837,24 @@ oSU
oSU
iDt
iDt
+<<<<<<< HEAD
jZN
rcY
+=======
+xYQ
+aKb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
iDt
scw
+<<<<<<< HEAD
fIt
+=======
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -129282,9 +207109,15 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
qjs
fIt
fIt
+=======
+hWz
+bwh
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -129533,16 +207366,26 @@ oSU
iDt
iDt
iDt
+<<<<<<< HEAD
jZN
rcY
+=======
+xYQ
+pJm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
fIt
fIt
+=======
+bwh
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -129688,10 +207531,17 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
iZz
iZz
iZz
+=======
+iDt
+iDt
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -129799,8 +207649,13 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
fIt
fIt
+=======
+bwh
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -129946,8 +207801,13 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
iZz
+=======
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -130057,7 +207917,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
fIt
+=======
+bwh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -130203,7 +208067,11 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -130313,6 +208181,11 @@ xMq
xMq
xMq
xMq
+<<<<<<< HEAD
+=======
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
oSU
@@ -130424,8 +208297,11 @@ oSU
oSU
oSU
oSU
+<<<<<<< HEAD
oSU
oSU
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(192,1,1) = {"
dhq
@@ -130571,11 +208447,19 @@ oSU
oSU
oSU
oSU
+<<<<<<< HEAD
oSU
oSU
oSU
oSU
oSU
+=======
+iDt
+scw
+scw
+scw
+xMq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -130829,11 +208713,19 @@ oSU
oSU
oSU
oSU
+<<<<<<< HEAD
oSU
oSU
oSU
oSU
oSU
+=======
+iDt
+scw
+wme
+scw
+xMq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -131086,11 +208978,19 @@ oSU
oSU
oSU
oSU
+<<<<<<< HEAD
oSU
oSU
oSU
oSU
oSU
+=======
+xMq
+iDt
+scw
+scw
+xMq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -131344,8 +209244,13 @@ oSU
oSU
oSU
oSU
+<<<<<<< HEAD
oSU
oSU
+=======
+xMq
+xMq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSU
oSU
oSU
@@ -132764,8 +210669,13 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
iZz
+=======
+iDt
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -133021,7 +210931,11 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -133278,7 +211192,11 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -133535,7 +211453,11 @@ dhq
dhq
dhq
dhq
+<<<<<<< HEAD
iZz
+=======
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ghx
ghx
ghx
@@ -159372,7 +237294,11 @@ rex
rNc
icu
rOB
+<<<<<<< HEAD
rcx
+=======
+dKk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ksi
sJH
lwR
@@ -159613,17 +237539,29 @@ thA
thA
thA
thA
+<<<<<<< HEAD
oif
eJf
eJf
eJf
keu
+=======
+gFX
+pFv
+eJf
+eJf
+faL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
eJf
eJf
lwR
sJH
+<<<<<<< HEAD
irM
+=======
+gps
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
veK
tUC
fjQ
@@ -159632,10 +237570,17 @@ xuB
jkn
jkn
iyE
+<<<<<<< HEAD
ncO
vAj
lwR
iDt
+=======
+qAP
+cHA
+lwR
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
iDt
@@ -160146,7 +238091,11 @@ drD
jkn
jkn
sEq
+<<<<<<< HEAD
vZS
+=======
+boU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aez
sEq
scw
@@ -160400,7 +238349,11 @@ sJH
oLs
xaV
diV
+<<<<<<< HEAD
ebK
+=======
+uJi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uzs
sJH
tUK
@@ -161657,7 +239610,11 @@ thA
thA
thA
thA
+<<<<<<< HEAD
thA
+=======
+lGf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
gjq
@@ -161938,7 +239895,11 @@ gjq
gjq
gjq
bOz
+<<<<<<< HEAD
aVp
+=======
+ouq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icB
sGE
diV
@@ -162170,8 +240131,13 @@ thA
thA
szG
szG
+<<<<<<< HEAD
oif
thA
+=======
+gFX
+lGf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -163198,13 +241164,22 @@ szG
szG
myZ
eJf
+<<<<<<< HEAD
keu
+=======
+faL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
eJf
eJf
eJf
+<<<<<<< HEAD
oif
szG
+=======
+gFX
+wjA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -163460,14 +241435,24 @@ gjq
gjq
gjq
gFX
+<<<<<<< HEAD
szG
+=======
+wjA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
szG
gjq
gjq
gjq
+<<<<<<< HEAD
mTW
gjq
mTW
+=======
+ocS
+gjq
+ocS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -163697,6 +241682,7 @@ thA
iLh
jqj
aiA
+<<<<<<< HEAD
wVq
dcW
kjt
@@ -163705,6 +241691,16 @@ kUU
hSt
tKq
sGM
+=======
+msu
+dcW
+kjt
+wGZ
+kUU
+hSt
+tKq
+fqM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
haD
lrz
iLh
@@ -163736,24 +241732,41 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
keu
+=======
+faL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
cMk
yep
cMk
eJf
+<<<<<<< HEAD
keu
+=======
+faL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
eJf
eJf
eJf
+<<<<<<< HEAD
keu
+=======
+faL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
eJf
eJf
eJf
+<<<<<<< HEAD
oif
iDt
+=======
+gFX
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pfw
thA
thA
@@ -163952,7 +241965,11 @@ thA
thA
thA
iLh
+<<<<<<< HEAD
gAd
+=======
+tkT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ukd
iLh
aBX
@@ -163967,7 +241984,11 @@ iLh
iLh
iwS
iwS
+<<<<<<< HEAD
sbf
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
scw
@@ -164215,16 +242236,28 @@ ini
dwo
eKN
oQt
+<<<<<<< HEAD
ydH
+=======
+hTI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wUu
xrs
iLh
vad
+<<<<<<< HEAD
kMP
wMw
hoZ
iwS
iDt
+=======
+wjP
+wMw
+hoZ
+iwS
+ixl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -164235,7 +242268,11 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
mUf
+=======
+daO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aFG
hZe
xuo
@@ -164469,14 +242506,22 @@ iLh
hYb
iLh
iLh
+<<<<<<< HEAD
fGJ
+=======
+xvd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nAg
fkt
oQt
xrs
ilD
iLh
+<<<<<<< HEAD
pog
+=======
+hIW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qPs
xCr
wds
@@ -164499,6 +242544,7 @@ nia
sjb
hpM
sjb
+<<<<<<< HEAD
eJf
eJf
eJf
@@ -164507,6 +242553,16 @@ gQe
gQe
gQe
nzG
+=======
+pFv
+eJf
+eJf
+uBy
+avs
+avs
+avs
+aGR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
gjq
gOU
@@ -164718,7 +242774,11 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
kcW
+=======
+thA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ivF
ivF
xUF
@@ -164733,8 +242793,13 @@ iLh
iLh
iLh
iLh
+<<<<<<< HEAD
xkH
oeB
+=======
+qPb
+jSN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qxI
sTh
qMo
@@ -164743,6 +242808,7 @@ cCb
iDt
iDt
scw
+<<<<<<< HEAD
oif
eJf
eJf
@@ -164753,17 +242819,37 @@ sjb
khF
oFZ
jVx
+=======
+gFX
+pFv
+eJf
+faL
+eJf
+pfg
+sjb
+gRg
+oFZ
+cew
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wQr
kvf
sjb
gjq
gjq
gjq
+<<<<<<< HEAD
mrI
scw
jAv
scw
gem
+=======
+bUS
+scw
+jAv
+scw
+kNC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
gjq
gOU
@@ -164979,8 +243065,13 @@ iDt
snd
kkA
erw
+<<<<<<< HEAD
wrl
aOa
+=======
+abQ
+cGS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhb
aSC
cQi
@@ -164989,6 +243080,7 @@ ivF
sqb
gVm
iwS
+<<<<<<< HEAD
iJM
dNl
qxI
@@ -164996,6 +243088,15 @@ qxI
rVC
qMo
iDt
+=======
+wPJ
+qVK
+bpq
+qxI
+rVC
+qMo
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
ijY
iDt
@@ -165007,7 +243108,11 @@ gjq
gjq
gjq
sjb
+<<<<<<< HEAD
sjx
+=======
+xDj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xgO
rHk
wQr
@@ -165246,6 +243351,7 @@ ivF
pcc
fdX
iwS
+<<<<<<< HEAD
iJM
dNl
qxI
@@ -165253,6 +243359,15 @@ qxI
coT
qMo
iDt
+=======
+xdh
+otf
+bYR
+qxI
+coT
+qMo
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -165267,8 +243382,13 @@ sjb
qEu
jIX
sgV
+<<<<<<< HEAD
vpl
tQE
+=======
+cEl
+rES
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vSi
qLm
qLm
@@ -165276,7 +243396,11 @@ qLm
vSi
bie
bie
+<<<<<<< HEAD
vzI
+=======
+cMk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bie
bie
cMk
@@ -165287,11 +243411,19 @@ cMk
eJf
eJf
eJf
+<<<<<<< HEAD
keu
eJf
eJf
oif
pfw
+=======
+faL
+eJf
+eJf
+gFX
+rYA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ebd
iDt
iDt
@@ -165493,8 +243625,13 @@ scw
snd
hJp
hby
+<<<<<<< HEAD
czz
xYr
+=======
+nxY
+fHV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jwB
bIo
nit
@@ -165504,13 +243641,22 @@ iwS
iwS
iwS
iwS
+<<<<<<< HEAD
oqj
kTX
+=======
+tiX
+ogu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iJL
dwI
qMo
iDt
+<<<<<<< HEAD
iDt
+=======
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
ebd
@@ -165524,17 +243670,28 @@ cum
mzr
bgU
quY
+<<<<<<< HEAD
nbU
+=======
+fvj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vSi
vSi
vdb
mzu
rDn
vSi
+<<<<<<< HEAD
tKf
lkY
kZu
qmT
+=======
+tEO
+qDA
+kZu
+bKE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vpc
kZu
aYM
@@ -165757,9 +243914,15 @@ tHX
nit
eZK
ivF
+<<<<<<< HEAD
ktp
lIU
xrL
+=======
+smp
+hkI
+ktp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iwS
sFd
iuH
@@ -165771,7 +243934,11 @@ gJK
iwS
wkB
iDt
+<<<<<<< HEAD
jZN
+=======
+xYQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -165785,8 +243952,13 @@ jzy
pve
xjZ
bGP
+<<<<<<< HEAD
mIT
gsF
+=======
+hqv
+sYz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vSi
kZu
uOf
@@ -166002,13 +244174,22 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
nfG
qbU
+=======
+ppY
+wEu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ivF
jwH
jwH
jwH
+<<<<<<< HEAD
jHV
+=======
+pLS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aLz
jul
oRE
@@ -166038,7 +244219,11 @@ sjb
puX
uig
hPK
+<<<<<<< HEAD
ukv
+=======
+ilz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pve
hEm
ksn
@@ -166263,7 +244448,11 @@ gjq
scw
hyj
slX
+<<<<<<< HEAD
kwT
+=======
+oXx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ceY
kbq
sLR
@@ -166278,9 +244467,15 @@ nlO
nlO
gwz
nMH
+<<<<<<< HEAD
ciH
iwS
fpC
+=======
+jHh
+iwS
+gDh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
szX
qMo
iDt
@@ -166293,7 +244488,11 @@ gjq
sjb
wQr
wQr
+<<<<<<< HEAD
pcj
+=======
+cxI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wVe
wQr
vSi
@@ -166517,7 +244716,11 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
qsq
+=======
+gpo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ivF
ivF
ivF
@@ -166528,11 +244731,19 @@ jnR
jnR
ivF
ivF
+<<<<<<< HEAD
nRx
pEg
uyW
iwS
kDm
+=======
+eat
+pEg
+uyW
+iwS
+lJg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ePn
oDV
iqn
@@ -166548,22 +244759,37 @@ gjq
gjq
gjq
iYt
+<<<<<<< HEAD
dbi
unM
+=======
+slh
+dhV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lNH
bit
iQK
kXr
hVI
gDN
+<<<<<<< HEAD
pZD
uhs
+=======
+hSe
+nyR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pve
vSi
kZu
pAT
+<<<<<<< HEAD
xlQ
lCA
+=======
+lYd
+jCV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kZu
jrQ
qud
@@ -166574,7 +244800,11 @@ hFL
hFL
nWH
gnh
+<<<<<<< HEAD
iDt
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -166779,11 +245009,19 @@ gjq
iDt
iDt
iDt
+<<<<<<< HEAD
mdV
scw
scw
iDt
xdY
+=======
+iDt
+scw
+scw
+iDt
+thA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iwS
iwS
iwS
@@ -166795,7 +245033,11 @@ iwS
iwS
iwS
iwS
+<<<<<<< HEAD
dYq
+=======
+lRn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qMo
iDt
scw
@@ -166805,16 +245047,27 @@ gjq
gjq
gjq
dLf
+<<<<<<< HEAD
vfg
bQA
hKT
+=======
+iem
+xug
+rTZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cHZ
gaq
kXr
oGF
ksn
+<<<<<<< HEAD
pZD
ghQ
+=======
+nJL
+kUD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kUD
kUD
nWH
@@ -166823,8 +245076,13 @@ nWH
nWH
nWH
mHe
+<<<<<<< HEAD
dAq
adm
+=======
+sPE
+ceF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dTF
nWH
qeP
@@ -166986,21 +245244,34 @@ thA
thA
thA
thA
+<<<<<<< HEAD
kSw
+=======
+fIt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
xMq
xMq
xMq
+<<<<<<< HEAD
kSw
+=======
+fIt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cek
cek
uCN
cek
cek
cek
+<<<<<<< HEAD
kSw
thA
+=======
+fIt
+sGw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -167054,7 +245325,11 @@ thA
iwS
rBM
iwS
+<<<<<<< HEAD
iDt
+=======
+nyh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
gjq
gjq
@@ -167062,16 +245337,26 @@ gjq
gjq
gjq
dLf
+<<<<<<< HEAD
vfg
ajw
+=======
+gYd
+vRn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rty
lNH
eMa
hrJ
wmT
gDN
+<<<<<<< HEAD
lvT
wSX
+=======
+bGn
+kUD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kUD
kUD
nWH
@@ -167310,7 +245595,11 @@ thA
thA
scw
scw
+<<<<<<< HEAD
xUw
+=======
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
gjq
gjq
@@ -167319,17 +245608,29 @@ gjq
gjq
gjq
dLf
+<<<<<<< HEAD
vfg
ajw
vjM
+=======
+mGH
+eOJ
+vAr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bff
lNH
kix
aOf
yaD
+<<<<<<< HEAD
wmb
lEt
eMO
+=======
+vvU
+mtV
+itf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nWH
nWH
oha
@@ -167506,15 +245807,24 @@ hPs
gBX
gBX
gBX
+<<<<<<< HEAD
ktt
+=======
+hPs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hPs
nDE
nDE
nDE
nDE
nDE
+<<<<<<< HEAD
bUp
gjq
+=======
+nDE
+paw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -167561,6 +245871,7 @@ gjq
gjq
thA
thA
+<<<<<<< HEAD
gqG
thA
thA
@@ -167570,6 +245881,17 @@ myZ
myZ
gqG
gjq
+=======
+psb
+lGf
+thA
+psb
+eAW
+myZ
+myZ
+psb
+fhL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -167577,9 +245899,15 @@ gjq
gjq
iYt
tDU
+<<<<<<< HEAD
mod
bQA
eIU
+=======
+hcT
+bQA
+ajw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wUP
hrJ
siI
@@ -167602,7 +245930,11 @@ whb
xjC
nWH
gnh
+<<<<<<< HEAD
iDt
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
ulj
iDt
@@ -167768,7 +246100,11 @@ jlF
jNf
dpC
cGQ
+<<<<<<< HEAD
oNW
+=======
+txX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nmr
hVY
gjq
@@ -167835,8 +246171,13 @@ gjq
jpS
kNW
kNW
+<<<<<<< HEAD
wxp
wxp
+=======
+ryl
+xNh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kNW
kNW
kNW
@@ -167848,7 +246189,11 @@ nWH
nWH
nWH
nWH
+<<<<<<< HEAD
tCO
+=======
+eSA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jRd
sbU
nWH
@@ -168017,8 +246362,13 @@ thA
xMq
iDt
oqL
+<<<<<<< HEAD
ucD
eaw
+=======
+wmP
+vTq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jsp
wSz
nFU
@@ -168102,6 +246452,7 @@ pZD
cQw
gLF
wpx
+<<<<<<< HEAD
unT
iAp
til
@@ -168114,6 +246465,20 @@ cvB
tzE
gMw
ggv
+=======
+gLF
+gee
+kVN
+naq
+mzu
+gLF
+gLF
+dZq
+cvB
+tzE
+pLh
+eHo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rsY
urG
iDt
@@ -168309,7 +246674,11 @@ rVB
rVB
rVB
qQf
+<<<<<<< HEAD
gjq
+=======
+fhL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -168528,11 +246897,19 @@ thA
thA
thA
thA
+<<<<<<< HEAD
kSw
iDt
ktt
njf
rBy
+=======
+fIt
+nbB
+ktt
+tmy
+lvU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fAV
tGs
obv
@@ -168589,8 +246966,13 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
jXc
eJf
+=======
+psb
+hYM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
psb
myZ
@@ -168788,6 +247170,7 @@ thA
xMq
iDt
hPs
+<<<<<<< HEAD
eSE
mVI
elU
@@ -168795,6 +247178,15 @@ nZi
tWO
jNf
tXd
+=======
+bVT
+nPS
+cKy
+mLX
+tWO
+jNf
+pSA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qSo
cPE
cPE
@@ -168864,7 +247256,11 @@ gjq
jpS
kuC
kII
+<<<<<<< HEAD
nmu
+=======
+rRn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
clz
mml
kNW
@@ -168886,7 +247282,11 @@ rsY
qjV
qjV
rsY
+<<<<<<< HEAD
vek
+=======
+hNn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -169051,7 +247451,11 @@ bCp
fYi
tCL
jNf
+<<<<<<< HEAD
wcz
+=======
+wSC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hKI
fWe
ozX
@@ -169076,8 +247480,13 @@ ucN
iDt
iDt
qQf
+<<<<<<< HEAD
kxZ
mES
+=======
+ouK
+vkC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sXk
rJz
pFV
@@ -169103,8 +247512,13 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
eFw
eJf
+=======
+psb
+bZC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
psb
myZ
@@ -169145,7 +247559,11 @@ aIB
aIB
dNN
psb
+<<<<<<< HEAD
iDt
+=======
+fXL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sVN
iDt
psb
@@ -169305,7 +247723,11 @@ hPs
xLV
xLV
nvE
+<<<<<<< HEAD
uKJ
+=======
+vcx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tCL
jNf
fDP
@@ -169320,7 +247742,11 @@ gjq
wUj
qLB
jpy
+<<<<<<< HEAD
vXe
+=======
+cgB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ssY
wUj
gjq
@@ -169328,7 +247754,11 @@ ucN
cXZ
cVk
gFj
+<<<<<<< HEAD
vZH
+=======
+vtR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kgz
iDt
iDt
@@ -169380,7 +247810,11 @@ jpS
jlK
jpS
szJ
+<<<<<<< HEAD
iKp
+=======
+nvy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kNW
rrV
xGt
@@ -169393,17 +247827,28 @@ uUT
vgD
lvQ
sUE
+<<<<<<< HEAD
sdc
mPq
scw
qau
+=======
+rsY
+jcA
+scw
+jai
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
iDt
wOR
+<<<<<<< HEAD
xuo
+=======
+txm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
itY
iDt
thA
@@ -169592,7 +248037,11 @@ iDt
qQf
sEk
qQf
+<<<<<<< HEAD
uxZ
+=======
+aPZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dBp
jZe
qYb
@@ -169633,9 +248082,15 @@ iDt
iDt
ijY
iDt
+<<<<<<< HEAD
iDt
iDt
aEM
+=======
+aEM
+iDt
+jpS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gKd
gKd
rsY
@@ -169643,7 +248098,11 @@ hdb
avh
qGg
uUT
+<<<<<<< HEAD
fyT
+=======
+ccv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lQh
diI
uUT
@@ -169659,7 +248118,11 @@ iDt
cCb
scw
iDt
+<<<<<<< HEAD
xuo
+=======
+ohI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tZp
iDt
iDt
@@ -169814,8 +248277,13 @@ iDt
iDt
iDt
oqL
+<<<<<<< HEAD
gLY
twx
+=======
+iCp
+wes
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ldz
fvK
cIc
@@ -169827,8 +248295,13 @@ jNf
jNf
jNf
jNf
+<<<<<<< HEAD
xZg
iDt
+=======
+xhK
+kXf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
wUj
@@ -169849,6 +248322,7 @@ ijY
qQf
qQf
qQf
+<<<<<<< HEAD
uPx
cfi
pjz
@@ -169856,6 +248330,15 @@ qQf
qQf
qQf
pfw
+=======
+rIz
+cfi
+bGS
+qQf
+qQf
+qQf
+gVN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
iDt
@@ -169867,7 +248350,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -169896,9 +248383,15 @@ rcY
iDt
iDt
rsY
+<<<<<<< HEAD
mqs
dTs
oeP
+=======
+avi
+dTs
+cxt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uUT
kmO
rtR
@@ -169910,16 +248403,28 @@ qQt
scw
scw
iDt
+<<<<<<< HEAD
nqv
+=======
+qau
+iDt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
jSQ
cmZ
xuo
iDt
jZN
+=======
+cmZ
+dNN
+iDt
+xYQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -170071,8 +248576,13 @@ iDt
iDt
iDt
oqL
+<<<<<<< HEAD
gvi
xCa
+=======
+lrM
+dnz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
axX
auJ
oVy
@@ -170112,7 +248622,11 @@ rGq
gQp
iUG
sXe
+<<<<<<< HEAD
xuo
+=======
+vpJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170131,6 +248645,7 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
gqG
scw
iDt
@@ -170140,6 +248655,17 @@ aIB
aIB
gqG
iDt
+=======
+psb
+mrk
+iDt
+psb
+leU
+aIB
+aIB
+psb
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170149,10 +248675,17 @@ iDt
iDt
iDt
cCb
+<<<<<<< HEAD
qau
scw
qXg
sdc
+=======
+jai
+nLB
+qXg
+rsY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rsY
czq
rsY
@@ -170167,8 +248700,13 @@ scw
scw
iDt
scw
+<<<<<<< HEAD
qau
ijY
+=======
+jai
+jwz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170327,8 +248865,13 @@ iDt
ijY
hPs
gBX
+<<<<<<< HEAD
oPa
cjz
+=======
+hPs
+tcL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vdW
sTP
jhH
@@ -170346,7 +248889,11 @@ iDt
ijY
pfw
wUj
+<<<<<<< HEAD
dtq
+=======
+pYn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jeJ
aFg
vwl
@@ -170367,11 +248914,19 @@ qQf
ofE
awn
qQf
+<<<<<<< HEAD
mri
qQf
ebd
iDt
nfG
+=======
+rVB
+qQf
+mCz
+iDt
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pfw
thA
thA
@@ -170387,7 +248942,11 @@ thA
thA
thA
thA
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170395,7 +248954,11 @@ iDt
scw
iDt
iDt
+<<<<<<< HEAD
iDt
+=======
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170406,15 +248969,24 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
mJZ
iDt
scw
qQt
scw
+=======
+qau
+iDt
+scw
+qQt
+oIt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
iwf
uUT
+<<<<<<< HEAD
afs
qCY
iwf
@@ -170425,6 +248997,18 @@ tej
tej
tej
kso
+=======
+okc
+bzD
+iwf
+wWw
+aOG
+wWw
+wWw
+wWw
+aOG
+qhR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170588,12 +249172,20 @@ dck
tei
fTF
fTF
+<<<<<<< HEAD
fTF
+=======
+dbn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cIc
uTp
oVY
pez
+<<<<<<< HEAD
ccX
+=======
+oOg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLg
vVH
vVH
@@ -170606,15 +249198,26 @@ ntl
hwu
hwu
wUj
+<<<<<<< HEAD
wwL
wUj
vOw
eGW
+=======
+vmw
+wUj
+vOw
+jEJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dZN
eGW
uRk
dDt
+<<<<<<< HEAD
dDt
+=======
+crf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wYh
dvw
dDt
@@ -170643,6 +249246,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
dlu
dlu
dlu
@@ -170656,6 +249260,21 @@ qgQ
rrl
nmO
ozW
+=======
+fyI
+fyI
+fyI
+fyI
+fyI
+fyI
+fyI
+fyI
+pkq
+pkq
+guO
+poC
+dXk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170663,7 +249282,11 @@ iDt
iDt
scw
iDt
+<<<<<<< HEAD
rcY
+=======
+qau
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
snL
@@ -170671,14 +249294,22 @@ scw
scw
scw
nUi
+<<<<<<< HEAD
nNy
+=======
+oTi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cbk
lNa
nUi
iDt
iDt
iDt
+<<<<<<< HEAD
jZN
+=======
+xYQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170850,21 +249481,37 @@ cIc
kqn
oVY
pez
+<<<<<<< HEAD
qsR
aQQ
fdm
grU
nKL
+=======
+anQ
+aQQ
+fdm
+eIg
+rIH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ukN
nCs
bZk
gRZ
+<<<<<<< HEAD
kmg
+=======
+dAZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vOw
eGW
eGW
uRk
+<<<<<<< HEAD
dDt
+=======
+tbl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dDt
stG
ykM
@@ -170900,6 +249547,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
dlu
qbM
wvu
@@ -170908,14 +249556,31 @@ bPR
qbM
wvu
bil
+=======
+fyI
+tKm
+eiH
+eiH
+puZ
+tKm
+eiH
+sTb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ijY
iDt
iDt
iDt
+<<<<<<< HEAD
kJx
iDt
iDt
jZN
+=======
+hcZ
+iDt
+iDt
+xYQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170927,11 +249592,19 @@ rxG
iDt
scw
uWE
+<<<<<<< HEAD
qzq
+=======
+iwf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iwf
qlk
qlk
iwf
+<<<<<<< HEAD
+=======
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -170940,8 +249613,12 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
iDt
jZN
+=======
+xYQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
thA
thA
@@ -171110,7 +249787,11 @@ oCU
vVH
vVH
vVH
+<<<<<<< HEAD
lDE
+=======
+ivw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nKL
hpF
pXZ
@@ -171157,6 +249838,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
dlu
nEI
wvu
@@ -171170,6 +249852,21 @@ iDt
iDt
iDt
kJx
+=======
+fyI
+aGb
+eiH
+eiH
+puZ
+aGb
+eiH
+sTb
+scw
+iDt
+iDt
+iDt
+hcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -171367,7 +250064,11 @@ bLc
diN
diN
lgK
+<<<<<<< HEAD
jqn
+=======
+vlH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lWb
eDq
tDY
@@ -171376,10 +250077,17 @@ izY
eND
qpB
qpB
+<<<<<<< HEAD
jLB
qpB
qpB
siv
+=======
+eIU
+qpB
+qpB
+sfF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kRy
qpB
iwC
@@ -171414,6 +250122,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
dlu
wvu
wvu
@@ -171427,6 +250136,21 @@ iDt
ayJ
iDt
kJx
+=======
+fyI
+eiH
+eiH
+eiH
+puZ
+eiH
+eiH
+sTb
+iDt
+iDt
+luI
+iDt
+hcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -171434,15 +250158,24 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
rcY
+=======
+jai
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
mJZ
iDt
+=======
+jai
+wkB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -171649,7 +250382,11 @@ cBT
dyf
iOs
gKQ
+<<<<<<< HEAD
eGW
+=======
+xAY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qQN
wMt
thA
@@ -171671,6 +250408,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
rEn
rEn
@@ -171679,11 +250417,25 @@ ghA
rEn
wvu
idH
+=======
+fyI
+bEk
+bEk
+eiH
+qAh
+bEk
+eiH
+fwC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
kJx
+=======
+hcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -171692,6 +250444,7 @@ ijY
iDt
iDt
syw
+<<<<<<< HEAD
kNC
kNC
kNC
@@ -171699,6 +250452,15 @@ tej
fSm
kNC
gIl
+=======
+aOG
+pJm
+pJm
+wWw
+fSm
+aOG
+pCG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
cCb
@@ -171870,7 +250632,11 @@ iDt
hPs
gBX
hPs
+<<<<<<< HEAD
bSX
+=======
+jhj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pzu
sRQ
una
@@ -171886,6 +250652,7 @@ nKL
hpF
uHv
nup
+<<<<<<< HEAD
vYc
dAZ
nek
@@ -171895,6 +250662,17 @@ rhP
kkB
dUO
nGQ
+=======
+pCp
+dAZ
+eRp
+qKS
+dUO
+fWQ
+kkB
+dUO
+ylL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sSO
lyg
gjq
@@ -171906,8 +250684,13 @@ bqF
dyf
iNy
gKQ
+<<<<<<< HEAD
eGW
qQN
+=======
+okz
+okz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wMt
thA
thA
@@ -171928,6 +250711,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
wvu
wvu
@@ -171936,11 +250720,25 @@ wvu
wvu
wvu
wvu
+=======
+fyI
+eiH
+eiH
+eiH
+eiH
+eiH
+eiH
+skr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
qSi
+=======
+kOR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
scw
@@ -171950,8 +250748,13 @@ iDt
scw
scw
iDt
+<<<<<<< HEAD
rDN
sEv
+=======
+fep
+edc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
iDt
@@ -171959,7 +250762,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
jZN
+=======
+xYQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
@@ -172138,12 +250945,20 @@ pez
tVf
izn
lgK
+<<<<<<< HEAD
pfn
+=======
+wrw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lWb
eDq
iXh
lWb
+<<<<<<< HEAD
hRp
+=======
+upB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dAZ
wqI
xSn
@@ -172163,8 +250978,13 @@ seA
ybN
seA
gKQ
+<<<<<<< HEAD
jSL
jSL
+=======
+jhi
+jhi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wMt
thA
thA
@@ -172185,6 +251005,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
ncx
kYN
@@ -172196,6 +251017,19 @@ wvu
ayJ
iDt
iDt
+=======
+fyI
+tjM
+fsx
+eiH
+eiH
+upU
+fsx
+skr
+eGV
+scw
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
@@ -172205,11 +251039,19 @@ scw
scw
scw
scw
+<<<<<<< HEAD
oJD
oJD
scw
sed
nfG
+=======
+nKY
+nKY
+scw
+eFH
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
iDt
@@ -172400,7 +251242,11 @@ yiL
yiL
yiL
eDq
+<<<<<<< HEAD
pDl
+=======
+ejb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dAZ
emM
wob
@@ -172442,6 +251288,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
wvu
wvu
@@ -172450,11 +251297,25 @@ wvu
wvu
wvu
wvu
+=======
+fyI
+eiH
+eiH
+eiH
+eiH
+eiH
+eiH
+skr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
qSi
+=======
+kOR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
scw
@@ -172462,9 +251323,15 @@ iDt
scw
scw
scw
+<<<<<<< HEAD
kYo
oJD
oJD
+=======
+dVN
+nKY
+nKY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
aRt
@@ -172640,7 +251507,11 @@ xMq
iDt
iDt
ebd
+<<<<<<< HEAD
ktt
+=======
+hPs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gBX
hPs
cIc
@@ -172656,6 +251527,7 @@ uBs
uBs
uBs
xaH
+<<<<<<< HEAD
fCd
nDp
ubo
@@ -172665,6 +251537,17 @@ gqZ
vms
nDp
dwS
+=======
+erM
+nDp
+uFg
+lgD
+nDp
+mtS
+vms
+nDp
+tlt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vms
iYU
nZd
@@ -172699,6 +251582,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
xxH
xxH
@@ -172707,11 +251591,25 @@ jkK
xxH
wvu
mhj
+=======
+fyI
+fgV
+fgV
+eiH
+gLX
+fgV
+eiH
+oAm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
kJx
+=======
+hcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -172719,11 +251617,19 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
kYo
rIS
kYo
kYo
kYo
+=======
+dVN
+yib
+dVN
+dVN
+dVN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
thA
@@ -172913,7 +251819,11 @@ xuA
tuc
pPK
yiL
+<<<<<<< HEAD
aVF
+=======
+gwl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rQZ
bSk
uQC
@@ -172922,18 +251832,31 @@ bcm
uQC
nSk
wQR
+<<<<<<< HEAD
kWH
vao
+=======
+lEM
+oVD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lyg
gjq
gjq
gjq
ncR
+<<<<<<< HEAD
eBU
ile
dyf
ile
neC
+=======
+uyo
+epN
+dyf
+nnj
+sWN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gKQ
thA
thA
@@ -172956,6 +251879,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
wvu
wvu
@@ -172980,6 +251904,32 @@ kYo
kYo
kYo
kYo
+=======
+fyI
+eiH
+eiH
+eiH
+puZ
+eiH
+eiH
+sTb
+iDt
+scw
+luI
+iDt
+hcZ
+iDt
+iDt
+iDt
+tla
+iDt
+iDt
+iNo
+dVN
+dVN
+dVN
+dVN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -173170,7 +252120,11 @@ xuA
tuc
tuc
yiL
+<<<<<<< HEAD
pRB
+=======
+sBH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cGl
hgM
pJu
@@ -173182,14 +252136,24 @@ frS
fiL
hQt
lyg
+<<<<<<< HEAD
gjq
+=======
+fhL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
wYP
tDN
+<<<<<<< HEAD
tpK
dyf
xCb
+=======
+bPl
+dyf
+bOh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gDe
gKQ
thA
@@ -173213,6 +252177,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
nEI
wvu
@@ -173226,12 +252191,31 @@ iDt
iDt
iDt
kJx
+=======
+fyI
+aGb
+eiH
+eiH
+puZ
+aGb
+eiH
+sTb
+iDt
+iDt
+scw
+iDt
+hcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
kPz
+=======
+iNo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -173411,8 +252395,13 @@ xMq
xMq
xMq
xMq
+<<<<<<< HEAD
kSw
iDt
+=======
+fIt
+nbB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xhK
vVH
vVH
@@ -173424,7 +252413,11 @@ yiL
vDx
cxO
xuA
+<<<<<<< HEAD
dkB
+=======
+wkd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bYg
yiL
qLD
@@ -173444,9 +252437,15 @@ gjq
gjq
idN
ntT
+<<<<<<< HEAD
xUR
jbI
oQN
+=======
+mtq
+jbI
+bqS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xtn
gKQ
thA
@@ -173470,6 +252469,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
qbM
wvu
@@ -173478,11 +252478,25 @@ bPR
qbM
wvu
bil
+=======
+fyI
+tKm
+eiH
+eiH
+puZ
+tKm
+eiH
+sTb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
+<<<<<<< HEAD
kJx
+=======
+hcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -173684,8 +252698,13 @@ pgL
lab
cbz
yiL
+<<<<<<< HEAD
iVu
rnb
+=======
+fnt
+fJZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hgM
kyu
hBg
@@ -173701,9 +252720,15 @@ gjq
gjq
onJ
mvv
+<<<<<<< HEAD
ile
oTe
cAz
+=======
+bfV
+aUo
+rth
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dEv
gKQ
thA
@@ -173727,6 +252752,7 @@ tjo
thA
thA
thA
+<<<<<<< HEAD
dlu
dlu
dlu
@@ -173742,6 +252768,23 @@ iDx
fQa
iDt
daZ
+=======
+fyI
+fyI
+fyI
+fyI
+fyI
+fyI
+fyI
+fyI
+jnW
+uPY
+jnW
+jnW
+kAk
+iDt
+tla
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
thA
@@ -173938,11 +252981,19 @@ yiL
agF
tgP
rGh
+<<<<<<< HEAD
vHM
wyF
yiL
szz
nrq
+=======
+iJE
+wyF
+yiL
+cVV
+dhi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hgM
kyu
nrF
@@ -174007,7 +253058,11 @@ thA
thA
thA
xMq
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -174182,8 +253237,13 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
kSw
iDt
+=======
+fIt
+nbB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xhK
oAP
oua
@@ -174198,8 +253258,13 @@ yiL
yiL
yiL
yiL
+<<<<<<< HEAD
xHE
xHE
+=======
+nEC
+lOr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hgM
fvO
mBa
@@ -174251,10 +253316,17 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
aaD
wqT
aaD
iDt
+=======
+vcj
+wqT
+vcj
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -174447,11 +253519,19 @@ swf
vVH
uVC
oVY
+<<<<<<< HEAD
rwu
tVf
wRa
gAn
hgH
+=======
+tGJ
+tVf
+wRa
+gAn
+qNK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nmI
kZi
uME
@@ -174465,7 +253545,11 @@ xhK
xhK
xhK
xhK
+<<<<<<< HEAD
gjq
+=======
+paw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -174509,7 +253593,11 @@ iDt
iDt
iDt
alW
+<<<<<<< HEAD
wVz
+=======
+dpw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alW
iDt
iDt
@@ -174702,13 +253790,21 @@ xhK
vVH
fkV
vVH
+<<<<<<< HEAD
kqn
+=======
+wEp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oVY
sMs
tVf
wJi
rME
+<<<<<<< HEAD
bol
+=======
+xvI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mMy
uME
uME
@@ -174766,11 +253862,19 @@ iDt
iDt
vcj
vcj
+<<<<<<< HEAD
tLc
vcj
vcj
aVq
daZ
+=======
+aDc
+vcj
+vcj
+aVq
+tla
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
xMq
thA
@@ -174965,7 +254069,11 @@ bWh
pac
hUz
hUz
+<<<<<<< HEAD
bjp
+=======
+tGA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bjp
poe
ryu
@@ -175030,7 +254138,11 @@ aVq
iDt
iDt
iDt
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
ebd
@@ -175213,7 +254325,11 @@ gjq
gjq
gjq
upw
+<<<<<<< HEAD
msg
+=======
+pcT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jDG
iRV
fiD
@@ -175231,7 +254347,11 @@ ihB
ddp
hBg
nzj
+<<<<<<< HEAD
dKr
+=======
+rjd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pOk
par
rsM
@@ -175538,10 +254658,17 @@ ijn
vWz
vWz
swq
+<<<<<<< HEAD
eNS
vcj
aaD
qtS
+=======
+vWz
+vcj
+vcj
+dCq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -175795,8 +254922,13 @@ sIO
wDG
vyg
dOq
+<<<<<<< HEAD
kOS
uMq
+=======
+gLU
+wVz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nul
scw
scw
@@ -176051,11 +255183,19 @@ vcj
igL
vWz
vWz
+<<<<<<< HEAD
dOq
vWz
vcj
aaD
xQu
+=======
+bFx
+vWz
+vcj
+vcj
+tsc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
xMq
thA
@@ -176064,7 +255204,11 @@ xMq
xMq
thA
xMq
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -176311,7 +255455,11 @@ iyd
vlZ
gCh
alW
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
xMq
xMq
@@ -176329,11 +255477,19 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
nfG
iDt
iDt
iDt
nfG
+=======
+ppY
+iDt
+iDt
+iDt
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
@@ -176766,14 +255922,24 @@ wRa
wRa
wRa
vVH
+<<<<<<< HEAD
nRO
+=======
+tOE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ulz
ulz
ulz
pNm
+<<<<<<< HEAD
eOz
fdG
uCU
+=======
+cLp
+fdG
+saX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -177023,7 +256189,11 @@ wRa
wRa
wRa
vVH
+<<<<<<< HEAD
nCQ
+=======
+kUt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pKR
ejX
fjG
@@ -177337,7 +256507,11 @@ scw
scw
scw
scw
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
thA
@@ -177355,8 +256529,13 @@ nxM
vmP
maQ
oAe
+<<<<<<< HEAD
aUD
xMq
+=======
+nxM
+fCm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -177609,7 +256788,11 @@ thA
thA
thA
mep
+<<<<<<< HEAD
upa
+=======
+kVI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qck
lkz
mep
@@ -177848,6 +257031,7 @@ scw
scw
iDt
thA
+<<<<<<< HEAD
gqG
thA
thA
@@ -177856,6 +257040,16 @@ gqG
scw
gqG
iDt
+=======
+psb
+lGf
+thA
+thA
+psb
+mrk
+psb
+mbJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
gjq
gjq
@@ -177866,9 +257060,15 @@ thA
thA
nxM
nxM
+<<<<<<< HEAD
qKH
eVO
aUR
+=======
+vmP
+eVO
+oAe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxM
nxM
nxM
@@ -178087,7 +257287,11 @@ thA
thA
thA
thA
+<<<<<<< HEAD
rcY
+=======
+aKb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
xMq
@@ -178100,7 +257304,11 @@ gjq
gjq
gjq
gjq
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
thA
thA
@@ -178344,8 +257552,13 @@ thA
thA
thA
thA
+<<<<<<< HEAD
mJZ
iDt
+=======
+bmc
+wkB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
scw
@@ -178391,7 +257604,11 @@ thA
thA
thA
thA
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
@@ -178566,7 +257783,11 @@ ovP
ovP
ovP
gFX
+<<<<<<< HEAD
ovP
+=======
+iXc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ovP
ovP
ovP
@@ -178605,12 +257826,21 @@ chg
iDt
scw
scw
+<<<<<<< HEAD
xpO
gNu
gNu
gNu
gNu
oZk
+=======
+bqq
+mgS
+mgS
+mgS
+mgS
+jRX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -178822,7 +258052,11 @@ ovP
ovP
iDt
scw
+<<<<<<< HEAD
gbz
+=======
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ovP
ovP
ovP
@@ -178858,6 +258092,7 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
rcY
scw
scw
@@ -178869,6 +258104,19 @@ hog
joW
aqq
oZk
+=======
+bmc
+pwr
+scw
+bqq
+uvA
+pvi
+uhF
+uhF
+gyg
+kOM
+jRX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -178913,7 +258161,11 @@ iDt
bID
vxf
noX
+<<<<<<< HEAD
eNQ
+=======
+nKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bID
iDt
thA
@@ -179115,6 +258367,7 @@ thA
thA
thA
iDt
+<<<<<<< HEAD
rcY
scw
xMq
@@ -179126,6 +258379,19 @@ sCZ
qMO
dVj
anI
+=======
+aKb
+scw
+xMq
+kuZ
+pBR
+eYX
+sCZ
+sCZ
+oDD
+oUh
+kuZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
gjq
@@ -179137,10 +258403,17 @@ bDO
xMq
xMq
iDt
+<<<<<<< HEAD
gqG
scw
gqG
thA
+=======
+psb
+mrk
+psb
+lGf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -179163,6 +258436,7 @@ xMq
iDt
iDt
iDt
+<<<<<<< HEAD
nfG
iDt
iDt
@@ -179170,6 +258444,15 @@ nfG
bID
bID
dmR
+=======
+ppY
+iDt
+iDt
+ppY
+bID
+bID
+sSN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bID
bID
thA
@@ -179376,6 +258659,7 @@ xMq
xMq
xMq
exw
+<<<<<<< HEAD
nwC
syE
hcj
@@ -179392,6 +258676,24 @@ jTf
jTf
gqG
szG
+=======
+fcA
+syE
+jaE
+jaE
+wPx
+cUS
+exw
+bBO
+gjq
+gjq
+mxK
+pJm
+aOG
+wWw
+psb
+wjA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
iDt
@@ -179633,6 +258935,7 @@ exw
exw
exw
exw
+<<<<<<< HEAD
wwg
bdr
jUv
@@ -179647,6 +258950,22 @@ exw
mPq
iDt
neM
+=======
+abJ
+bdr
+pme
+pme
+aon
+jjI
+exw
+exw
+mgS
+mgS
+exw
+mPq
+iDt
+cRN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qau
xMq
xMq
@@ -179680,7 +258999,11 @@ iDt
cCb
iDt
iDt
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bID
anZ
anZ
@@ -179887,6 +259210,7 @@ iDt
iDt
xMq
exw
+<<<<<<< HEAD
jiD
utn
vnK
@@ -179905,6 +259229,26 @@ nrh
iDt
neM
qau
+=======
+caA
+mty
+urQ
+sQI
+bdr
+pme
+pme
+aon
+ojy
+oGC
+lQv
+nVx
+qes
+xOQ
+xyr
+iDt
+cRN
+jai
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
xMq
iDt
@@ -180144,6 +259488,7 @@ xMq
xMq
xMq
exw
+<<<<<<< HEAD
cmg
qrF
ncd
@@ -180159,12 +259504,33 @@ aBb
myS
exw
dNN
+=======
+xiL
+xlm
+xLT
+jgV
+qlE
+mNB
+mNB
+pyA
+nrJ
+onT
+exw
+hjc
+jiw
+exw
+xvN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
qau
iDt
iDt
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
iDt
@@ -180400,6 +259766,7 @@ xMq
xMq
xMq
xMq
+<<<<<<< HEAD
exw
quw
xJW
@@ -180410,6 +259777,18 @@ mYn
byy
mYn
wPR
+=======
+uVb
+qJB
+mqd
+xLT
+wDb
+oZG
+oZG
+rZY
+oZG
+eSC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
exw
exw
exw
@@ -180418,15 +259797,25 @@ exw
mPq
iDt
iDt
+<<<<<<< HEAD
xlp
scw
fna
+=======
+qau
+scw
+wJy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
iDt
eXH
+<<<<<<< HEAD
gGK
+=======
+jvU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bjU
aJr
vHZ
@@ -180658,6 +260047,7 @@ sBy
sBy
sBy
exw
+<<<<<<< HEAD
qre
oZD
lHI
@@ -180678,12 +260068,38 @@ neM
qau
iZm
fdP
+=======
+ghD
+lKN
+fLu
+exw
+xKq
+iXO
+exw
+dXp
+aqr
+wOt
+fHO
+urG
+cRN
+iDt
+scw
+iDt
+cRN
+jai
+nbz
+vyp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
iDt
eXH
+<<<<<<< HEAD
rwk
+=======
+hZJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
izJ
gVO
vjS
@@ -180910,6 +260326,7 @@ thA
xMq
sBy
sBy
+<<<<<<< HEAD
dQp
rRu
xBs
@@ -180935,6 +260352,33 @@ neM
qau
iDt
kRF
+=======
+dpb
+loF
+ikL
+cLR
+exw
+jJl
+daH
+oLi
+exw
+mpU
+mpU
+bHJ
+iHP
+aqr
+uMp
+fHO
+urG
+cRN
+iDt
+iDt
+scw
+cRN
+qau
+iDt
+tiT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
iDt
@@ -180953,7 +260397,11 @@ nRc
nRc
bCt
pHD
+<<<<<<< HEAD
djB
+=======
+tOb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hjM
oex
oex
@@ -181166,6 +260614,7 @@ thA
xMq
xMq
sBy
+<<<<<<< HEAD
qTp
xTi
bpc
@@ -181181,6 +260630,23 @@ tmb
exw
wME
tbd
+=======
+xNs
+hZc
+tZv
+kKT
+iAK
+exw
+hTY
+dQy
+oPm
+exw
+pPg
+pPg
+exw
+obU
+pvP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
exw
exw
gFX
@@ -181189,7 +260655,11 @@ iDt
scw
scw
oZd
+<<<<<<< HEAD
kso
+=======
+qhR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
iDt
@@ -181423,15 +260893,24 @@ thA
xMq
xMq
sBy
+<<<<<<< HEAD
ghT
pXy
nqI
sBy
fbg
+=======
+gYv
+rFU
+qyH
+sBy
+dbO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sBy
sBy
exw
exw
+<<<<<<< HEAD
bwh
lyP
iDv
@@ -181439,13 +260918,28 @@ jMD
sCZ
obT
ozx
+=======
+exw
+cGZ
+uAP
+fNB
+sCZ
+eSC
+ggz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
exw
xMq
psb
jTf
+<<<<<<< HEAD
jTf
ork
gIl
+=======
+wWw
+uen
+hoz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
cCb
@@ -181454,7 +260948,11 @@ scw
iDt
iDt
eXH
+<<<<<<< HEAD
nlN
+=======
+iIY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nlS
yco
rVd
@@ -181680,6 +261178,7 @@ thA
xMq
xMq
sBy
+<<<<<<< HEAD
kzU
vxY
sRf
@@ -181696,6 +261195,24 @@ ekc
leg
oIQ
inN
+=======
+oiM
+qrB
+lRO
+sBy
+lom
+ete
+laa
+exw
+exw
+exw
+nwA
+tPT
+kiO
+iTr
+rds
+xQi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
exw
xMq
psb
@@ -181730,7 +261247,11 @@ xmx
wEU
rwD
nxM
+<<<<<<< HEAD
dXF
+=======
+xnK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pNZ
rQG
jJV
@@ -181937,6 +261458,7 @@ xMq
xMq
xMq
sBy
+<<<<<<< HEAD
azI
kSj
lyf
@@ -181953,6 +261475,24 @@ hjw
xFT
exw
bor
+=======
+oHf
+lOJ
+eqE
+sBy
+sTL
+idI
+afb
+bng
+suF
+exw
+gbK
+shF
+qPV
+wZW
+exw
+eXD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
exw
psb
psb
@@ -181964,11 +261504,19 @@ scw
btU
xUf
syW
+<<<<<<< HEAD
jmJ
hVX
xUf
eXH
irO
+=======
+sCz
+hVX
+xUf
+eXH
+uIJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wiv
fBw
mLt
@@ -181976,10 +261524,17 @@ mLt
eKW
wsu
wsu
+<<<<<<< HEAD
wsu
wsu
wsu
wsu
+=======
+xfv
+urp
+urp
+bFW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pHD
sGk
hjM
@@ -181987,7 +261542,11 @@ aJw
sBJ
qpD
nxM
+<<<<<<< HEAD
qhp
+=======
+feD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxM
nxM
pBW
@@ -182195,6 +261754,7 @@ xMq
qMT
qMT
qMT
+<<<<<<< HEAD
qon
qMT
qMT
@@ -182212,6 +261772,25 @@ exw
mxY
xOd
ubi
+=======
+qaS
+qMT
+qMT
+lom
+idI
+iMb
+xIO
+tGE
+exw
+aOb
+xEX
+tGz
+aOb
+exw
+rgq
+sCb
+grp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psb
xMq
iDt
@@ -182219,7 +261798,11 @@ iDt
iDt
iDt
ioK
+<<<<<<< HEAD
vtW
+=======
+tqy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bja
jvw
jvw
@@ -182233,10 +261816,17 @@ qcL
plS
pHD
pHD
+<<<<<<< HEAD
eUe
bCq
bCq
fPh
+=======
+hNq
+vIu
+vIu
+kSG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pHD
jKG
hjM
@@ -182450,6 +262040,7 @@ thA
xMq
xMq
qMT
+<<<<<<< HEAD
jlv
emw
rqG
@@ -182468,6 +262059,26 @@ rzq
exw
exw
bpa
+=======
+hfs
+bMk
+mxR
+tHb
+kuq
+lom
+idI
+tJh
+qMT
+exw
+exw
+hZW
+aIn
+xwi
+cft
+exw
+exw
+rJc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psb
psb
iDt
@@ -182476,11 +262087,19 @@ iDt
scw
iDt
ioK
+<<<<<<< HEAD
jEA
bja
rlA
jvw
bja
+=======
+jDz
+bja
+czj
+jvw
+gIJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kRH
xqY
nzK
@@ -182490,10 +262109,17 @@ fmr
plS
pHD
pHD
+<<<<<<< HEAD
qMz
imV
fuS
plS
+=======
+hNq
+qpo
+qpo
+kSG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pHD
qMz
hjM
@@ -182504,7 +262130,11 @@ nxM
nxM
nxM
nxM
+<<<<<<< HEAD
mPO
+=======
+aRn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hjM
rgE
rgE
@@ -182707,6 +262337,7 @@ xMq
xMq
xMq
qMT
+<<<<<<< HEAD
dEc
ygy
nfK
@@ -182726,6 +262357,27 @@ ktq
exw
phl
ubi
+=======
+vVl
+umM
+cXI
+oJo
+iQY
+dHi
+pSq
+oHR
+iZC
+exw
+rEq
+dFi
+cRC
+jbq
+wNj
+xTN
+exw
+wzH
+grp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psb
iDt
iDt
@@ -182735,7 +262387,11 @@ scw
btU
btU
btU
+<<<<<<< HEAD
qbG
+=======
+aoP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ako
hjM
hjM
@@ -182747,10 +262403,17 @@ hjM
hCC
iXP
pHD
+<<<<<<< HEAD
woC
eXH
eXH
ida
+=======
+bSi
+eXH
+eXH
+qYF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pHD
qMz
hjM
@@ -182951,7 +262614,11 @@ tjo
tjo
tjo
tjo
+<<<<<<< HEAD
luR
+=======
+riW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
tjo
thA
@@ -182964,6 +262631,7 @@ xMq
xMq
xMq
qMT
+<<<<<<< HEAD
izU
nYN
iDK
@@ -182993,6 +262661,37 @@ btU
kCR
btU
ocp
+=======
+dOp
+wFJ
+xQj
+wFJ
+kuq
+dHi
+wgK
+jSa
+fZH
+iGQ
+gnJ
+amz
+hOG
+hOG
+sIl
+qPc
+exw
+wzH
+nYz
+psb
+iDt
+iDt
+ppY
+iDt
+gFX
+btU
+vfZ
+btU
+mSX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dYr
nxM
dTm
@@ -183020,7 +262719,11 @@ nxM
nxM
nJd
hjM
+<<<<<<< HEAD
qII
+=======
+iYd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tVA
oiO
rgE
@@ -183208,7 +262911,11 @@ tjo
tjo
tjo
tjo
+<<<<<<< HEAD
nlA
+=======
+vne
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
tjo
thA
@@ -183222,6 +262929,7 @@ qMT
qMT
qMT
qMT
+<<<<<<< HEAD
kJG
eeY
ipg
@@ -183239,6 +262947,25 @@ kPh
dZL
exw
phl
+=======
+hZb
+vKR
+gVV
+dnn
+lom
+phz
+cps
+fMC
+iGQ
+gnJ
+qFO
+hOG
+hOG
+oMj
+wVd
+exw
+wzH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fuH
psb
iDt
@@ -183246,11 +262973,19 @@ iDt
iDt
iDt
btU
+<<<<<<< HEAD
btU
sGf
lca
uTf
dYr
+=======
+gCV
+gcU
+svx
+tNw
+mdy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxM
nxM
nxM
@@ -183258,9 +262993,15 @@ hjM
hjM
hjM
hjM
+<<<<<<< HEAD
dsT
vaZ
ubI
+=======
+oEy
+vaZ
+bQx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hOk
hjM
hjM
@@ -183278,7 +263019,11 @@ mco
upa
hjM
fjg
+<<<<<<< HEAD
bif
+=======
+rxx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nCD
rgE
rgE
@@ -183476,6 +263221,7 @@ thA
thA
xMq
qMT
+<<<<<<< HEAD
jFY
wVI
aVJ
@@ -183496,15 +263242,44 @@ aIA
hfY
exw
phl
+=======
+hmF
+mIs
+aZU
+hMZ
+gVB
+axw
+lom
+xqt
+wgK
+fkD
+toi
+exw
+vfH
+sRu
+iWj
+pVD
+bsW
+dad
+exw
+wzH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fuH
psb
iDt
iDt
iDt
+<<<<<<< HEAD
jCM
btU
idr
qSe
+=======
+aDl
+btU
+gMd
+mxZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aIU
umC
kJm
@@ -183543,7 +263318,11 @@ phS
kpG
uAi
qST
+<<<<<<< HEAD
iRP
+=======
+ngb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrE
lKt
rgE
@@ -183733,6 +263512,7 @@ thA
thA
xMq
qMT
+<<<<<<< HEAD
jkN
qeW
quJ
@@ -183766,6 +263546,41 @@ wqi
tBY
efz
sAI
+=======
+flK
+gTa
+idI
+gxg
+pSq
+kmo
+hWl
+kmo
+jUi
+ibJ
+jre
+jre
+jre
+pTi
+pWJ
+ofR
+eUm
+exw
+exw
+pmA
+psb
+psb
+mUt
+mUt
+mUt
+dbB
+btU
+sry
+dMl
+pTy
+bwp
+shR
+eGs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hjM
hjM
hjM
@@ -183788,7 +263603,11 @@ scw
ilN
vIZ
nxM
+<<<<<<< HEAD
bPk
+=======
+iXK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kmM
sYU
iio
@@ -183979,7 +263798,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
pOl
+=======
+evh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tjo
tjo
tjo
@@ -183990,6 +263813,7 @@ thA
thA
xMq
qMT
+<<<<<<< HEAD
bcf
vEC
lvv
@@ -184020,6 +263844,38 @@ btU
btU
btU
gPj
+=======
+eGB
+wUB
+nof
+gIs
+pbF
+tdc
+sHa
+ccL
+eLB
+jre
+jre
+jDV
+jre
+jre
+jre
+tRP
+jre
+jre
+fuH
+wzH
+grp
+psb
+oQc
+gaA
+gaA
+gaA
+btU
+btU
+btU
+idU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
btU
btU
ako
@@ -184234,9 +264090,15 @@ iDt
tjo
iDt
iDt
+<<<<<<< HEAD
pOl
iDt
edM
+=======
+evh
+iDt
+sNF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tjo
tjo
tjo
@@ -184248,6 +264110,7 @@ thA
xMq
jre
jre
+<<<<<<< HEAD
dvZ
jre
jre
@@ -184279,6 +264142,39 @@ nyQ
meL
efo
hJC
+=======
+rXw
+jre
+jre
+piT
+eJX
+ePj
+ppH
+jre
+jre
+oXE
+jWb
+fCA
+fCA
+iaB
+owK
+hph
+jre
+adS
+wzH
+dfR
+psb
+iUr
+exu
+gaA
+ygA
+btU
+ntm
+nyQ
+meL
+pgg
+hAU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ako
hWV
iiR
@@ -184485,7 +264381,11 @@ tjo
tjo
tjo
tjo
+<<<<<<< HEAD
pOl
+=======
+evh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
tjo
tjo
@@ -184505,6 +264405,7 @@ thA
xMq
xMq
jre
+<<<<<<< HEAD
uBD
lcm
jre
@@ -184536,16 +264437,56 @@ cWJ
dYX
pps
aRQ
+=======
+kyV
+thP
+jre
+jre
+weT
+weT
+jre
+jre
+oXE
+pfE
+pBv
+moX
+oXE
+xEV
+xZS
+jre
+jre
+oDb
+wzH
+awE
+psb
+xcf
+uKc
+exu
+gaA
+ioK
+waH
+kmq
+ebO
+jgW
+mCx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ako
rjr
xQT
xQT
qmU
xDb
+<<<<<<< HEAD
jEf
qnt
pGS
dIZ
+=======
+oGO
+qnt
+pGS
+ixa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aRr
xDb
xMq
@@ -184762,6 +264703,7 @@ thA
xMq
xMq
jre
+<<<<<<< HEAD
sJu
fWE
tjs
@@ -184774,10 +264716,25 @@ vHe
dZC
jre
vBt
+=======
+tKJ
+kya
+tjs
+jIB
+jIB
+fCA
+fCA
+ehh
+jPL
+oPC
+jre
+nRE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
jre
jre
jre
+<<<<<<< HEAD
drw
drw
bpa
@@ -184793,6 +264750,23 @@ aCl
tHe
tHe
xRF
+=======
+dom
+dom
+rJc
+psb
+psb
+qZZ
+uKc
+jww
+gaA
+ioK
+wYH
+jZt
+hHz
+hHz
+hHz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ako
hSF
hSF
@@ -184832,7 +264806,11 @@ foW
ljL
ljL
agY
+<<<<<<< HEAD
bnG
+=======
+lub
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lub
wbk
ccg
@@ -185007,7 +264985,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
pOl
+=======
+evh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tjo
tjo
tjo
@@ -185019,6 +265001,7 @@ xMq
xMq
xMq
jre
+<<<<<<< HEAD
nIY
jwf
cdO
@@ -185050,17 +265033,58 @@ nHc
nHc
ofm
okf
+=======
+eXc
+rfQ
+gLY
+sHt
+hzU
+usm
+tYu
+isq
+jMr
+jre
+jre
+nVJ
+xOc
+eyP
+rtw
+rOx
+fwB
+dom
+dXr
+psb
+lTl
+uKc
+wcn
+gaA
+gaA
+ioK
+aOe
+pRs
+pRs
+jcr
+nPs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ako
xDb
xDb
xDb
+<<<<<<< HEAD
rHr
+=======
+jyJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mrU
rQw
xEb
eVZ
jTg
+<<<<<<< HEAD
fpp
+=======
+csu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xDb
xDb
iDt
@@ -185077,9 +265101,15 @@ lyX
iTB
imH
nxM
+<<<<<<< HEAD
mTX
hjM
qUe
+=======
+aXP
+hjM
+qJi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ljL
fFn
vmu
@@ -185278,7 +265308,11 @@ jre
jre
jre
jre
+<<<<<<< HEAD
iRS
+=======
+uTu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
jre
jre
@@ -185286,6 +265320,7 @@ jre
jre
jre
jre
+<<<<<<< HEAD
bvc
rXB
udR
@@ -185309,6 +265344,31 @@ jnY
eQU
ako
xuQ
+=======
+lOA
+ceQ
+rRT
+yfs
+sTl
+sTl
+yfs
+gTr
+jgC
+psb
+qZZ
+uKc
+wcn
+grL
+oQc
+ioK
+waH
+lSX
+bFA
+fTi
+bWv
+ako
+vJl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qXO
pGS
bhw
@@ -185322,7 +265382,11 @@ ffQ
xDb
clI
iDt
+<<<<<<< HEAD
pco
+=======
+tJl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
xMq
xMq
@@ -185532,6 +265596,7 @@ xMq
xMq
jre
jre
+<<<<<<< HEAD
uye
ohk
aAk
@@ -185545,11 +265610,27 @@ ssm
fpt
mQk
qKw
+=======
+hDL
+qZG
+vmW
+nNe
+tgj
+mnA
+jre
+tVF
+kUo
+iKd
+ees
+mQk
+sdF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mQk
fwB
fwB
fwB
fwB
+<<<<<<< HEAD
drw
qEh
psb
@@ -185566,6 +265647,24 @@ wav
pWi
uHV
cqv
+=======
+dom
+lPs
+psb
+lTl
+uKc
+wcn
+btU
+vtu
+btU
+ale
+rrR
+tzR
+qfy
+aCw
+uHV
+cKL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gZb
xwu
cAr
@@ -185579,8 +265678,13 @@ hoM
xDb
xMq
iDt
+<<<<<<< HEAD
mJZ
frt
+=======
+aKb
+gnX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
xMq
@@ -185788,6 +265892,7 @@ thA
xMq
xMq
jre
+<<<<<<< HEAD
iDB
mPQ
wSs
@@ -185823,6 +265928,43 @@ btU
btU
ako
goJ
+=======
+kFc
+kqg
+wSs
+wfP
+uQv
+qhb
+oXE
+jre
+sRz
+tec
+vcD
+jBB
+mQk
+jUb
+mQk
+mQk
+fwB
+nNg
+fwB
+dom
+aWu
+psb
+psb
+qZZ
+wcn
+ioK
+pKl
+btU
+dVj
+gra
+lHV
+btU
+btU
+ako
+uCM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jeI
pGS
cDb
@@ -185831,7 +265973,11 @@ drR
oQY
oQY
soA
+<<<<<<< HEAD
pNy
+=======
+dvK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nid
xDb
xMq
@@ -185849,8 +265995,13 @@ sqW
gjq
nxM
ueD
+<<<<<<< HEAD
aUD
eJf
+=======
+nxM
+qOx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
upH
fTG
hkp
@@ -185868,7 +266019,11 @@ bWK
bWK
neu
hjR
+<<<<<<< HEAD
vNM
+=======
+uEf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -186045,6 +266200,7 @@ thA
xMq
xMq
jre
+<<<<<<< HEAD
wEq
ezd
nla
@@ -186080,6 +266236,43 @@ btU
kKa
ako
wlF
+=======
+aMU
+xzk
+oXE
+dYH
+rlB
+jMO
+oXE
+jre
+tAT
+btq
+nRn
+mQk
+mQk
+iBi
+mQk
+mbM
+oje
+gYq
+fwB
+dom
+fSB
+rXP
+psb
+xcf
+jww
+btU
+jUs
+btU
+ewT
+akN
+uii
+lOt
+oJv
+ako
+acl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lYR
pGS
cDb
@@ -186098,8 +266291,13 @@ iDt
iDt
scw
iDt
+<<<<<<< HEAD
gqG
eJf
+=======
+psb
+pFv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
eJf
eJf
@@ -186293,7 +266491,11 @@ tjo
tjo
tjo
iDt
+<<<<<<< HEAD
pOl
+=======
+evh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
thA
@@ -186302,6 +266504,7 @@ thA
xMq
xMq
jre
+<<<<<<< HEAD
mMI
cBJ
nla
@@ -186332,6 +266535,38 @@ gCG
cge
dDq
cLf
+=======
+kGD
+eIR
+oXE
+cqw
+nNe
+hWR
+iis
+jre
+dLA
+pnw
+biu
+xZv
+mQk
+fja
+prX
+eud
+kww
+qPE
+fwB
+dom
+gKE
+nYz
+psb
+jww
+oQc
+btU
+qYW
+dBX
+lln
+jfF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUB
jUB
jUB
@@ -186339,7 +266574,11 @@ xDb
xDb
xDb
xDb
+<<<<<<< HEAD
jCA
+=======
+gff
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nLe
nQd
oeT
@@ -186364,9 +266603,15 @@ myZ
myZ
myZ
myZ
+<<<<<<< HEAD
gdg
kpC
eMU
+=======
+wvF
+kpC
+cmY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vgM
syn
fDe
@@ -186560,6 +266805,7 @@ xMq
xMq
jre
jre
+<<<<<<< HEAD
xnf
rdq
aAk
@@ -186573,10 +266819,26 @@ jre
jre
jre
twS
+=======
+jVp
+qhi
+vmW
+nNe
+hts
+hQv
+jre
+jre
+oqE
+jre
+jre
+jre
+gWi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
jre
jre
jre
+<<<<<<< HEAD
drw
drw
xxo
@@ -186596,11 +266858,36 @@ vMf
tdL
xDb
qxv
+=======
+dom
+dom
+fSB
+fuH
+psb
+mUt
+mUt
+btU
+eqH
+bCN
+axj
+fJA
+jUB
+aVM
+vgW
+qHA
+bWM
+xDb
+uFF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
osr
wiD
dRz
pwn
+<<<<<<< HEAD
pwn
+=======
+dUR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pwn
jUB
cuJ
@@ -186624,9 +266911,15 @@ eJf
eJf
upH
uuw
+<<<<<<< HEAD
jDi
nzT
eGl
+=======
+boc
+eOB
+bpw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lVw
dDy
nOS
@@ -186641,7 +266934,11 @@ rbY
ffe
alM
alM
+<<<<<<< HEAD
sbZ
+=======
+wtM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
iDt
thA
@@ -186820,6 +267117,7 @@ jre
jre
jre
jre
+<<<<<<< HEAD
udf
jre
jre
@@ -186837,11 +267135,31 @@ jre
jre
jre
kFF
+=======
+sXa
+jre
+jre
+jre
+nzU
+aWj
+wSs
+oXE
+fOS
+pWE
+oXE
+wSs
+tpc
+jre
+jre
+jre
+sGG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
jre
fuH
fuH
btU
+<<<<<<< HEAD
mkN
meW
xFG
@@ -186851,6 +267169,17 @@ srM
skU
rHI
non
+=======
+uUs
+cQV
+ijv
+hPD
+jUB
+gIh
+jjM
+pfz
+wyX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nMc
sfy
uCe
@@ -186869,8 +267198,13 @@ thA
thA
thA
thA
+<<<<<<< HEAD
gqG
eJf
+=======
+psb
+pFv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJf
eJf
eJf
@@ -186878,12 +267212,21 @@ eJf
myZ
eJf
eJf
+<<<<<<< HEAD
buW
kpC
kDb
nqX
qoZ
sIA
+=======
+eJf
+kpC
+gWn
+vZo
+wxl
+lOa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lVw
jPu
ffe
@@ -186895,10 +267238,17 @@ ffe
ffe
ffe
ffe
+<<<<<<< HEAD
heH
gNh
alM
noQ
+=======
+ffe
+oxO
+alM
+vZM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
iDt
thA
@@ -187076,6 +267426,7 @@ xMq
xMq
xMq
jre
+<<<<<<< HEAD
igu
kvT
pZO
@@ -187093,12 +267444,32 @@ cpO
jre
gVs
hGg
+=======
+gAM
+rOL
+edR
+nsQ
+nsQ
+ljq
+jre
+weT
+jre
+exQ
+jre
+dQN
+jre
+meX
+jre
+jwv
+sBd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wSs
vTp
jre
fuH
fuH
btU
+<<<<<<< HEAD
iWN
cRN
jFA
@@ -187108,6 +267479,17 @@ ksH
yaJ
uOq
vXD
+=======
+hvt
+luR
+mlT
+lqZ
+jUB
+vyq
+aow
+kkF
+vLY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xDb
qSN
atl
@@ -187128,11 +267510,16 @@ thA
thA
thA
thA
+<<<<<<< HEAD
nfG
+=======
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gjq
gjq
alM
gbL
+<<<<<<< HEAD
wJD
eJf
eJf
@@ -187141,6 +267528,16 @@ awL
jes
qdx
sIA
+=======
+alM
+qOx
+eJf
+kpC
+awL
+xqw
+xZy
+lOa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rtt
dgZ
ffe
@@ -187152,10 +267549,17 @@ oxO
alM
fWO
alM
+<<<<<<< HEAD
jrk
oxO
alM
iCD
+=======
+aUT
+oxO
+alM
+ouU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
alM
alM
@@ -187334,6 +267738,7 @@ xMq
xMq
jre
jre
+<<<<<<< HEAD
kUW
jre
eet
@@ -187348,6 +267753,22 @@ jhu
jre
mza
awF
+=======
+bTE
+jre
+tDS
+dQN
+vwD
+jre
+rYT
+biE
+olR
+jre
+jsO
+jre
+xGL
+lVU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wSs
wSs
wSs
@@ -187356,6 +267777,7 @@ jre
fuH
fuH
btU
+<<<<<<< HEAD
vrr
rcU
gEX
@@ -187363,6 +267785,15 @@ eML
xDb
jUB
aVU
+=======
+mCd
+hkQ
+cZk
+tHJ
+xDb
+jUB
+dgt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUB
xDb
xDb
@@ -187371,7 +267802,11 @@ qWD
oQY
nvX
jUB
+<<<<<<< HEAD
rOH
+=======
+pkz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lPC
vpX
xDb
@@ -187392,12 +267827,21 @@ wCo
oxO
wCo
eJf
+<<<<<<< HEAD
nfG
upH
cYi
qqh
naX
sIA
+=======
+ppY
+upH
+cYi
+ngo
+naX
+ulm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rtt
rgB
ffe
@@ -187591,6 +268035,7 @@ xMq
xMq
xMq
jre
+<<<<<<< HEAD
uiv
jre
jre
@@ -187600,20 +268045,38 @@ vpJ
gOd
oTx
hIE
+=======
+uIh
+jre
+jre
+jre
+uVr
+sHe
+frF
+oTx
+fQe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
vFg
jre
jre
jre
+<<<<<<< HEAD
vyN
jre
kUW
+=======
+xth
+jre
+bTE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
jre
fuH
fuH
btU
btU
+<<<<<<< HEAD
btU
btU
btU
@@ -187623,6 +268086,17 @@ aqp
wbe
jUB
jGN
+=======
+xUf
+xUf
+btU
+xDb
+ybC
+aqp
+wbe
+jUB
+gSl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gHN
qWD
uDF
@@ -187848,6 +268322,7 @@ thA
xMq
xMq
jre
+<<<<<<< HEAD
dla
jre
xMq
@@ -187865,6 +268340,25 @@ jre
jre
jre
uiv
+=======
+sjd
+jre
+xMq
+jre
+oiC
+jre
+lvF
+wFt
+lvF
+jre
+htg
+djH
+pIh
+jre
+jre
+jre
+cXG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
xMq
xMq
@@ -187875,10 +268369,17 @@ thA
thA
thA
xDb
+<<<<<<< HEAD
xtR
ukz
gPR
bwe
+=======
+lfA
+ukz
+gPR
+tFY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cxQ
vJB
wgI
@@ -187903,7 +268404,11 @@ xMq
xMq
xMq
alM
+<<<<<<< HEAD
xFU
+=======
+ciU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
apB
ffe
@@ -188104,7 +268609,11 @@ thA
iDt
rcY
scw
+<<<<<<< HEAD
uNG
+=======
+ayL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aIB
tiY
xMq
@@ -188121,7 +268630,11 @@ hMw
jre
xMq
jre
+<<<<<<< HEAD
dla
+=======
+sjd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jre
iDt
thA
@@ -188132,11 +268645,19 @@ thA
thA
thA
xDb
+<<<<<<< HEAD
pPD
tIu
toG
jUB
kax
+=======
+fBy
+tIu
+toG
+jUB
+aov
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
anK
nrC
xDb
@@ -188146,7 +268667,11 @@ ffe
ffe
ffe
dOC
+<<<<<<< HEAD
dFD
+=======
+nIb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
alM
alM
@@ -188360,7 +268885,11 @@ iDt
iDt
iDt
rcY
+<<<<<<< HEAD
luR
+=======
+riW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
scw
iDt
@@ -188380,7 +268909,11 @@ xMq
tiY
aIB
dhH
+<<<<<<< HEAD
grg
+=======
+xvE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
thA
thA
@@ -188397,7 +268930,11 @@ xDb
hjV
ezu
xDb
+<<<<<<< HEAD
slx
+=======
+sEN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ffe
oxO
dcd
@@ -188416,12 +268953,20 @@ alM
alM
alM
alM
+<<<<<<< HEAD
mLo
+=======
+yhn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eEY
oxO
dcd
ffe
+<<<<<<< HEAD
wRO
+=======
+tBq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ffe
ffe
ffe
@@ -188616,8 +269161,13 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
tHF
scw
+=======
+kLd
+nLB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
scw
iDt
@@ -188650,10 +269200,17 @@ xMq
xMq
xMq
xMq
+<<<<<<< HEAD
ozM
nKl
cgR
tBW
+=======
+fWw
+nKl
+cgR
+sWO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vRY
ffe
oxO
@@ -188669,7 +269226,11 @@ oxO
oxO
iry
jQi
+<<<<<<< HEAD
oxO
+=======
+jVa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oxO
oxO
oxO
@@ -188679,7 +269240,11 @@ rUS
tRd
tRd
nPI
+<<<<<<< HEAD
wjy
+=======
+nPI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nPI
nPI
nPI
@@ -188881,9 +269446,15 @@ scw
iDt
cCb
syw
+<<<<<<< HEAD
kNC
kNC
gIl
+=======
+pJm
+pJm
+pCG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
thA
thA
@@ -188927,7 +269498,11 @@ nsp
oxO
oxO
oxO
+<<<<<<< HEAD
kOO
+=======
+oxO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oxO
oxO
oxO
@@ -189396,7 +269971,11 @@ iDt
iDt
iDt
iDt
+<<<<<<< HEAD
pOl
+=======
+evh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -189431,12 +270010,21 @@ xMq
alM
oxO
ffe
+<<<<<<< HEAD
qvN
qvN
qvN
biI
qvN
qvN
+=======
+qCu
+qCu
+qCu
+oED
+qCu
+qCu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
eGN
lZX
@@ -189688,17 +270276,27 @@ xMq
alM
oxO
ffe
+<<<<<<< HEAD
qvN
qvN
qvN
uUn
qvN
qvN
+=======
+qCu
+qCu
+qCu
+pUX
+qCu
+qCu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
vfe
tsa
wHb
qLY
+<<<<<<< HEAD
abe
wFN
abe
@@ -189716,6 +270314,25 @@ abe
abe
rnQ
nPI
+=======
+eea
+wFN
+abe
+nFz
+wFN
+abe
+nFz
+abe
+abe
+nFz
+abe
+abe
+nFz
+abe
+abe
+rnQ
+quW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
alM
thA
@@ -189905,9 +270522,15 @@ rcY
iDt
scw
iDt
+<<<<<<< HEAD
jmo
keA
vQz
+=======
+xkW
+keA
+lPl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
scw
@@ -189921,9 +270544,15 @@ thA
thA
thA
psb
+<<<<<<< HEAD
sRp
gUQ
sRp
+=======
+jkX
+gUQ
+jkX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psb
thA
thA
@@ -189940,17 +270569,30 @@ xMq
xMq
xMq
psb
+<<<<<<< HEAD
iDt
+=======
+clI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
alM
oxO
ffe
+<<<<<<< HEAD
viR
qvN
qvN
bOT
qvN
qvN
+=======
+sbP
+qCu
+qCu
+eZA
+qCu
+qCu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
tkP
fPv
@@ -190163,7 +270805,11 @@ iDt
iDt
iDt
tBs
+<<<<<<< HEAD
dGZ
+=======
+vcf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tBs
iDt
iDt
@@ -190204,6 +270850,7 @@ nsp
ffe
qLY
qLY
+<<<<<<< HEAD
uHS
ujp
qvN
@@ -190214,22 +270861,46 @@ oXr
wpv
qLY
lMu
+=======
+xJn
+kuT
+qCu
+qLY
+qLY
+qLY
+oXr
+fma
+qLY
+dRX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bUK
oQo
nmj
ucl
aHz
+<<<<<<< HEAD
dIS
+=======
+puw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gBb
dJx
htp
eWh
yjA
+<<<<<<< HEAD
tOf
vPD
lqU
mDg
nPI
+=======
+obF
+vPD
+lqU
+ffe
+xvU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
alM
thA
@@ -190423,6 +271094,7 @@ vRz
wMj
vRz
iDt
+<<<<<<< HEAD
wkV
tej
kNC
@@ -190432,6 +271104,17 @@ tej
kNC
tej
cNh
+=======
+mxK
+jTf
+fOH
+pJm
+pJm
+pJm
+fOH
+pJm
+xvp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -190467,7 +271150,11 @@ cZT
cZT
pXj
qLY
+<<<<<<< HEAD
wZv
+=======
+hRQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
axD
qLY
hEW
@@ -190677,7 +271364,11 @@ tBs
tBs
tBs
tBs
+<<<<<<< HEAD
rHR
+=======
+rQh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tBs
tBs
tBs
@@ -190688,7 +271379,11 @@ rbZ
rbZ
pgo
iDt
+<<<<<<< HEAD
hNF
+=======
+aDG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -190716,7 +271411,11 @@ iDt
alM
jCr
ffe
+<<<<<<< HEAD
nAf
+=======
+fMZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pMF
mqe
hRC
@@ -190724,6 +271423,7 @@ euM
pMF
sfv
xyn
+<<<<<<< HEAD
dmj
wPd
lVt
@@ -190742,6 +271442,26 @@ pfJ
jrc
pMF
mbb
+=======
+oYD
+wPd
+lVt
+yfa
+pMF
+fZA
+mqL
+pMF
+bWU
+gvf
+mBP
+vrw
+mmG
+pMF
+hoa
+pXq
+pMF
+mEW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rkl
nPI
oxO
@@ -190929,7 +271649,11 @@ xMq
tBs
pwv
sAu
+<<<<<<< HEAD
rqn
+=======
+dGS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tBs
nHQ
oik
@@ -190945,8 +271669,13 @@ tuk
ebB
efM
pgo
+<<<<<<< HEAD
rcY
rSQ
+=======
+jai
+rsG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
iDt
@@ -190980,7 +271709,11 @@ dtU
niy
gtF
ouP
+<<<<<<< HEAD
gLS
+=======
+qLY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cyh
cXX
bKI
@@ -191195,7 +271928,11 @@ baR
kAn
kMN
tBs
+<<<<<<< HEAD
mFR
+=======
+ebB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ebB
ebB
uXk
@@ -191243,21 +271980,35 @@ bjn
qbq
iar
xqu
+<<<<<<< HEAD
oir
+=======
+dmV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
slp
fjt
wgr
xur
reT
+<<<<<<< HEAD
rxM
+=======
+dTC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aLA
bnh
cNI
tWd
hJi
+<<<<<<< HEAD
wGN
mDg
pQG
+=======
+oOh
+ffe
+gzJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tRd
alM
thA
@@ -191459,12 +272210,21 @@ efM
uXk
efM
awy
+<<<<<<< HEAD
rcY
iDt
iDt
svz
keA
ddv
+=======
+jai
+wkB
+iDt
+var
+keA
+sys
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDt
iDt
iDt
@@ -191487,12 +272247,21 @@ iDt
alM
oxO
ffe
+<<<<<<< HEAD
oqd
vHq
aZk
xNa
pMF
rdl
+=======
+jiB
+vHq
+aZk
+iwQ
+pMF
+cBv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iQM
qLY
abe
@@ -191716,19 +272485,32 @@ yav
ebB
awy
iDt
+<<<<<<< HEAD
qau
iDt
xMq
wrX
efN
xCj
+=======
+rcY
+iDt
+xMq
+wrX
+kpg
+wrX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
thA
thA
iDt
scw
iDt
+<<<<<<< HEAD
vYN
+=======
+wzi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMq
iDt
iDt
@@ -191747,6 +272529,7 @@ ffe
hfL
vHq
obZ
+<<<<<<< HEAD
dIA
rSu
qLY
@@ -191772,6 +272555,33 @@ abe
abe
pjr
tRd
+=======
+icK
+bnr
+qLY
+qLY
+qLY
+eea
+abe
+gLj
+eea
+wFN
+gLj
+eea
+abe
+gLj
+eea
+abe
+gLj
+eea
+abe
+gLj
+eea
+abe
+abe
+pjr
+iTC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iWM
alM
thA
@@ -191977,7 +272787,11 @@ wrX
xMq
xMq
wrX
+<<<<<<< HEAD
qCJ
+=======
+csJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
xMq
xMq
@@ -192002,10 +272816,17 @@ alM
oxO
ffe
ffe
+<<<<<<< HEAD
iwx
ffe
ffe
xwd
+=======
+mZI
+ffe
+ffe
+pVj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
vgf
qLY
@@ -192234,7 +273055,11 @@ wrX
wrX
wrX
wrX
+<<<<<<< HEAD
pSP
+=======
+vIm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
wrX
xMq
@@ -192258,7 +273083,11 @@ alM
wOH
oxO
oxO
+<<<<<<< HEAD
ggS
+=======
+oxO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nyJ
nSK
ffe
@@ -192471,8 +273300,13 @@ thA
tBs
tix
tBs
+<<<<<<< HEAD
wgu
dlB
+=======
+aCJ
+pyn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jCL
qEJ
qEJ
@@ -192480,16 +273314,27 @@ djD
qEJ
qEJ
qEJ
+<<<<<<< HEAD
tJi
+=======
+kyf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wBA
oTA
rpK
oTA
epB
+<<<<<<< HEAD
oTA
wrX
wrX
seN
+=======
+uFt
+wrX
+wrX
+wBs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nBe
tiV
mjQ
@@ -192734,6 +273579,7 @@ quB
jmR
vrC
hbR
+<<<<<<< HEAD
gNJ
qEJ
eog
@@ -192748,6 +273594,22 @@ cMj
xNE
lnw
pwC
+=======
+whg
+gQO
+mPJ
+puF
+exn
+hDf
+qeR
+bAF
+nJy
+rkz
+hrY
+hrY
+fLx
+qgv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wGv
huJ
wrX
@@ -192762,17 +273624,30 @@ thA
thA
xMq
xMq
+<<<<<<< HEAD
kNC
kNC
ebX
iDt
iDt
nfG
+=======
+pJm
+pJm
+tSj
+iDt
+iDt
+ppY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
alM
alM
alM
+<<<<<<< HEAD
aDe
+=======
+moy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tNJ
tNJ
nyJ
@@ -192982,7 +273857,11 @@ thA
thA
tBs
liS
+<<<<<<< HEAD
pxg
+=======
+saR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fdN
tBs
deP
@@ -192991,6 +273870,7 @@ pQw
cBP
wAv
fjH
+<<<<<<< HEAD
dNB
gQO
mPJ
@@ -193004,6 +273884,21 @@ tSy
uJt
uJt
hxI
+=======
+oqN
+cWE
+kWO
+txf
+oTA
+sab
+qYh
+sab
+pcB
+qtd
+uJt
+uJt
+efy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iAQ
bkq
uTX
@@ -193021,16 +273916,27 @@ xMq
iDt
iDt
iDt
+<<<<<<< HEAD
qZG
ebX
+=======
+gsd
+xvp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scw
iDt
lRI
eNh
oxO
+<<<<<<< HEAD
bEh
vAx
jXl
+=======
+uwR
+vAx
+oxO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oxO
pvh
oLa
@@ -193239,28 +274145,47 @@ thA
xMq
tBs
suA
+<<<<<<< HEAD
roq
+=======
+iWA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rHZ
tBs
dit
bDH
rYt
+<<<<<<< HEAD
rrf
+=======
+nBS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wAv
jvs
qEJ
qEJ
+<<<<<<< HEAD
oxN
+=======
+vnW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mHJ
oTA
oTA
syh
oTA
lqj
+<<<<<<< HEAD
oTA
uJt
uJt
rcD
+=======
+erV
+uJt
+uJt
+iJV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
smC
oTM
wrX
@@ -193276,6 +274201,7 @@ xMq
xMq
iDt
iDt
+<<<<<<< HEAD
xte
iDt
iDt
@@ -193284,10 +274210,21 @@ iDt
nfG
alM
bXf
+=======
+rkp
+iDt
+iDt
+qpH
+iDt
+ppY
+alM
+dQl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ffe
ffe
ffe
ffe
+<<<<<<< HEAD
ylQ
ffe
iry
@@ -193298,6 +274235,18 @@ cma
qUL
oxO
iry
+=======
+pQl
+ffe
+iry
+jXl
+oxO
+iKG
+iry
+qUL
+cma
+sGL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alM
alM
alM
@@ -193519,7 +274468,11 @@ uJt
uJt
uJt
smC
+<<<<<<< HEAD
gyf
+=======
+dIG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
xMq
xMq
@@ -193533,6 +274486,7 @@ xMq
lvt
lvt
lvt
+<<<<<<< HEAD
kdJ
iDt
iDt
@@ -193546,6 +274500,21 @@ eLU
wAk
lPz
rOz
+=======
+rlq
+iDt
+iDt
+uwT
+uwT
+uwT
+uwT
+uwT
+uwT
+loO
+gaF
+qkg
+wQx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ffe
ffe
ffe
@@ -193758,10 +274727,17 @@ mku
tBs
tBs
tBs
+<<<<<<< HEAD
fCw
wrX
hzd
sdk
+=======
+vch
+wrX
+aMA
+nbG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aIe
wBA
uJq
@@ -193790,6 +274766,7 @@ xMq
lvt
lvt
lvt
+<<<<<<< HEAD
kdJ
lvt
wnp
@@ -193803,6 +274780,21 @@ oQV
xvx
rOz
xvx
+=======
+rlq
+lvt
+uwT
+uwT
+qMk
+crW
+uwT
+kgw
+tjf
+raQ
+qTf
+wQx
+qTf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kAH
mHu
kwM
@@ -193811,7 +274803,11 @@ qRO
fgx
cAB
wQi
+<<<<<<< HEAD
wQi
+=======
+qlf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uIf
thA
thA
@@ -194017,10 +275013,17 @@ tWc
tBs
kCx
wrX
+<<<<<<< HEAD
umF
kmn
aIe
lHB
+=======
+aMA
+nbG
+aIe
+lmT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dzy
ewC
iLt
@@ -194047,6 +275050,7 @@ lvt
lvt
lvt
lvt
+<<<<<<< HEAD
mRp
qbz
wnp
@@ -194060,15 +275064,38 @@ tLy
jih
gYO
toP
+=======
+rjb
+efR
+uwT
+dWL
+fbA
+lct
+oGj
+rWm
+jWq
+lvR
+ddm
+qvx
+aZJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kAH
mHu
jlj
tUo
+<<<<<<< HEAD
aQn
hFb
vqv
wQi
wQi
+=======
+cvj
+hFb
+vqv
+wQi
+tEs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uIf
thA
thA
@@ -194274,21 +275301,36 @@ pmn
tBs
tBs
tBs
+<<<<<<< HEAD
hrK
icv
wrX
wrX
fIn
+=======
+wrX
+wrX
+wrX
+wrX
+wyL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jcP
oTA
oTA
epB
oTA
uko
+<<<<<<< HEAD
oTA
uJt
uJt
rcD
+=======
+mEI
+uJt
+uJt
+tWJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oTA
wQC
wrX
@@ -194303,6 +275345,7 @@ rcY
lvt
lvt
lvt
+<<<<<<< HEAD
nNV
ege
iPK
@@ -194322,6 +275365,27 @@ laa
qKt
tUo
aQn
+=======
+jyy
+oyM
+lGb
+uwT
+hkS
+waz
+jRt
+rWm
+rWm
+uwT
+qTf
+wiX
+qTf
+qTf
+uIf
+pHW
+qKt
+tUo
+cvj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hFb
vqv
qiN
@@ -194531,21 +275595,36 @@ wMj
lpL
wMj
tBs
+<<<<<<< HEAD
lry
oTA
hlS
wrX
uDC
+=======
+etH
+etH
+rBJ
+wrX
+wIC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wBA
oTA
bAF
irQ
bAF
bYm
+<<<<<<< HEAD
bMe
uJt
uJt
oTA
+=======
+rlt
+uJt
+uJt
+bap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oTA
tIw
wrX
@@ -194560,6 +275639,7 @@ rcY
lvt
lvt
lvt
+<<<<<<< HEAD
ekN
nce
qcl
@@ -194579,6 +275659,27 @@ mWj
aNu
tPG
xEQ
+=======
+opE
+ssj
+sDB
+sDB
+sDB
+rWm
+cZf
+rWm
+tKY
+uIf
+uIf
+uIf
+uIf
+uIf
+uIf
+mWj
+aNu
+tPG
+baN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qaL
vqv
brt
@@ -194788,21 +275889,36 @@ tBs
aVi
vGJ
tBs
+<<<<<<< HEAD
etH
etH
eyU
wrX
uJI
+=======
+cMG
+etH
+oTA
+lBN
+qOu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xBt
iih
sab
nMP
sab
qYh
+<<<<<<< HEAD
oTA
avo
tTw
qfj
+=======
+rkz
+peX
+peX
+bEn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vnj
wrX
wrX
@@ -194817,6 +275933,7 @@ rcY
lvt
lvt
lvt
+<<<<<<< HEAD
mnB
tTK
rSZ
@@ -194835,11 +275952,35 @@ iWs
mxc
qRO
rEj
+=======
+ctm
+iln
+xPs
+rWm
+kZe
+rWm
+tkX
+eLs
+xNR
+hqH
+vAS
+igM
+ssH
+xyI
+oRH
+wzU
+qRO
+wuh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qRO
mEL
vqv
fkN
+<<<<<<< HEAD
fkN
+=======
+gge
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uIf
thA
thA
@@ -195047,7 +276188,11 @@ aOz
tBs
cPq
etH
+<<<<<<< HEAD
etH
+=======
+qUf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
wrX
ffp
@@ -195056,11 +276201,19 @@ oTA
syh
oTA
syh
+<<<<<<< HEAD
oTA
wrX
wrX
hfm
orU
+=======
+hAE
+wrX
+wrX
+dgA
+mKh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
xMq
xMq
@@ -195075,6 +276228,7 @@ lvt
lvt
lvt
lvt
+<<<<<<< HEAD
asG
qcl
qcl
@@ -195093,6 +276247,26 @@ jGR
hFb
mzb
rEj
+=======
+kWk
+sDB
+sDB
+sDB
+nPo
+rCs
+kwn
+teQ
+uIf
+qsa
+pOL
+pOL
+pOL
+gOA
+mBY
+hFb
+mzb
+wuh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rRl
vqv
wZV
@@ -195303,7 +276477,11 @@ goB
goB
tBs
wrX
+<<<<<<< HEAD
wrX
+=======
+ipg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
wrX
wrX
@@ -195327,6 +276505,7 @@ thA
thA
tjo
tjo
+<<<<<<< HEAD
qZG
ebX
lvt
@@ -195347,6 +276526,28 @@ pOL
pOL
opD
jGR
+=======
+gsd
+hxJ
+lvt
+lvt
+lvt
+rlq
+lvt
+lvt
+uwT
+uwT
+bvw
+oDw
+gyO
+uIf
+xmM
+bWH
+bWH
+bWH
+kdg
+xeF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hFb
hFb
qRO
@@ -195560,15 +276761,25 @@ lvt
lvt
lvt
lvt
+<<<<<<< HEAD
lvt
+=======
+scw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lvt
wrX
wrX
wrX
wrX
+<<<<<<< HEAD
daj
wrX
crg
+=======
+nfS
+wrX
+eoS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
wrX
wrX
@@ -195585,6 +276796,7 @@ thA
tjo
tjo
tjo
+<<<<<<< HEAD
qZG
kNC
ebX
@@ -195604,13 +276816,38 @@ odm
odm
nqy
jGR
+=======
+syw
+wWw
+hxJ
+lvt
+rlq
+lvt
+lvt
+lvt
+uwT
+sDB
+sDB
+uwT
+uIf
+rNK
+oPt
+oPt
+oPt
+tcX
+xeF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qRO
qRO
qRO
rRl
ndb
bnZ
+<<<<<<< HEAD
ulE
+=======
+eSq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uIf
thA
thA
@@ -195823,9 +277060,15 @@ lvt
xMq
xMq
wrX
+<<<<<<< HEAD
vle
bWp
nJZ
+=======
+wee
+bWp
+mCP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
xMq
xMq
@@ -195844,6 +277087,7 @@ tjo
tjo
tjo
tjo
+<<<<<<< HEAD
qZG
kNC
nmy
@@ -195865,6 +277109,29 @@ gcy
jJG
jJG
plX
+=======
+gsd
+pJm
+dUm
+pJm
+wWw
+pJm
+gsd
+iDt
+ctC
+pJm
+opP
+opP
+opP
+opP
+lpy
+lpy
+tqJ
+bpY
+vfj
+vfj
+kJF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qZN
akk
qZN
@@ -196110,6 +277377,7 @@ thA
thA
thA
rcY
+<<<<<<< HEAD
iDt
fCS
iwq
@@ -196118,6 +277386,16 @@ iCe
lgP
iCe
vcH
+=======
+lvt
+vEc
+taC
+duY
+vgK
+rGf
+vgK
+oBq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gnq
xEF
qSk
@@ -196366,6 +277644,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
rcY
iDt
fCS
@@ -196374,6 +277653,16 @@ bqX
rmG
ryX
sqH
+=======
+kLd
+lLA
+vEc
+oPu
+uTx
+ejN
+xVB
+nMv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qSk
sbd
rEh
@@ -196623,6 +277912,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
rcY
iDt
fCS
@@ -196632,6 +277922,17 @@ wKh
aEK
wKh
odf
+=======
+aDG
+lvt
+vEc
+taC
+sGT
+qNt
+dwj
+qNt
+uVf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sbd
jaY
rhY
@@ -196881,7 +278182,11 @@ thA
thA
thA
syw
+<<<<<<< HEAD
kNC
+=======
+pJm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bgx
bgx
bgx
@@ -197137,6 +278442,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
vzD
vzD
vzD
@@ -197147,6 +278453,18 @@ rEU
oHo
gOq
bBb
+=======
+iDt
+iDt
+vzD
+uAJ
+vzD
+eYY
+aUu
+oHo
+eVw
+rEU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzD
thA
thA
@@ -197395,6 +278713,7 @@ thA
thA
thA
vzD
+<<<<<<< HEAD
yap
qXY
jCl
@@ -197404,6 +278723,17 @@ jCl
jCl
jCl
iVY
+=======
+vzD
+vzD
+jCl
+mAn
+beu
+uZc
+vzD
+vzD
+vzD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzD
thA
thA
@@ -197652,6 +278982,7 @@ thA
thA
thA
vzD
+<<<<<<< HEAD
yap
jCl
bFq
@@ -197661,6 +278992,17 @@ xEt
jCl
jCl
iVY
+=======
+xLv
+gvr
+uZc
+vzD
+rEU
+uZc
+axu
+rRN
+xLv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzD
thA
thA
@@ -197909,6 +279251,7 @@ thA
thA
thA
vzD
+<<<<<<< HEAD
vzD
vzD
vzD
@@ -197918,6 +279261,17 @@ vzD
vzD
vzD
vzD
+=======
+jCl
+fXQ
+vzD
+vzD
+fXX
+vzD
+vzD
+rRN
+jCl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzD
thA
thA
@@ -198165,6 +279519,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
thA
thA
thA
@@ -198176,6 +279531,19 @@ thA
thA
thA
thA
+=======
+vzD
+puL
+phA
+vzD
+kfS
+xYg
+ibj
+vzD
+nQL
+eYx
+vzD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -198422,6 +279790,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
thA
thA
thA
@@ -198433,6 +279802,19 @@ thA
thA
thA
thA
+=======
+vzD
+nSU
+ovB
+vzD
+kfS
+hMA
+iFw
+vzD
+bhI
+uZc
+vzD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -198679,6 +280061,7 @@ thA
thA
thA
thA
+<<<<<<< HEAD
thA
thA
thA
@@ -198690,6 +280073,19 @@ thA
thA
thA
thA
+=======
+vzD
+vzD
+vzD
+vzD
+vzD
+vzD
+vzD
+vzD
+vzD
+vzD
+vzD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thA
thA
thA
@@ -218597,7 +299993,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
aaX
+=======
+qzn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vbG
hHG
hHG
@@ -218854,7 +300254,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
fhB
+=======
+liV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vbG
hHG
hHG
@@ -219113,8 +300517,13 @@ wNO
bln
bln
bln
+<<<<<<< HEAD
xDQ
xDQ
+=======
+wDS
+wDS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -219199,11 +300608,19 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
gnZ
bln
hcw
lSu
gnZ
+=======
+oEB
+bln
+hcw
+lSu
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -219215,11 +300632,19 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
gnZ
lSu
weW
bln
gnZ
+=======
+oEB
+lSu
+weW
+bln
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -219370,8 +300795,13 @@ wNO
bln
bln
bln
+<<<<<<< HEAD
rPp
rPp
+=======
+dTI
+dTI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -219713,11 +301143,19 @@ wNO
bln
bln
lSu
+<<<<<<< HEAD
eqn
sEB
sEB
sEB
sjU
+=======
+bln
+sEB
+sEB
+sEB
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
lSu
bln
@@ -219729,11 +301167,19 @@ lSu
bln
lSu
bln
+<<<<<<< HEAD
eqn
sEB
sEB
sEB
sjU
+=======
+bln
+sEB
+sEB
+sEB
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
mQb
bln
@@ -220233,7 +301679,11 @@ tqR
sEB
fUR
lSu
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jNZ
sEB
sEB
@@ -220241,7 +301691,11 @@ sEB
sEB
sEB
rzO
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lSu
fUR
sEB
@@ -220740,7 +302194,11 @@ bln
uer
bln
bln
+<<<<<<< HEAD
umb
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
mXT
cJt
@@ -220756,14 +302214,22 @@ sEB
sEB
qVo
lSu
+<<<<<<< HEAD
umb
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
mXT
cJt
iMu
fUR
oqJ
+<<<<<<< HEAD
iWb
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lSu
lSu
bln
@@ -220771,7 +302237,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -220783,7 +302253,11 @@ aBR
aBR
aBR
aBR
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aBR
aBR
aBR
@@ -221012,7 +302486,11 @@ sEB
sEB
sEB
sEB
+<<<<<<< HEAD
ntx
+=======
+rhJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lSu
fUR
fUR
@@ -221034,7 +302512,11 @@ bln
bln
bln
lSu
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aBR
aBR
aBR
@@ -221252,6 +302734,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
gnZ
lSu
fBN
@@ -221259,6 +302742,15 @@ fUR
irX
kyg
rwW
+=======
+oEB
+lSu
+xOk
+fUR
+kod
+kyg
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -221272,15 +302764,25 @@ sEB
uhx
uhx
uhx
+<<<<<<< HEAD
rwW
jHX
fJd
+=======
+uhx
+jHX
+tLm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
lSu
fUR
kod
gFL
+<<<<<<< HEAD
rwW
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -221508,7 +303010,11 @@ bln
lBD
bln
lSu
+<<<<<<< HEAD
hjU
+=======
+jNZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKU
kKU
rzO
@@ -221772,7 +303278,11 @@ fUR
fUR
ykb
wOy
+<<<<<<< HEAD
fHb
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -221786,7 +303296,11 @@ sEB
uhx
uhx
uhx
+<<<<<<< HEAD
fHb
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bzg
otG
uhx
@@ -221794,7 +303308,11 @@ lSu
uhx
ykb
wOy
+<<<<<<< HEAD
fHb
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -222023,16 +303541,26 @@ bln
bln
miY
fUR
+<<<<<<< HEAD
fNy
xAk
txd
+=======
+eYK
+xAk
+xaf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
uRx
jdY
rsw
rin
uhx
+<<<<<<< HEAD
caX
+=======
+rcS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sEB
sEB
sEB
@@ -222042,7 +303570,11 @@ sEB
sEB
oMa
uhx
+<<<<<<< HEAD
tbR
+=======
+pgt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dcG
jXm
otG
@@ -222054,7 +303586,11 @@ jdY
rsw
phu
uhx
+<<<<<<< HEAD
dsg
+=======
+jls
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
lSu
bln
@@ -222535,10 +304071,17 @@ bln
bln
fsm
bln
+<<<<<<< HEAD
tIc
fUR
fUR
mXH
+=======
+miY
+fUR
+fUR
+kVA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wWS
mVE
nDJ
@@ -222582,7 +304125,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aBR
aBR
aBR
@@ -222803,7 +304350,11 @@ fld
ycA
lpH
uhx
+<<<<<<< HEAD
oJH
+=======
+vCm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sEB
sEB
sEB
@@ -222813,7 +304364,11 @@ sEB
sEB
fiv
uhx
+<<<<<<< HEAD
jDS
+=======
+sjz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lKc
uMm
dvO
@@ -222825,7 +304380,11 @@ fld
ycA
lpH
uhx
+<<<<<<< HEAD
hgx
+=======
+pSK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
lSu
bln
@@ -223049,15 +304608,26 @@ bln
bln
bln
bln
+<<<<<<< HEAD
hWW
ydI
ydI
qKJ
+=======
+miY
+ydI
+ydI
+nWM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kHl
mVE
nDJ
wOy
+<<<<<<< HEAD
rwW
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -223071,7 +304641,11 @@ sEB
uhx
uhx
uhx
+<<<<<<< HEAD
fHb
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bzg
dvO
uhx
@@ -223079,7 +304653,11 @@ lSu
uhx
ovm
wOy
+<<<<<<< HEAD
fHb
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -223301,9 +304879,15 @@ bln
bln
lBD
bln
+<<<<<<< HEAD
bln
bln
hjU
+=======
+lSu
+bln
+jNZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKU
kKU
sEB
@@ -223565,13 +305149,21 @@ hEI
hEI
biY
biY
+<<<<<<< HEAD
kCY
+=======
+rkk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bLs
xRI
ydI
ior
wOy
+<<<<<<< HEAD
fHb
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -223585,7 +305177,11 @@ sEB
uhx
uhx
uhx
+<<<<<<< HEAD
rwW
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bzg
oVX
fUR
@@ -223593,7 +305189,11 @@ lSu
fUR
tvm
wOy
+<<<<<<< HEAD
rwW
+=======
+uhx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhx
uhx
uhx
@@ -223814,11 +305414,19 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
stJ
bln
lJO
cyV
+=======
+lSu
+stJ
+bln
+lJO
+dxI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
muv
qVN
biY
@@ -223839,8 +305447,13 @@ prs
sEB
sEB
sEB
+<<<<<<< HEAD
pJb
waT
+=======
+fiv
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
fUR
bAo
@@ -224075,17 +305688,28 @@ bln
bln
lJO
lJO
+<<<<<<< HEAD
jEB
+=======
+ldJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nOx
cwe
dIx
laB
laB
lJO
+<<<<<<< HEAD
iku
nDJ
wOy
jBK
+=======
+lXA
+nDJ
+wOy
+pGy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
rzO
lSu
@@ -224112,19 +305736,31 @@ fUR
bln
uer
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lSu
bln
bln
bln
lSu
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aBR
aBR
aBR
@@ -224367,7 +306003,11 @@ wOy
eyk
fUR
bln
+<<<<<<< HEAD
iWb
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -224589,14 +306229,21 @@ uer
bln
lJO
kQg
+<<<<<<< HEAD
ylt
ylV
gfY
+=======
+ofc
+ylV
+gjI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
lJO
lJO
lJO
fUR
+<<<<<<< HEAD
nmA
oor
fUR
@@ -224604,16 +306251,30 @@ fUR
fUR
shT
kHq
+=======
+lzU
+wwi
+fUR
+fUR
+fUR
+wUf
+iQd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oOP
ccS
ccS
ccS
lVY
+<<<<<<< HEAD
oHY
+=======
+hHl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xuW
fUR
fUR
fUR
+<<<<<<< HEAD
gjN
nuM
fUR
@@ -224621,11 +306282,24 @@ fUR
fUR
lSF
tku
+=======
+ePV
+eHX
+fUR
+fUR
+fUR
+drb
+tuD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
fUR
fUR
fUR
+<<<<<<< HEAD
stJ
+=======
+rNn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -224841,7 +306515,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
lJO
@@ -224853,24 +306531,39 @@ lJO
fjF
qhO
lJO
+<<<<<<< HEAD
lIT
qpt
fBQ
tHB
+=======
+iVv
+qpt
+fBQ
+syL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vmC
syL
dwb
fsv
cuc
hgr
+<<<<<<< HEAD
qsh
+=======
+fbF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hgr
xFs
fsv
cmV
bXx
aui
+<<<<<<< HEAD
qTj
+=======
+bXx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
btW
jJd
eyj
@@ -224878,9 +306571,15 @@ lGL
bXx
oMq
tEc
+<<<<<<< HEAD
uUu
sEg
iVi
+=======
+iGd
+mKJ
+vKD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
tKI
tKI
@@ -225110,11 +306809,19 @@ ndz
hjI
xmo
vmx
+<<<<<<< HEAD
uBL
nvI
nvI
oTc
cQa
+=======
+eTe
+nvI
+nvI
+oTc
+nvI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nvI
fwM
fsv
@@ -225126,17 +306833,29 @@ xFs
fsv
dpU
swK
+<<<<<<< HEAD
iCw
+=======
+swK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ubx
swK
swK
swK
wfF
+<<<<<<< HEAD
rUv
nqD
thX
peM
iES
+=======
+swK
+nqD
+thX
+peM
+ddd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mKa
ldw
bCQ
@@ -225385,12 +307104,21 @@ jLM
fUR
fUR
fUR
+<<<<<<< HEAD
koQ
koQ
fUR
fUR
fUR
krW
+=======
+ort
+ort
+fUR
+fUR
+fUR
+mYA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nEA
nwT
nwT
@@ -225399,7 +307127,11 @@ nwT
tKI
pgE
tKI
+<<<<<<< HEAD
iWb
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lBD
bln
mQb
@@ -225443,11 +307175,19 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+wNO
+wNO
+wNO
+wNO
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -225612,8 +307352,13 @@ bln
bln
stJ
bln
+<<<<<<< HEAD
bln
bln
+=======
+lSu
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cyH
hjI
nbj
@@ -225650,14 +307395,24 @@ fUR
teE
bKA
nwT
+<<<<<<< HEAD
hAo
tzM
vgj
+=======
+wvJ
+tzM
+aUM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
bCQ
tKI
tKI
+<<<<<<< HEAD
bln
+=======
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mQb
bln
bln
@@ -225704,7 +307459,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -225869,7 +307628,11 @@ lBD
bln
bln
uer
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
lJO
lJO
@@ -225947,12 +307710,21 @@ aBR
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
bln
+=======
+mQb
+bln
+bln
+bln
+lSu
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -226147,7 +307919,11 @@ rMu
kHP
cuc
mVE
+<<<<<<< HEAD
nAH
+=======
+ich
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nAH
nAH
mVE
@@ -226155,13 +307931,21 @@ xFs
jLM
qHO
fUR
+<<<<<<< HEAD
juu
+=======
+nyT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kBU
xgX
juu
gNL
fUR
+<<<<<<< HEAD
qAB
+=======
+usU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cTh
iJl
ooa
@@ -226202,6 +307986,7 @@ aBR
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -226213,6 +307998,19 @@ tCr
tCr
bln
bln
+=======
+mQb
+bln
+mQb
+bln
+hAM
+lej
+eRE
+qQk
+tTO
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -226367,6 +308165,20 @@ bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
@@ -226376,13 +308188,14 @@ bln
bln
bln
bln
+=======
+mQb
+mQb
bln
bln
bln
-bln
-bln
-bln
-bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
lJO
cKB
@@ -226460,6 +308273,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -226472,6 +308286,20 @@ bln
bln
bln
bln
+=======
+mQb
+uer
+bln
+bvb
+tMa
+bln
+bln
+bvb
+tMa
+uer
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -226620,6 +308448,7 @@ ozo
bln
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
@@ -226641,6 +308470,29 @@ uer
bln
bln
bln
+=======
+hPv
+kdS
+kdS
+eRE
+wvw
+kdS
+kdS
+eRE
+kdS
+kdS
+kdS
+eRE
+qQk
+kdS
+kdS
+kdS
+kdS
+kdS
+eRE
+gSd
+kdS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
gwM
xdU
@@ -226669,11 +308521,19 @@ xFs
jLM
iYy
tma
+<<<<<<< HEAD
agG
mxQ
pXU
pSd
jsh
+=======
+juu
+mxQ
+pXU
+kSA
+vUI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUR
tkc
nsr
@@ -226715,6 +308575,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -226730,6 +308591,23 @@ bln
bln
bln
bln
+=======
+mQb
+mQb
+bln
+bln
+lSu
+chn
+bln
+cnx
+bln
+chn
+bln
+bln
+lSu
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -226876,8 +308754,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
tCr
+=======
+mQb
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -226886,20 +308769,34 @@ bln
bln
bln
muK
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
hty
bln
+<<<<<<< HEAD
tCr
bln
bln
+=======
+mQb
+bln
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mQb
bln
bln
bln
lJO
+<<<<<<< HEAD
keT
+=======
+eXa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sHO
hjI
lJO
@@ -226918,7 +308815,11 @@ lvW
uTI
cuc
mVE
+<<<<<<< HEAD
nAH
+=======
+ich
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nAH
nAH
mVE
@@ -226935,14 +308836,22 @@ nwT
goI
nwT
nwT
+<<<<<<< HEAD
aLO
+=======
+fZK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wRM
iox
tKI
bCQ
tKI
tKI
+<<<<<<< HEAD
bln
+=======
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
stJ
fsm
bln
@@ -226970,6 +308879,7 @@ aBR
aBR
bln
bln
+<<<<<<< HEAD
bln
tCr
tCr
@@ -226988,6 +308898,26 @@ tCr
mVm
tCr
tCr
+=======
+mQb
+hAM
+lej
+ujK
+vTh
+ujK
+ujK
+obe
+bln
+tmR
+mQb
+obe
+ujK
+lej
+vTh
+qQk
+ujK
+hAM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -227133,8 +309063,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
tCr
+=======
+mQb
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -227143,16 +309078,28 @@ bln
uei
tmR
uei
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
bln
+<<<<<<< HEAD
tCr
bln
bln
bln
bln
+=======
+mQb
+bln
+bln
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mQb
bln
lJO
@@ -227181,12 +309128,21 @@ mVE
mVE
xFs
pLn
+<<<<<<< HEAD
aDy
tKI
ljK
tXs
ljK
rUa
+=======
+dpl
+tKI
+wKu
+tXs
+ljK
+aRe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
hbt
cTD
@@ -227198,7 +309154,11 @@ tKI
tKI
kPq
tKI
+<<<<<<< HEAD
qjC
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -227228,23 +309188,38 @@ aBR
bln
bln
bln
+<<<<<<< HEAD
tCr
bln
bln
+=======
+vap
+bln
+ntK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
tmR
+<<<<<<< HEAD
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
tCr
+=======
+lSu
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -227389,10 +309364,21 @@ wNO
bln
bln
bln
+<<<<<<< HEAD
bln
bln
tCr
bln
+=======
+uer
+bln
+bvb
+tMa
+uei
+tmR
+uei
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -227401,12 +309387,17 @@ uei
tmR
uei
bln
+<<<<<<< HEAD
uei
tmR
uei
bln
bln
bln
+=======
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -227440,14 +309431,24 @@ aWN
pLn
qFs
tKI
+<<<<<<< HEAD
rvW
+=======
+mqa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xqj
vsT
gXr
tKI
+<<<<<<< HEAD
rVt
ihc
bod
+=======
+gec
+ihc
+sJI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
hsQ
bCQ
@@ -227485,8 +309486,13 @@ aBR
bln
bln
bln
+<<<<<<< HEAD
tCr
bln
+=======
+fPc
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xxB
xxB
xxB
@@ -227500,9 +309506,15 @@ xxB
xxB
xxB
xxB
+<<<<<<< HEAD
bln
tCr
bln
+=======
+lSu
+fPc
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -227645,6 +309657,7 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -227667,6 +309680,30 @@ bln
mQb
bln
bln
+=======
+mQb
+bln
+bln
+ebW
+mQb
+uei
+tmR
+uei
+bln
+uei
+tmR
+uei
+bln
+uei
+tmR
+uei
+bln
+lSu
+lSu
+mQb
+ntK
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uer
bln
mZm
@@ -227694,7 +309731,11 @@ npq
ecU
gkZ
tlO
+<<<<<<< HEAD
kyc
+=======
+udA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
tKI
kJO
@@ -227703,7 +309744,11 @@ kJO
tKI
tKI
stP
+<<<<<<< HEAD
dVX
+=======
+vwi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oLo
tKI
iUW
@@ -227742,8 +309787,13 @@ aBR
bln
bln
bln
+<<<<<<< HEAD
tCr
bln
+=======
+bvb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tmR
tmR
tmR
@@ -227758,7 +309808,11 @@ tmR
tmR
tmR
bln
+<<<<<<< HEAD
tCr
+=======
+bvb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -227905,7 +309959,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -227919,11 +309977,18 @@ uei
tmR
uei
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
sxQ
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
miY
@@ -227941,7 +310006,11 @@ esv
lCb
ddZ
eUA
+<<<<<<< HEAD
nhS
+=======
+aoc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oCO
oCO
oCO
@@ -227953,11 +310022,19 @@ tKI
tKI
tKI
tKI
+<<<<<<< HEAD
jXC
wBb
xvk
wBb
kQV
+=======
+hZo
+wBb
+xvk
+wBb
+uZC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
tKI
tKI
@@ -227969,6 +310046,7 @@ tKI
lSu
bln
bln
+<<<<<<< HEAD
gnZ
bln
bln
@@ -227978,6 +310056,17 @@ bln
bln
bln
gnZ
+=======
+oEB
+bln
+bln
+bln
+oEB
+bln
+bln
+bln
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -227997,9 +310086,15 @@ aBR
aBR
aBR
bln
+<<<<<<< HEAD
bln
bln
tCr
+=======
+mQb
+bln
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
xxB
xxB
@@ -228015,7 +310110,11 @@ xxB
xxB
xxB
bln
+<<<<<<< HEAD
tCr
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -228159,10 +310258,17 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
bln
+=======
+hAM
+kdS
+kdS
+obe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -228199,7 +310305,11 @@ eUi
eBB
tNd
nor
+<<<<<<< HEAD
qiT
+=======
+sst
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cgw
mZu
hjv
@@ -228210,13 +310320,21 @@ tKI
dat
kDv
tKI
+<<<<<<< HEAD
kEs
+=======
+jEE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wBb
fgo
aSI
nEq
tKI
+<<<<<<< HEAD
kCv
+=======
+ybY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gvp
nSr
tKI
@@ -228256,13 +310374,22 @@ aBR
bln
bln
bln
+<<<<<<< HEAD
tCr
bln
bln
+=======
+uap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sEB
bln
@@ -228272,8 +310399,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
mVm
bln
+=======
+fPc
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -228416,14 +310548,22 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
tCr
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
tmR
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
tmR
@@ -228435,8 +310575,13 @@ bln
vsI
eGr
eGr
+<<<<<<< HEAD
oLO
nhb
+=======
+eGr
+hNJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sxF
kjw
biY
@@ -228451,7 +310596,11 @@ bln
efI
efI
lJO
+<<<<<<< HEAD
jaS
+=======
+mLd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hBG
pEs
aFH
@@ -228478,7 +310627,11 @@ edN
jLf
tlm
jLf
+<<<<<<< HEAD
dpZ
+=======
+fsj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
htd
bln
@@ -228512,8 +310665,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
tCr
+=======
+lSu
+dzZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
xxB
xxB
@@ -228529,7 +310687,11 @@ xxB
xxB
xxB
bln
+<<<<<<< HEAD
tCr
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -228672,11 +310834,19 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
bln
tCr
bln
fbh
tZf
+=======
+mQb
+yfW
+tMa
+cnx
+tmR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tmR
sEB
sEB
@@ -228711,7 +310881,11 @@ lJO
wDf
sAR
sAR
+<<<<<<< HEAD
cBD
+=======
+lCn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kPy
dQI
pPT
@@ -228770,8 +310944,13 @@ bln
ozo
bln
bln
+<<<<<<< HEAD
tCr
bln
+=======
+bvb
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tmR
tmR
tmR
@@ -228786,8 +310965,13 @@ tmR
tmR
tmR
bln
+<<<<<<< HEAD
tCr
bln
+=======
+bvb
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -228929,6 +311113,7 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
bln
tCr
bln
@@ -228937,6 +311122,12 @@ bln
bln
bln
tmR
+=======
+mQb
+vap
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -228946,6 +311137,7 @@ bln
bln
tmR
bln
+<<<<<<< HEAD
sEB
eGr
eGr
@@ -228955,6 +311147,21 @@ bvd
eAh
aiT
hjI
+=======
+bln
+mQb
+tmR
+mQb
+sEB
+eGr
+eGr
+eGr
+pVN
+bvd
+eAh
+biY
+bhQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hjI
hjI
eUf
@@ -228967,9 +311174,15 @@ lJO
lJO
mCT
mut
+<<<<<<< HEAD
lGo
xhg
pGy
+=======
+kby
+oLm
+rbE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wCL
tTc
wtr
@@ -229005,7 +311218,11 @@ lSu
lSu
lSu
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -229026,9 +311243,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
tCr
muK
+=======
+mQb
+fPc
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xxB
xxB
xxB
@@ -229043,7 +311266,11 @@ xxB
xxB
xxB
bln
+<<<<<<< HEAD
tCr
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -229187,10 +311414,17 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
tCr
mVm
tCr
bln
+=======
+fYT
+kdS
+kdS
+hPv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -229238,7 +311472,11 @@ qnj
omg
hzL
kRc
+<<<<<<< HEAD
oWu
+=======
+lNV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
paZ
tOw
iKX
@@ -229282,9 +311520,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
mVm
+=======
+mQb
+mQb
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -229293,6 +311537,7 @@ bln
bln
bln
sEB
+<<<<<<< HEAD
bln
bln
bln
@@ -229302,6 +311547,17 @@ bln
bln
tCr
bln
+=======
+mQb
+bln
+bln
+bln
+mQb
+bln
+bln
+ebW
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -229447,8 +311703,17 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+fPc
+mQb
+uei
+tmR
+uei
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -229457,11 +311722,15 @@ uei
tmR
uei
bln
+<<<<<<< HEAD
uei
tmR
uei
bln
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
miY
@@ -229492,7 +311761,11 @@ gpp
lsi
xhx
qnj
+<<<<<<< HEAD
nct
+=======
+ddQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gAB
ykG
ykG
@@ -229506,7 +311779,11 @@ kEM
vkW
gak
tKI
+<<<<<<< HEAD
oKu
+=======
+dBJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
nMj
bln
@@ -229539,9 +311816,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
tCr
+=======
+mQb
+bln
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
xxB
xxB
@@ -229557,8 +311840,13 @@ xxB
xxB
xxB
bln
+<<<<<<< HEAD
tCr
bln
+=======
+chn
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -229701,11 +311989,19 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
bln
+=======
+mQb
+uer
+bln
+oHg
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -229718,7 +312014,11 @@ uei
tmR
uei
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
miY
@@ -229795,10 +312095,17 @@ bln
bln
uGo
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
+=======
+mQb
+mQb
+bln
+bvb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
tmR
tmR
@@ -229814,7 +312121,11 @@ tmR
tmR
tmR
bln
+<<<<<<< HEAD
tCr
+=======
+bvb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -229958,11 +312269,19 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
bln
+=======
+mQb
+mQb
+bln
+yfW
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -229975,7 +312294,11 @@ uei
tmR
uei
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
hEI
lJO
@@ -230006,7 +312329,11 @@ gpp
bAB
xEE
qnj
+<<<<<<< HEAD
hlW
+=======
+aOx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ykG
ykG
rCj
@@ -230025,6 +312352,7 @@ tKI
mZf
ooL
maT
+<<<<<<< HEAD
wSM
oMd
maT
@@ -230034,6 +312362,17 @@ maT
sEB
bln
gnZ
+=======
+nNZ
+oSK
+maT
+vEG
+rEr
+maT
+sEB
+bln
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -230052,10 +312391,17 @@ bln
bln
cWX
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
+=======
+mQb
+lSu
+bln
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
xxB
xxB
@@ -230071,7 +312417,11 @@ xxB
xxB
xxB
bln
+<<<<<<< HEAD
tCr
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -230215,10 +312565,17 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
+=======
+uer
+mQb
+lSu
+wOq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -230232,7 +312589,11 @@ uei
tmR
uei
bln
+<<<<<<< HEAD
tCr
+=======
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
khW
iSn
@@ -230282,11 +312643,19 @@ tKI
maT
maT
maT
+<<<<<<< HEAD
sym
bde
jIE
bde
ksf
+=======
+xmk
+bde
+kXr
+aRx
+kjd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
maT
miY
xeg
@@ -230311,12 +312680,21 @@ cWX
bln
bln
bln
+<<<<<<< HEAD
bln
tCr
bln
bln
bln
bln
+=======
+lSu
+pMM
+bln
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -230328,7 +312706,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -230472,10 +312854,18 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
+=======
+lSu
+bln
+bln
+vap
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -230489,7 +312879,10 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
gDZ
gDZ
@@ -230528,7 +312921,11 @@ neq
muy
muy
gRp
+<<<<<<< HEAD
sbv
+=======
+kjh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
plg
jdW
@@ -230539,16 +312936,28 @@ tKI
cYo
tEL
maT
+<<<<<<< HEAD
wSM
hFU
kXr
hFU
bNo
+=======
+nNZ
+jME
+kXr
+hTk
+rEr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
maT
mZf
kKU
kKU
+<<<<<<< HEAD
dPX
+=======
+vJv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -230566,6 +312975,7 @@ bln
bln
cWX
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -230575,10 +312985,22 @@ tCr
bln
bln
bln
+=======
+lSu
+bln
+mQb
+fPc
+mQb
+lSu
+lSu
+uer
+nAx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sEB
tmR
sEB
+<<<<<<< HEAD
bln
bln
bln
@@ -230586,6 +313008,15 @@ bln
tCr
tCr
tCr
+=======
+mQb
+cIf
+gSd
+ahG
+ujK
+ujK
+obe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -230732,6 +313163,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
@@ -230747,6 +313179,23 @@ tCr
tCr
tCr
tCr
+=======
+obe
+kdS
+kdS
+eRE
+xAs
+kdS
+kdS
+eRE
+wvw
+kdS
+qQk
+eRE
+kdS
+hBf
+kdS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
gLZ
cXp
@@ -230798,7 +313247,11 @@ kLZ
jPc
xKj
hyY
+<<<<<<< HEAD
pdR
+=======
+xDu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
huI
gbv
maT
@@ -230806,7 +313259,11 @@ kXr
maT
maT
kXr
+<<<<<<< HEAD
bln
+=======
+htd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -230823,6 +313280,7 @@ bln
bln
cWX
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -230831,13 +313289,28 @@ bln
bln
bln
bln
+=======
+lSu
+bln
+mQb
+fPc
+bln
+mQb
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
jlJ
jWl
jlJ
+<<<<<<< HEAD
bln
bln
+=======
+aMZ
+vap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -230987,18 +313460,31 @@ wNO
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
vbG
bln
+=======
+mQb
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231023,7 +313509,11 @@ lJO
qzs
jnV
lJO
+<<<<<<< HEAD
sHy
+=======
+tdY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gHS
iMT
hqx
@@ -231059,7 +313549,11 @@ kVl
czv
cCW
wyB
+<<<<<<< HEAD
gTb
+=======
+mSP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wyB
tEj
maT
@@ -231077,17 +313571,27 @@ bln
bln
bln
bln
+<<<<<<< HEAD
riT
uqG
bln
bln
bln
bln
+=======
+xYt
+atB
+bln
+bln
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
pRj
pRj
pRj
pRj
+<<<<<<< HEAD
pRj
bln
jlJ
@@ -231098,6 +313602,18 @@ bln
bln
bln
bln
+=======
+mNY
+bln
+jlJ
+hTq
+jlJ
+bln
+chn
+bln
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231246,20 +313762,34 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
vbG
+=======
+lSu
+lSu
+bln
+bln
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
uer
bln
mQb
bln
+<<<<<<< HEAD
bln
stJ
bln
+=======
+ntK
+stJ
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231318,8 +313848,13 @@ huI
huI
huI
uqg
+<<<<<<< HEAD
ndK
kXr
+=======
+pUi
+maT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231336,6 +313871,7 @@ ptf
pRj
pRj
uqG
+<<<<<<< HEAD
sEB
sEB
sEB
@@ -231354,6 +313890,26 @@ jlJ
bln
bln
bln
+=======
+kKU
+kKU
+rzO
+bln
+pRj
+emx
+kpn
+awt
+wAW
+mNY
+nxm
+jlJ
+rbb
+jlJ
+jlJ
+obe
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231499,15 +314055,26 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
ozo
bln
bln
+<<<<<<< HEAD
bln
bln
bln
vbG
+=======
+lSu
+mQb
+bln
+uap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
fsm
lBD
@@ -231517,7 +314084,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
lJO
@@ -231564,7 +314135,11 @@ hbY
tKI
tKI
tKI
+<<<<<<< HEAD
ghl
+=======
+kUF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ajw
ajw
otd
@@ -231575,8 +314150,13 @@ otd
otd
uqn
kLZ
+<<<<<<< HEAD
huI
maT
+=======
+jcJ
+kXr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231602,15 +314182,24 @@ rej
iaT
daS
swS
+<<<<<<< HEAD
cRX
+=======
+mNY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mNY
smj
smj
iCX
glh
bln
+<<<<<<< HEAD
bln
bln
+=======
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231756,6 +314345,7 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -231766,6 +314356,18 @@ bln
bln
vbG
bln
+=======
+mQb
+bln
+ntK
+bln
+lSu
+lSu
+mQb
+bln
+ebW
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -231805,7 +314407,11 @@ hMg
cke
kTC
qnj
+<<<<<<< HEAD
qwn
+=======
+dei
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wpC
vZg
gta
@@ -231839,7 +314445,11 @@ qjQ
qjQ
qjQ
qjQ
+<<<<<<< HEAD
rLo
+=======
+jDl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qjQ
bln
bln
@@ -231849,7 +314459,11 @@ qPw
csE
hRw
pRj
+<<<<<<< HEAD
vZW
+=======
+eDJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ptf
daS
ptf
@@ -231861,12 +314475,21 @@ mRU
qAI
snw
mNY
+<<<<<<< HEAD
kkp
ooU
ipE
glh
bln
bln
+=======
+qDS
+ooU
+ipE
+glh
+mQb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -232013,6 +314636,7 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -232027,6 +314651,22 @@ bln
bln
bln
bln
+=======
+uer
+bln
+bln
+lSu
+lSu
+bln
+uer
+bln
+fPc
+bln
+lSu
+bln
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
stJ
bln
bln
@@ -232047,7 +314687,11 @@ hEI
lJO
lJO
dDV
+<<<<<<< HEAD
sFN
+=======
+oaR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lJO
lJO
lJO
@@ -232104,26 +314748,44 @@ ptf
hZQ
cZN
ybu
+<<<<<<< HEAD
jYL
pRj
ycS
vGi
lDr
sup
+=======
+qrr
+pRj
+ycS
+pRj
+lDr
+pRj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ptf
pRj
kqK
dnM
swS
mXN
+<<<<<<< HEAD
vUz
+=======
+gDv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mNY
qIf
fFx
czR
glh
+<<<<<<< HEAD
bln
bln
+=======
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -232271,6 +314933,7 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -232279,11 +314942,25 @@ bln
bln
bln
vbG
+=======
+hMQ
+mQb
+bln
+bln
+bln
+hMQ
+bln
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
stJ
bln
+<<<<<<< HEAD
bln
+=======
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -232340,7 +315017,11 @@ ajw
mmi
wiz
mmi
+<<<<<<< HEAD
vmn
+=======
+sln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wam
wam
wam
@@ -232352,9 +315033,15 @@ ajw
tAS
hoD
hoD
+<<<<<<< HEAD
gAY
wjZ
sJn
+=======
+hoD
+wjZ
+get
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qjQ
bln
ptf
@@ -232363,6 +315050,7 @@ sUS
ybu
vUW
pRj
+<<<<<<< HEAD
nkI
daS
daS
@@ -232381,6 +315069,26 @@ mNY
glh
bln
bln
+=======
+mKA
+yiR
+daS
+iJh
+wRu
+pRj
+pRj
+kuR
+kCC
+lDh
+pRj
+mNY
+mNY
+pyI
+mNY
+glh
+mQb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -232528,6 +315236,7 @@ aBR
tGr
tGr
tGr
+<<<<<<< HEAD
mSQ
atc
atc
@@ -232537,6 +315246,17 @@ pLe
tGr
tCj
sDl
+=======
+umh
+jZo
+jZo
+jZo
+jZo
+umh
+tGr
+xAs
+jbe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -232563,14 +315283,22 @@ hEI
hjI
wPr
oSy
+<<<<<<< HEAD
sDl
+=======
+pLg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybQ
ybQ
ybQ
ybQ
ybQ
ybQ
+<<<<<<< HEAD
sDl
+=======
+vsF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jOt
ozw
eRw
@@ -232578,7 +315306,11 @@ gpp
gJz
nQv
nDY
+<<<<<<< HEAD
tEu
+=======
+tzP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tKI
wuA
nAr
@@ -232590,7 +315322,11 @@ nAr
nAr
wNR
tKI
+<<<<<<< HEAD
ssg
+=======
+jnp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ajw
ajw
ajw
@@ -232820,14 +315556,22 @@ hEI
hjI
wPr
oSy
+<<<<<<< HEAD
sSA
+=======
+sDl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybQ
gGZ
lye
ebL
edn
ybQ
+<<<<<<< HEAD
sDl
+=======
+sCK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jOt
ozw
aJA
@@ -232854,7 +315598,11 @@ vlN
ajw
wiz
ajw
+<<<<<<< HEAD
vmn
+=======
+nNu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wam
wam
wam
@@ -232877,7 +315625,11 @@ ace
ybu
thW
pRj
+<<<<<<< HEAD
uhX
+=======
+ntO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dnM
nzp
wEW
@@ -233083,22 +315835,36 @@ oPI
khR
khR
eRh
+<<<<<<< HEAD
uiM
+=======
+ybQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jOt
jOt
ozw
aJA
xSL
gJz
+<<<<<<< HEAD
uXy
+=======
+eUx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
imO
kGF
tKI
wBb
tKI
+<<<<<<< HEAD
skw
ipF
qpp
+=======
+xua
+llR
+fOs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dsf
xjF
xem
@@ -233125,12 +315891,20 @@ jAq
qxb
nrm
hoD
+<<<<<<< HEAD
rea
+=======
+qIP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qjQ
bln
pRj
vSE
+<<<<<<< HEAD
eGX
+=======
+mqI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qOl
ujj
pRj
@@ -233138,7 +315912,11 @@ dOH
hjH
qTS
dNC
+<<<<<<< HEAD
xBX
+=======
+iRJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
wls
qxY
@@ -233147,11 +315925,19 @@ cjL
gfC
pRj
daS
+<<<<<<< HEAD
viE
pRj
pRj
pRj
vsI
+=======
+mxg
+pRj
+pRj
+pRj
+oMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -233341,7 +316127,11 @@ bnz
jxq
sOz
vGI
+<<<<<<< HEAD
ptk
+=======
+oRZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lEE
idO
aJA
@@ -233351,9 +316141,15 @@ tKI
tKI
tKI
tKI
+<<<<<<< HEAD
qRR
tKI
aes
+=======
+blY
+tKI
+wrP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alT
taf
kGQ
@@ -233391,11 +316187,19 @@ kYF
jOJ
qzM
pRj
+<<<<<<< HEAD
dOH
uIx
osI
osI
hjH
+=======
+qFC
+uIx
+osI
+osI
+xbq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
nDy
hUI
@@ -233404,11 +316208,19 @@ nVR
iWZ
bse
xHe
+<<<<<<< HEAD
pBB
lPE
daS
nNr
sEB
+=======
+oBZ
+lPE
+daS
+nNr
+qVo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -233558,7 +316370,11 @@ tGr
bln
bln
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
tGr
tGr
@@ -233610,7 +316426,11 @@ pdf
pdf
wBb
tKI
+<<<<<<< HEAD
pPE
+=======
+aiQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alT
dcs
kin
@@ -233646,6 +316466,7 @@ pRj
csE
kSD
csE
+<<<<<<< HEAD
nOk
pRj
xOl
@@ -233653,6 +316474,15 @@ hjH
daS
pXv
kNZ
+=======
+uwd
+pRj
+poO
+hjH
+daS
+pXv
+kEC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
bxV
uKP
@@ -233661,11 +316491,19 @@ hUI
lLm
mLa
qSY
+<<<<<<< HEAD
pRj
pRj
pRj
pRj
vsI
+=======
+daS
+pRj
+igG
+pRj
+qVo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -233848,14 +316686,22 @@ hEI
hjI
xJJ
oSy
+<<<<<<< HEAD
sSA
+=======
+sDl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybQ
egF
jYV
jDW
hPf
ybQ
+<<<<<<< HEAD
sDl
+=======
+eaG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jOt
ozw
ons
@@ -233868,11 +316714,19 @@ tKI
wBb
bcx
qiK
+<<<<<<< HEAD
tda
lit
qiP
noF
dqV
+=======
+rrB
+lit
+qiP
+fgc
+obQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxD
rbC
kXr
@@ -233900,7 +316754,11 @@ qjQ
bln
bln
pRj
+<<<<<<< HEAD
rKQ
+=======
+wVr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
drs
pRj
pRj
@@ -233919,10 +316777,17 @@ pRj
pRj
wFg
pRj
+<<<<<<< HEAD
bln
bln
bln
bln
+=======
+pRj
+pRj
+pRj
+eHC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -234105,21 +316970,33 @@ hEI
hjI
wPr
oSy
+<<<<<<< HEAD
sDl
+=======
+pLg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybQ
ybQ
ybQ
ybQ
ybQ
ybQ
+<<<<<<< HEAD
sDl
+=======
+vsF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jOt
ozw
ons
gpp
lGz
pMv
+<<<<<<< HEAD
qaD
+=======
+bso
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dBB
tKI
wBb
@@ -234154,15 +317031,24 @@ qdC
jBf
dhY
qjQ
+<<<<<<< HEAD
sEB
sEB
+=======
+oot
+oot
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
daS
tut
qai
qoK
pXv
+<<<<<<< HEAD
exy
+=======
+pXv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pXv
pXv
pXv
@@ -234177,9 +317063,15 @@ ptf
xHe
ptf
bln
+<<<<<<< HEAD
bln
bln
bln
+=======
+uer
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -234389,7 +317281,11 @@ tKI
dMv
pdf
tKI
+<<<<<<< HEAD
drG
+=======
+iUM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ssc
cXl
wRx
@@ -234435,8 +317331,13 @@ xHe
ptf
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -234583,7 +317484,11 @@ tGr
miY
bln
bln
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mZf
bln
lSu
@@ -234617,7 +317522,11 @@ lJO
lJO
lJO
lJO
+<<<<<<< HEAD
mzy
+=======
+kcZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
biY
biY
sDl
@@ -234878,19 +317787,32 @@ sTj
hos
biY
sDl
+<<<<<<< HEAD
uqV
sDl
hDU
ksU
cFX
fHY
+=======
+sDl
+sDl
+hDU
+dAQ
+fVU
+iYe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hDU
gpp
aJA
gpp
fUr
pMv
+<<<<<<< HEAD
cOb
+=======
+eAQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pHy
tKI
tKI
@@ -234905,8 +317827,13 @@ rCC
gLN
rCC
eVl
+<<<<<<< HEAD
wBF
uDr
+=======
+rCC
+dXh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cHb
cHb
mOA
@@ -234939,7 +317866,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
sEB
+=======
+jNZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nME
bln
bln
@@ -235138,7 +318069,11 @@ hDU
hDU
hDU
hDU
+<<<<<<< HEAD
heG
+=======
+lyy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aJm
iFj
hDU
@@ -235182,8 +318117,13 @@ hoD
abz
qjQ
qjQ
+<<<<<<< HEAD
sEB
sEB
+=======
+oot
+oot
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
uWW
daS
@@ -235195,9 +318135,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
sEB
xbV
sEB
+=======
+jNZ
+xbV
+qVo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235207,7 +318153,11 @@ ptf
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235391,10 +318341,17 @@ hEI
qGU
biY
biY
+<<<<<<< HEAD
kqx
mQh
xKb
vMc
+=======
+mSY
+mQh
+xKb
+njD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMW
apI
tOi
@@ -235432,7 +318389,11 @@ nZh
lNG
tue
qjQ
+<<<<<<< HEAD
hxE
+=======
+jBf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nvx
lis
aud
@@ -235454,7 +318415,11 @@ bln
bln
fkF
cPp
+<<<<<<< HEAD
sEB
+=======
+rwt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235462,11 +318427,19 @@ ptf
xHe
ptf
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+ntK
+bln
+mQb
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235681,7 +318654,11 @@ vlL
qxQ
eBe
hnC
+<<<<<<< HEAD
qmi
+=======
+cah
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aSh
ycQ
nZh
@@ -235710,7 +318687,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
sEB
+=======
+lbc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235721,7 +318702,11 @@ ptf
bln
bln
bln
+<<<<<<< HEAD
sEB
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235743,8 +318728,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
tCr
+=======
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235921,7 +318911,11 @@ wvK
aKs
tgH
gst
+<<<<<<< HEAD
vSw
+=======
+iXM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vWW
vWW
vWW
@@ -235967,7 +318961,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
sEB
+=======
+tIC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -235989,6 +318987,7 @@ eoL
ptf
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
@@ -236003,6 +319002,22 @@ bln
bln
tCr
tCr
+=======
+mQb
+bln
+bln
+bln
+bln
+bln
+mQb
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -236155,7 +319170,11 @@ bln
bln
lJO
oXf
+<<<<<<< HEAD
rlX
+=======
+xSx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fdF
lJO
vqS
@@ -236178,15 +319197,24 @@ kFu
sJr
vBu
gst
+<<<<<<< HEAD
iFh
+=======
+sbY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xAy
xAy
tge
ozH
bZg
gst
+<<<<<<< HEAD
tZR
nsq
+=======
+hYG
+jYG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dOw
dOw
yhe
@@ -236246,11 +319274,18 @@ nkO
ptf
bln
bln
+<<<<<<< HEAD
tCr
+=======
+uer
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -236260,6 +319295,15 @@ bln
bln
bln
tCr
+=======
+uer
+bln
+bln
+mQb
+bln
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -236381,7 +319425,11 @@ tGr
tGr
bln
jNZ
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jNZ
bln
ntK
@@ -236411,7 +319459,11 @@ bln
bln
dvY
lJO
+<<<<<<< HEAD
eKX
+=======
+nLE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
erl
oDH
fVm
@@ -236419,10 +319471,17 @@ ndz
oIB
biY
biY
+<<<<<<< HEAD
hhN
iLi
oJT
spV
+=======
+gNC
+iLi
+oJT
+wwO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gad
gAk
tMI
@@ -236440,10 +319499,17 @@ sto
lpj
gst
gst
+<<<<<<< HEAD
oiK
bLW
xjP
sXf
+=======
+npP
+bLW
+xjP
+qcI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gxO
dKK
xmN
@@ -236460,7 +319526,11 @@ iOS
mYs
fxn
pRj
+<<<<<<< HEAD
kCn
+=======
+mgo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
daS
pRj
iaT
@@ -236497,12 +319567,17 @@ lDF
wSU
ovy
pRj
+<<<<<<< HEAD
bHZ
+=======
+qYR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qvk
tXb
ptf
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
@@ -236515,6 +319590,20 @@ tCr
bln
bln
bln
+=======
+bln
+bln
+mQb
+bln
+lSu
+bln
+mQb
+mQb
+bln
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -236684,9 +319773,15 @@ biY
biY
biY
biY
+<<<<<<< HEAD
wkC
lnE
wkC
+=======
+ede
+iKj
+bPp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bXm
lnc
lnc
@@ -236707,11 +319802,19 @@ wEh
rCC
sOn
aBh
+<<<<<<< HEAD
tNY
dqX
aBh
sOn
rzm
+=======
+eaE
+wkN
+aBh
+sOn
+sOn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tue
tue
tue
@@ -236748,7 +319851,11 @@ suR
pRj
pRj
ick
-pRj
+<<<<<<< HEAD
+pRj
+=======
+ivm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
pRj
mNY
@@ -236758,6 +319865,7 @@ mNY
mNY
mNY
mNY
+<<<<<<< HEAD
bln
bln
bln
@@ -236773,6 +319881,23 @@ bln
bln
bln
bln
+=======
+hPv
+lej
+hBf
+eRE
+ujK
+ujK
+eRE
+ujK
+ujK
+eRE
+ujK
+hPv
+bln
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -236918,6 +320043,7 @@ xAs
xAs
xAs
xAs
+<<<<<<< HEAD
tCj
wPN
wPN
@@ -236926,6 +320052,16 @@ aeV
lJO
lJO
vNK
+=======
+xAs
+hIv
+wPN
+wPN
+lJO
+lJO
+lJO
+otM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hDc
wGG
psR
@@ -236956,8 +320092,13 @@ bep
dnq
gOy
dnq
+<<<<<<< HEAD
sIg
pTB
+=======
+srw
+yld
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pTB
pTB
pTB
@@ -236968,8 +320109,13 @@ dnq
dyN
rGl
hJE
+<<<<<<< HEAD
kzC
wLU
+=======
+vYA
+hzV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rGl
vTo
oMO
@@ -236979,7 +320125,11 @@ ptd
obj
obj
obj
+<<<<<<< HEAD
iAt
+=======
+obj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
obj
obj
obj
@@ -237013,6 +320163,7 @@ gBv
tjH
aUK
gGs
+<<<<<<< HEAD
qAq
aUj
aUj
@@ -237031,6 +320182,26 @@ tCr
tCr
tCr
bln
+=======
+bbU
+aUj
+aUj
+nce
+mQb
+mQb
+bln
+lSu
+bln
+mQb
+mQb
+bln
+bln
+yfW
+fCR
+ujK
+ujK
+dMo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -237180,15 +320351,24 @@ sDl
sDl
sDl
hEI
+<<<<<<< HEAD
iwj
kEB
+=======
+sop
+bJX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fFb
rtq
lJO
lJO
lJO
lJO
+<<<<<<< HEAD
baE
+=======
+htJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
apX
hjI
hdh
@@ -237213,7 +320393,11 @@ cKq
cKq
qsy
iwz
+<<<<<<< HEAD
oTg
+=======
+dLQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iwz
xwC
jwt
@@ -237226,7 +320410,11 @@ rQn
iwz
iwz
iwz
+<<<<<<< HEAD
eYP
+=======
+uag
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iwz
nQO
bmv
@@ -237267,7 +320455,11 @@ mXa
qCl
mNY
aUj
+<<<<<<< HEAD
uNu
+=======
+vWy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kLc
oFY
sIN
@@ -237283,11 +320475,19 @@ pXY
vyU
uOE
bln
+<<<<<<< HEAD
bln
tCr
bln
tCr
bln
+=======
+chb
+bln
+ntK
+bln
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -237437,9 +320637,15 @@ sDl
sDl
sDl
hEI
+<<<<<<< HEAD
giR
rkd
rmU
+=======
+nFG
+sjp
+rqk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ure
lJO
bZx
@@ -237470,8 +320676,13 @@ xIS
mgj
mgj
mgj
+<<<<<<< HEAD
mZS
mgV
+=======
+srw
+jOy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ljp
gHe
sni
@@ -237479,11 +320690,19 @@ bep
qrJ
uLC
xzh
+<<<<<<< HEAD
dnq
qcu
bDR
wXW
mpy
+=======
+aNE
+qcu
+bDR
+wXW
+cYj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bep
ylU
dnq
@@ -237504,7 +320723,11 @@ pRj
rAO
fhW
mNY
+<<<<<<< HEAD
vjx
+=======
+anz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mDf
nLb
kNp
@@ -237521,8 +320744,13 @@ kCn
kCn
kCn
kCn
+<<<<<<< HEAD
xtX
azC
+=======
+ioQ
+jMn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pZG
toq
uDE
@@ -237530,7 +320758,11 @@ xFB
rkc
gxR
uaG
+<<<<<<< HEAD
kAK
+=======
+iLY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iLY
iLY
bxa
@@ -237540,12 +320772,21 @@ pXY
pXY
fcP
bln
+<<<<<<< HEAD
bln
tCr
bln
tCr
bln
bln
+=======
+chb
+bln
+mQb
+bln
+bvb
+jHb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ozo
bln
bln
@@ -237680,7 +320921,11 @@ ooL
tDg
tDg
oFI
+<<<<<<< HEAD
gnZ
+=======
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sgW
akQ
lSu
@@ -237699,15 +320944,26 @@ lJO
lJO
lJO
lJO
+<<<<<<< HEAD
wrN
bZx
bWn
huM
+=======
+bZx
+bZx
+bWn
+seL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nUr
ibk
xwr
xgg
+<<<<<<< HEAD
aFx
+=======
+xId
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
whQ
kka
fmm
@@ -237734,14 +320990,22 @@ gfb
pYB
gfb
gfb
+<<<<<<< HEAD
nqU
+=======
+vtg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rcE
rcE
rcE
hVc
jII
jII
+<<<<<<< HEAD
dnq
+=======
+rLl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ylU
dnq
jII
@@ -237752,7 +321016,11 @@ jqT
hcL
hcL
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -237793,6 +321061,7 @@ iLY
lqE
pXY
pXY
+<<<<<<< HEAD
vyU
vyU
uOE
@@ -237802,6 +321071,17 @@ tCr
bln
tCr
bln
+=======
+pXY
+pXY
+uOE
+bln
+chb
+bln
+uer
+bln
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -237940,10 +321220,17 @@ kyy
cJi
abb
oFI
+<<<<<<< HEAD
gnZ
abb
oFI
gnZ
+=======
+oEB
+abb
+oFI
+oEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
abb
oFI
rzG
@@ -237955,7 +321242,11 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
+=======
+mgs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kQi
oWk
bWn
@@ -237976,11 +321267,19 @@ pAZ
ucn
tLi
pAZ
+<<<<<<< HEAD
xyl
dnq
qjm
dxK
hbp
+=======
+tVd
+uLC
+jCT
+dxK
+xax
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oyp
phf
sEl
@@ -237991,9 +321290,15 @@ odN
iZq
dpH
gfb
+<<<<<<< HEAD
ydT
iIA
fSC
+=======
+mYG
+iIA
+fGQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iIA
cvg
qQb
@@ -238002,15 +321307,24 @@ okb
ylU
jwl
jII
+<<<<<<< HEAD
bln
+=======
+kps
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hcL
bXF
kcm
mGm
hcL
bln
+<<<<<<< HEAD
bln
bln
+=======
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
ptf
ptf
@@ -238026,12 +321340,20 @@ fxR
aQR
csT
csT
+<<<<<<< HEAD
cQH
+=======
+csT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mNY
kCn
mNY
dUn
+<<<<<<< HEAD
eEm
+=======
+thC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cpH
kbJ
kbJ
@@ -238042,14 +321364,21 @@ epY
vWe
kIt
kMY
+<<<<<<< HEAD
wRc
lha
kAK
+=======
+omT
+lha
+iLY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iLY
iLY
bxa
pXY
pXY
+<<<<<<< HEAD
vyU
vyU
xLS
@@ -238059,6 +321388,17 @@ tCr
bln
tCr
bln
+=======
+pXY
+pXY
+xLS
+bln
+chb
+bln
+lSu
+bln
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -238212,11 +321552,19 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
krQ
skZ
bWn
eOK
+=======
+gYm
+krQ
+skZ
+bWn
+nch
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMX
xIz
bIc
@@ -238233,11 +321581,19 @@ pAZ
wtj
lBD
bcN
+<<<<<<< HEAD
bQV
hIS
bfl
dxK
wvw
+=======
+qzy
+adP
+adP
+dxK
+wzk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wzk
wzk
wzk
@@ -238294,14 +321650,22 @@ kbJ
kbJ
wkw
yaL
+<<<<<<< HEAD
wrc
+=======
+saO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eVV
rat
dNG
sth
aUj
aUj
+<<<<<<< HEAD
stI
+=======
+rNZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iLY
iLY
lqE
@@ -238311,6 +321675,7 @@ pXY
vyU
uOE
bln
+<<<<<<< HEAD
bln
tCr
bln
@@ -238318,6 +321683,15 @@ tCr
bln
bln
bln
+=======
+chb
+bln
+mQb
+bln
+chb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -238446,15 +321820,24 @@ aWk
diC
bJj
lyG
+<<<<<<< HEAD
jko
+=======
+teq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bXy
feJ
xWb
jDM
brx
rai
+<<<<<<< HEAD
twP
sPK
+=======
+amn
+hzG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wZD
iDq
bln
@@ -238469,11 +321852,19 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
krQ
gYp
bWn
lvm
+=======
+gYm
+krQ
+gYp
+bWn
+iUO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
egL
ssF
pSu
@@ -238491,7 +321882,11 @@ mQb
bNy
qWZ
oVR
+<<<<<<< HEAD
jOi
+=======
+apo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oVR
dxK
xVq
@@ -238505,12 +321900,21 @@ dkb
kmi
iYb
xaA
+<<<<<<< HEAD
vXV
wjv
pec
fJl
xMR
bJy
+=======
+ovx
+gMq
+pec
+fJl
+xMR
+fYE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cpm
dnq
ylU
@@ -238518,9 +321922,15 @@ dnq
paM
paM
hcL
+<<<<<<< HEAD
fUI
hdj
ssr
+=======
+jqT
+hdj
+jqT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hcL
paM
paM
@@ -238532,7 +321942,11 @@ pRj
pRj
daS
mNY
+<<<<<<< HEAD
prF
+=======
+gFI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bdR
xaI
xaI
@@ -238558,7 +321972,11 @@ ycB
qtj
qtj
aUj
+<<<<<<< HEAD
kAK
+=======
+iLY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iLY
iLY
bxa
@@ -238567,6 +321985,7 @@ pXY
pXY
pXY
fcP
+<<<<<<< HEAD
bln
bln
tCr
@@ -238575,6 +321994,16 @@ tCr
bln
bln
bln
+=======
+lSu
+chb
+bln
+uer
+mQb
+bvb
+tMa
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -238715,10 +322144,17 @@ fDc
eGA
iDq
jSt
+<<<<<<< HEAD
kvh
wPN
tCj
sDl
+=======
+mfH
+wPN
+xAs
+jbe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sDl
sDl
bHI
@@ -238726,11 +322162,19 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
krQ
thI
bWn
oQE
+=======
+gYm
+krQ
+thI
+bWn
+tsz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMX
hSl
ueS
@@ -238747,9 +322191,15 @@ pAZ
stJ
fsm
qWZ
+<<<<<<< HEAD
aDZ
mpP
uLp
+=======
+lvA
+gKU
+aoW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dxK
fbw
hue
@@ -238767,7 +322217,11 @@ ool
jRC
cgC
jaq
+<<<<<<< HEAD
cua
+=======
+vvT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cpm
dnq
ylU
@@ -238808,14 +322262,24 @@ yaL
yaL
yaL
yaL
+<<<<<<< HEAD
sSJ
+=======
+pmi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bTF
nHe
jDP
wTg
+<<<<<<< HEAD
jWJ
gyR
clG
+=======
+bRj
+gyR
+fhX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kAK
iLY
lqE
@@ -238825,11 +322289,19 @@ pXY
pXY
uOE
bln
+<<<<<<< HEAD
bln
tCr
bln
tCr
bln
+=======
+yfW
+jKQ
+bln
+mQb
+ebW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -238983,7 +322455,11 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
+=======
+gYm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
krQ
gYp
bWn
@@ -239001,6 +322477,7 @@ xhw
eJe
pXn
pAZ
+<<<<<<< HEAD
nyE
qWZ
qWZ
@@ -239009,6 +322486,16 @@ ldT
qWZ
dxK
wzk
+=======
+jDB
+qWZ
+qWZ
+qWZ
+wrk
+qWZ
+dxK
+cct
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hue
xit
wfK
@@ -239018,7 +322505,11 @@ iYb
iYb
iYb
iYb
+<<<<<<< HEAD
rpu
+=======
+kFW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybI
nnR
tuz
@@ -239026,11 +322517,19 @@ eRZ
qpZ
rAA
cpm
+<<<<<<< HEAD
mpy
sYu
ckc
paM
sqq
+=======
+ooV
+bwD
+qdI
+paM
+pdg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nBk
nBk
oSY
@@ -239038,7 +322537,11 @@ nBk
nBk
aCX
paM
+<<<<<<< HEAD
gZk
+=======
+tUG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jZU
uFh
hwx
@@ -239061,7 +322564,11 @@ mNY
akL
tvF
tvF
+<<<<<<< HEAD
aYS
+=======
+qya
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gTK
ruO
fKe
@@ -239070,10 +322577,17 @@ aQW
pVK
wRd
gGt
+<<<<<<< HEAD
yhC
rIX
kAK
nRV
+=======
+uJR
+rIX
+iLY
+lqE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fcP
cSx
vyU
@@ -239082,6 +322596,7 @@ vyU
vyU
fcP
bln
+<<<<<<< HEAD
bln
tCr
tCr
@@ -239090,6 +322605,16 @@ bln
bln
bln
bln
+=======
+pMM
+mQb
+lSu
+bln
+fYT
+tTO
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -239240,27 +322765,48 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
gMK
huT
bWn
exq
+=======
+gYm
+gMK
+huT
+bWn
+ukJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xMX
vvu
joh
mdM
+<<<<<<< HEAD
bZB
rDq
iMw
wZp
+=======
+wBa
+fSP
+iMw
+rRd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bWn
piB
eJe
utR
pAZ
+<<<<<<< HEAD
lBD
qWZ
qHD
+=======
+kIL
+qWZ
+vij
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bMZ
paK
aVH
@@ -239288,7 +322834,11 @@ ylU
bep
paM
xxQ
+<<<<<<< HEAD
nnM
+=======
+gMl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kzO
gdP
ykL
@@ -239336,6 +322886,7 @@ aZH
fDn
fDn
gka
+<<<<<<< HEAD
bln
bln
bln
@@ -239347,6 +322898,19 @@ bln
bln
bln
bln
+=======
+uMs
+mQb
+bln
+fPc
+mQb
+bln
+bln
+bln
+chb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -239487,7 +323051,11 @@ iDq
iDq
ciG
mfH
+<<<<<<< HEAD
sDl
+=======
+jbe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sDl
sDl
sDl
@@ -239497,7 +323065,11 @@ bZx
bZx
bZx
bZx
+<<<<<<< HEAD
snv
+=======
+gYm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lwO
vTg
bWn
@@ -239521,7 +323093,11 @@ xCv
vWL
nci
tPC
+<<<<<<< HEAD
uks
+=======
+xkI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gnM
aHW
clP
@@ -239531,7 +323107,11 @@ clP
clP
clP
clP
+<<<<<<< HEAD
rya
+=======
+rwn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eWc
nDA
vvi
@@ -239539,7 +323119,11 @@ xpJ
vYs
suL
gCn
+<<<<<<< HEAD
hUl
+=======
+qIx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dZQ
aNs
dnq
@@ -239552,7 +323136,11 @@ nBk
nBk
iiT
paM
+<<<<<<< HEAD
jZU
+=======
+wxY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hFi
bts
nlr
@@ -239600,10 +323188,17 @@ gka
gka
gka
gka
+<<<<<<< HEAD
bln
tCr
tCr
tCr
+=======
+aao
+bvb
+tMa
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -239737,7 +323332,11 @@ feJ
uGr
uGr
iDq
+<<<<<<< HEAD
pLx
+=======
+jBr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lAL
gPp
iDq
@@ -239755,10 +323354,17 @@ psN
psN
psN
wqx
+<<<<<<< HEAD
gEb
gYp
bWn
tEn
+=======
+cJd
+gYp
+bWn
+bTJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cGt
wRI
qdE
@@ -239768,6 +323374,7 @@ ntK
mQb
bln
jII
+<<<<<<< HEAD
gMx
lsH
jJr
@@ -239775,15 +323382,32 @@ qWZ
qWZ
qWZ
bpf
+=======
+ooV
+wTL
+eff
+qWZ
+qWZ
+qWZ
+svR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xRw
nYv
qVp
xKJ
+<<<<<<< HEAD
rmM
pZh
oYI
aCk
uPY
+=======
+veH
+pZh
+oYI
+aCk
+wzk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
knU
kPv
dxK
@@ -239837,7 +323461,11 @@ dth
bTF
wRd
gka
+<<<<<<< HEAD
swe
+=======
+igw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lAu
vWr
vWr
@@ -239858,9 +323486,15 @@ lhC
maY
gka
bln
+<<<<<<< HEAD
tCr
bln
tCr
+=======
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -240034,7 +323668,11 @@ grA
fwQ
nOH
gxU
+<<<<<<< HEAD
jJR
+=======
+gZq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybv
ybv
ybv
@@ -240114,10 +323752,17 @@ brY
lhC
lhC
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+lSu
+chb
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -240264,7 +323909,11 @@ sDl
sDl
sDl
psN
+<<<<<<< HEAD
eUR
+=======
+xir
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nTp
nTp
kxp
@@ -240272,7 +323921,11 @@ kQc
cxz
nnx
bWn
+<<<<<<< HEAD
sfz
+=======
+rkV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
npu
oMS
npu
@@ -240282,7 +323935,11 @@ nSo
jII
pAZ
pAZ
+<<<<<<< HEAD
dnq
+=======
+rLl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJe
utR
tmQ
@@ -240315,7 +323972,11 @@ dnq
vrX
pua
paM
+<<<<<<< HEAD
pEY
+=======
+wik
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vJI
uud
gdP
@@ -240323,7 +323984,11 @@ pjl
uOn
msU
paM
+<<<<<<< HEAD
khu
+=======
+lxi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bbo
pbE
vja
@@ -240346,7 +324011,11 @@ mNY
ixG
aPf
dzJ
+<<<<<<< HEAD
neV
+=======
+drd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
twt
mEw
sSJ
@@ -240372,9 +324041,15 @@ rQf
mUs
gka
bln
+<<<<<<< HEAD
tCr
bln
tCr
+=======
+chb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -240521,9 +324196,15 @@ sDl
sDl
sDl
psN
+<<<<<<< HEAD
nUI
dkY
nCW
+=======
+riB
+dkY
+wLc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hzY
bRn
fng
@@ -240537,7 +324218,11 @@ bWn
bWn
mae
pAZ
+<<<<<<< HEAD
usz
+=======
+mDy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eZL
ljx
nxW
@@ -240547,7 +324232,11 @@ qXF
dMX
gER
nOH
+<<<<<<< HEAD
bQd
+=======
+xVc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybv
xzT
cHO
@@ -240560,7 +324249,11 @@ bln
kta
jLa
rBL
+<<<<<<< HEAD
fYF
+=======
+uMN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
clE
jQI
qnr
@@ -240590,6 +324283,7 @@ dPT
pRj
pMu
gVD
+<<<<<<< HEAD
gSQ
ajF
qwe
@@ -240597,6 +324291,15 @@ uJH
hHF
roj
rIr
+=======
+kPu
+ajF
+qwe
+uJH
+iAc
+roj
+gXN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pRj
kCn
mNY
@@ -240608,7 +324311,11 @@ gTK
myX
sSJ
gka
+<<<<<<< HEAD
eEh
+=======
+oAs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fab
eDC
uIV
@@ -240628,10 +324335,17 @@ viH
viH
rQf
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+mQb
+bvb
+jHb
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -240786,11 +324500,19 @@ pfe
aeQ
mdX
pfe
+<<<<<<< HEAD
ktK
fGr
olt
qSP
eSm
+=======
+oyd
+vws
+mjf
+wEb
+sIZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pfe
pfe
jII
@@ -240857,10 +324579,17 @@ xtQ
hIH
kCn
mNY
+<<<<<<< HEAD
wiM
tMD
ehJ
xFM
+=======
+hFJ
+tMD
+ehJ
+fMt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
twt
tXB
sSJ
@@ -240868,7 +324597,11 @@ gka
uXC
fab
fNv
+<<<<<<< HEAD
iEd
+=======
+wuo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wuo
nnw
spv
@@ -240885,10 +324618,17 @@ lhC
lhC
lhC
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+mQb
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -241013,8 +324753,13 @@ lQc
lQc
nbp
mgU
+<<<<<<< HEAD
nbt
ioi
+=======
+bvX
+ccF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fad
azx
tDw
@@ -241038,11 +324783,19 @@ iiH
teP
teP
teP
+<<<<<<< HEAD
kGJ
gMK
fng
rHc
oOt
+=======
+qbk
+gMK
+fng
+rHc
+mxF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uog
vVY
uog
@@ -241050,7 +324803,11 @@ uog
nfU
bzI
uog
+<<<<<<< HEAD
qzU
+=======
+yaF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mny
dnq
wmK
@@ -241075,8 +324832,13 @@ kta
kta
dHa
kta
+<<<<<<< HEAD
wal
wDi
+=======
+kta
+cPK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qQC
jtN
aYq
@@ -241085,7 +324847,11 @@ kta
qQG
nlT
krv
+<<<<<<< HEAD
ylF
+=======
+hyc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fdy
fdy
fdy
@@ -241105,7 +324871,11 @@ cLN
cLN
cLN
fdy
+<<<<<<< HEAD
oXc
+=======
+eKb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nzq
cLN
cLN
@@ -241114,7 +324884,11 @@ kKH
pRj
eAj
sro
+<<<<<<< HEAD
apL
+=======
+dgp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qkT
kzA
whW
@@ -241126,7 +324900,11 @@ glc
fab
ktw
bny
+<<<<<<< HEAD
qDj
+=======
+jQe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xBp
bYw
bYw
@@ -241143,9 +324921,15 @@ phL
lhC
gka
bln
+<<<<<<< HEAD
tCr
bln
tCr
+=======
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -241269,7 +325053,11 @@ bln
npb
bln
lSu
+<<<<<<< HEAD
rhf
+=======
+hIO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rPP
eNl
vbF
@@ -241299,7 +325087,11 @@ vDb
vvh
vPC
pvm
+<<<<<<< HEAD
tJZ
+=======
+dMi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cvC
kQc
iYG
@@ -241307,7 +325099,11 @@ kQc
kOV
kQc
kQc
+<<<<<<< HEAD
kkr
+=======
+iJN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gOy
gOy
fKF
@@ -241315,7 +325111,11 @@ qjg
utR
tmQ
lkI
+<<<<<<< HEAD
smI
+=======
+lvl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aog
ktl
dEI
@@ -241342,7 +325142,11 @@ xXt
gET
gMM
jba
+<<<<<<< HEAD
iot
+=======
+mKC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oQp
oQp
lCY
@@ -241362,7 +325166,11 @@ oQp
oQp
oQp
oQp
+<<<<<<< HEAD
lEK
+=======
+mxX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oQp
oQp
kPg
@@ -241373,7 +325181,11 @@ fFy
mNY
bTq
xUP
+<<<<<<< HEAD
fQU
+=======
+gRt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rpF
twt
fcg
@@ -241399,10 +325211,17 @@ efE
kJU
lhC
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+tMc
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -241526,7 +325345,11 @@ bln
npb
bln
bln
+<<<<<<< HEAD
rhf
+=======
+hIO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vyd
ePr
kGc
@@ -241536,7 +325359,11 @@ mgU
kqc
kqc
kqc
+<<<<<<< HEAD
wAq
+=======
+jct
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jaw
xwf
aPd
@@ -241550,6 +325377,7 @@ bgN
bgN
uwB
lvS
+<<<<<<< HEAD
xLO
fGM
aac
@@ -241557,14 +325385,28 @@ nUJ
qbA
csB
stB
+=======
+dYA
+fGM
+hrO
+nUJ
+qbA
+csB
+gtB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tny
dLo
fBF
xUU
wYZ
aKI
+<<<<<<< HEAD
xUU
avd
+=======
+peq
+obb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qJV
vBh
fiE
@@ -241573,9 +325415,15 @@ utR
tmQ
axf
kzD
+<<<<<<< HEAD
kJP
lhv
heS
+=======
+nsj
+lhv
+sDV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybv
xwm
vzT
@@ -241589,8 +325437,13 @@ kta
kta
eoJ
kta
+<<<<<<< HEAD
wal
tEK
+=======
+kta
+lEJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qQC
hNg
rFD
@@ -241599,8 +325452,13 @@ kta
vtz
fuM
vXh
+<<<<<<< HEAD
jZB
rWn
+=======
+hyc
+tdK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mJa
gDV
fxl
@@ -241618,8 +325476,13 @@ eQX
rWn
rWn
gDV
+<<<<<<< HEAD
cSP
dAk
+=======
+tro
+eKb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jRV
uOL
gQq
@@ -241638,9 +325501,15 @@ wfn
ras
fkj
fab
+<<<<<<< HEAD
nsK
dfq
ghj
+=======
+iag
+dfq
+ein
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xBp
imd
imd
@@ -241656,10 +325525,17 @@ lhC
gsk
lhC
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+lSu
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -241783,12 +325659,21 @@ bln
miY
oot
oot
+<<<<<<< HEAD
rhf
jDt
wtg
diq
ehy
vtZ
+=======
+hIO
+jDt
+wtg
+diq
+uet
+ptr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mgU
fUj
kcc
@@ -241884,20 +325769,35 @@ hOc
bID
qnC
vkz
+<<<<<<< HEAD
uoF
pcg
deD
fLH
+=======
+aom
+pcg
+deD
+unG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qnC
isX
eBI
oEt
gka
+<<<<<<< HEAD
gFR
fab
fyQ
wuo
vuK
+=======
+vKy
+fab
+fyQ
+wuo
+wuo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nnw
cDK
uvk
@@ -241914,9 +325814,15 @@ lhC
lhC
gka
bln
+<<<<<<< HEAD
tCr
bln
tCr
+=======
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -242040,9 +325946,15 @@ bln
npb
bln
bln
+<<<<<<< HEAD
rhf
rhf
rhf
+=======
+hIO
+hIO
+hIO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bUx
bUx
bUx
@@ -242070,7 +325982,11 @@ jOQ
jOQ
jOQ
jOQ
+<<<<<<< HEAD
cyZ
+=======
+deY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
deY
fhz
deY
@@ -242079,7 +325995,11 @@ deY
deY
deY
wAZ
+<<<<<<< HEAD
oAz
+=======
+tVd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uLC
xQg
fwm
@@ -242132,7 +326052,11 @@ vvv
tTV
jtA
bID
+<<<<<<< HEAD
rlL
+=======
+obo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
miw
gCK
cMd
@@ -242140,6 +326064,7 @@ lHC
vzU
ahm
qnC
+<<<<<<< HEAD
xBh
qGQ
sOE
@@ -242147,6 +326072,15 @@ wcx
mGV
qnC
sIp
+=======
+bjK
+qGQ
+sOE
+wcx
+fVy
+qnC
+nAw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uif
wRd
gka
@@ -242171,9 +326105,15 @@ vBm
lfp
gka
bln
+<<<<<<< HEAD
tCr
bln
tCr
+=======
+bvb
+hZu
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -242338,7 +326278,11 @@ skl
skl
pAZ
pAZ
+<<<<<<< HEAD
dnq
+=======
+rLl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gOy
utR
tmQ
@@ -242397,7 +326341,11 @@ dcC
jGB
akz
sCA
+<<<<<<< HEAD
aSw
+=======
+mta
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ojv
bAT
eri
@@ -242427,10 +326375,17 @@ rQf
rQf
mUs
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+mQb
+chb
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -242642,7 +326597,11 @@ oyj
gwK
nEV
bry
+<<<<<<< HEAD
fDM
+=======
+vPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fLq
hro
tKi
@@ -242656,9 +326615,15 @@ wHj
mBB
juH
ojv
+<<<<<<< HEAD
hut
mDw
jDT
+=======
+lqi
+mDw
+tbH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qKQ
aTj
uif
@@ -242684,10 +326649,17 @@ fyR
lhC
lhC
gka
+<<<<<<< HEAD
bln
tCr
bln
tCr
+=======
+mQb
+chb
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -242828,7 +326800,11 @@ kpj
fGq
eig
jNp
+<<<<<<< HEAD
sDl
+=======
+jbe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sDl
sDl
sDl
@@ -242852,6 +326828,7 @@ vXU
drZ
yfF
jII
+<<<<<<< HEAD
gMx
oas
jJr
@@ -242859,11 +326836,24 @@ qWZ
qWZ
qWZ
dWX
+=======
+eff
+kxA
+eff
+qWZ
+qWZ
+qWZ
+aCP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wKI
iFs
qVp
lpM
+<<<<<<< HEAD
mjs
+=======
+slP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hsx
hpR
pIk
@@ -242921,7 +326911,11 @@ rGu
eZO
wRd
gka
+<<<<<<< HEAD
xNn
+=======
+lzJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
snO
pIm
vWr
@@ -242942,9 +326936,15 @@ pMC
qWJ
gka
bln
+<<<<<<< HEAD
tCr
bln
tCr
+=======
+chb
+bln
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -243080,7 +327080,11 @@ kzw
kzw
cAC
xAQ
+<<<<<<< HEAD
voA
+=======
+iMg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jNp
jNp
jNp
@@ -243091,7 +327095,11 @@ sDl
sDl
sDl
skl
+<<<<<<< HEAD
jOQ
+=======
+uFS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
skl
nOl
oCF
@@ -243102,24 +327110,40 @@ ygB
mJO
oCF
ygB
+<<<<<<< HEAD
bLa
+=======
+bSW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oCF
ygB
lBD
jII
jII
jII
+<<<<<<< HEAD
ifd
+=======
+aVr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xwC
utR
pAZ
bln
qWZ
+<<<<<<< HEAD
oxe
vmj
aqB
pVq
nVZ
+=======
+bGc
+vmj
+aqB
+pVq
+rkI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oRk
mvc
mvc
@@ -243127,9 +327151,15 @@ rAW
kwz
ghJ
uEm
+<<<<<<< HEAD
sqU
lpM
klP
+=======
+aEz
+lpM
+rEo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
euf
jzn
mhQ
@@ -243166,7 +327196,11 @@ bDz
rSC
inE
oPU
+<<<<<<< HEAD
wuV
+=======
+xpc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qnC
qnC
sCA
@@ -243198,10 +327232,17 @@ gka
gka
gka
gka
+<<<<<<< HEAD
bln
tCr
tCr
tCr
+=======
+aao
+bvb
+tMa
+bln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -243351,6 +327392,7 @@ skl
jOQ
skl
ygB
+<<<<<<< HEAD
xkp
ygB
ygB
@@ -243373,6 +327415,30 @@ pAZ
wXn
qWZ
eWP
+=======
+gQI
+ygB
+ygB
+ugX
+ygB
+ygB
+nJH
+ygB
+ygB
+rsV
+ygB
+fEZ
+ygB
+tSb
+aab
+dcI
+sNI
+bUH
+pAZ
+hLw
+qWZ
+ydk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tGF
iUT
aVH
@@ -243385,12 +327451,20 @@ hCV
nkb
ptB
mvc
+<<<<<<< HEAD
olH
+=======
+lzb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
anu
jly
fXb
mhQ
+<<<<<<< HEAD
eeq
+=======
+oYN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUD
nZb
lRf
@@ -243406,13 +327480,21 @@ uwO
rSx
kRP
kRP
+<<<<<<< HEAD
lSw
+=======
+uFV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cAR
kNk
tmA
bNE
hht
+<<<<<<< HEAD
gMN
+=======
+hxe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xnE
tvd
egV
@@ -243425,6 +327507,7 @@ vzU
pZn
bBd
xSv
+<<<<<<< HEAD
aIg
rjh
xZl
@@ -243432,6 +327515,15 @@ qaF
pna
aIg
ktx
+=======
+gyR
+lLD
+xZl
+qaF
+pna
+gyR
+cod
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uif
jKe
wRd
@@ -243454,9 +327546,15 @@ haC
haC
haC
haC
+<<<<<<< HEAD
qCB
bln
bln
+=======
+hso
+lSu
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -243618,6 +327716,7 @@ rMN
alO
alO
qCI
+<<<<<<< HEAD
xKT
alO
qhF
@@ -243632,6 +327731,22 @@ qWZ
qWZ
qWZ
tUO
+=======
+fhg
+alO
+fEe
+hYD
+hYD
+waU
+xwC
+kKX
+pAZ
+luG
+qWZ
+qWZ
+qWZ
+qKn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qWZ
lpM
xxx
@@ -243645,16 +327760,26 @@ xLF
lpM
oGQ
wKw
+<<<<<<< HEAD
vFb
+=======
+mZT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mhQ
hUV
aks
nLH
xex
mhQ
+<<<<<<< HEAD
ufw
rpG
jtY
+=======
+cBk
+kdA
+reb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xVK
tfx
tyK
@@ -243673,6 +327798,7 @@ guU
ayq
hpI
bID
+<<<<<<< HEAD
sSS
rOU
rcN
@@ -243680,6 +327806,15 @@ qxy
siz
iUx
kTQ
+=======
+iKh
+rOU
+qXt
+jEo
+fEL
+boX
+vjQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lCD
pNO
nFc
@@ -243705,16 +327840,27 @@ bEa
dCy
dMK
gka
+<<<<<<< HEAD
+=======
+nce
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+lSu
+hAM
+sds
+ntK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -243877,7 +328023,11 @@ iPm
iPm
iPm
iPm
+<<<<<<< HEAD
mVW
+=======
+pcx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hay
cfr
dct
@@ -243887,9 +328037,15 @@ pAZ
wtj
eJK
qWZ
+<<<<<<< HEAD
kjY
bCW
uLp
+=======
+kGe
+lWd
+dOF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lpM
byx
aJN
@@ -243925,11 +328081,16 @@ kQf
hDh
vnt
keP
+<<<<<<< HEAD
xJi
+=======
+qTa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ctr
avk
gxP
bID
+<<<<<<< HEAD
tZO
uCK
nKj
@@ -243946,11 +328107,33 @@ qWy
pna
hqV
uge
+=======
+phw
+uCK
+gJN
+ckX
+iub
+inn
+oUw
+vfU
+pdV
+gyR
+psu
+uGT
+qWy
+pna
+gyR
+jmD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xrg
dxn
aPD
aPD
+<<<<<<< HEAD
vlb
+=======
+rHx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fKf
pst
bWQ
@@ -243963,6 +328146,7 @@ uYO
rOe
gka
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -243970,6 +328154,15 @@ bln
bln
tCr
bln
+=======
+mQb
+mQb
+lSu
+lSu
+mQb
+bln
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -244114,7 +328307,11 @@ nmq
kqG
pVL
pVL
+<<<<<<< HEAD
sDl
+=======
+jbe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sDl
sDl
skl
@@ -244132,12 +328329,20 @@ wVD
uja
uja
uja
+<<<<<<< HEAD
bsn
+=======
+iyJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uja
uja
uja
uja
+<<<<<<< HEAD
vdO
+=======
+uHN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vrX
utR
pAZ
@@ -244145,7 +328350,11 @@ eAu
hFr
qWZ
oVR
+<<<<<<< HEAD
sNQ
+=======
+lfo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oVR
lpM
dbs
@@ -244172,7 +328381,11 @@ vXh
cvS
ewi
cvS
+<<<<<<< HEAD
eUI
+=======
+svV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kwX
gDp
egp
@@ -244182,7 +328395,11 @@ pJQ
pJQ
pJQ
keP
+<<<<<<< HEAD
tJv
+=======
+vei
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bTx
nvW
xxs
@@ -244190,9 +328407,15 @@ bID
bID
bID
bID
+<<<<<<< HEAD
cfT
kvH
uIz
+=======
+nnp
+res
+eLM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bID
bID
bID
@@ -244206,10 +328429,17 @@ gyR
gyR
gyR
aPD
+<<<<<<< HEAD
wqc
umz
sbK
wij
+=======
+lQe
+umz
+sbK
+tOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gka
gka
gka
@@ -244219,6 +328449,7 @@ fDn
fDn
fDn
gka
+<<<<<<< HEAD
bln
bln
bln
@@ -244228,6 +328459,17 @@ bln
tCr
bln
bln
+=======
+ujK
+gSd
+lej
+ujK
+ujK
+ujK
+yhY
+bvb
+ftY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -244381,6 +328623,7 @@ skl
eFW
rlV
ygB
+<<<<<<< HEAD
xEJ
gJC
akD
@@ -244395,15 +328638,37 @@ qSh
hsB
uja
jcy
+=======
+jMx
+gJC
+akD
+qIU
+uUM
+uja
+jHG
+jcF
+vVw
+jcF
+qSh
+hsB
+uja
+ltY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iuv
utR
pAZ
fsm
efv
bcN
+<<<<<<< HEAD
jYd
ugI
lIs
+=======
+yan
+fVf
+epC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lpM
vPF
uEm
@@ -244418,7 +328683,11 @@ sIt
sIt
sIt
log
+<<<<<<< HEAD
aTG
+=======
+kpA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hGh
raf
raf
@@ -244428,7 +328697,11 @@ iuv
pDi
cvS
cGA
+<<<<<<< HEAD
rgi
+=======
+cGA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pNq
lBS
aTp
@@ -244467,6 +328740,7 @@ cht
eiI
bum
wWM
+<<<<<<< HEAD
vvf
pcI
ehP
@@ -244475,15 +328749,32 @@ uLr
bDl
sEB
sEB
+=======
+hVf
+pcI
+ehP
+uDi
+aPD
+tfk
+sEB
+qVo
+chb
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
tCr
bln
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -244637,11 +328928,16 @@ jOQ
skl
dxh
xri
+<<<<<<< HEAD
vAo
+=======
+ttI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cmL
lLf
asa
kCu
+<<<<<<< HEAD
gHj
uja
sfD
@@ -244649,6 +328945,15 @@ gjT
szK
upx
uOy
+=======
+uKR
+uja
+lsF
+pBs
+eYF
+sNj
+fKR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hsB
uja
ise
@@ -244658,11 +328963,19 @@ pAZ
bln
lBD
pAZ
+<<<<<<< HEAD
mDv
sUi
tEd
lpM
eEC
+=======
+hZf
+rYE
+xUg
+lpM
+luk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aTw
iFL
hpe
@@ -244674,7 +328987,11 @@ dGU
wdg
bVv
wdg
+<<<<<<< HEAD
sTV
+=======
+ukR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pwf
oUL
qKz
@@ -244707,7 +329024,11 @@ uAK
wSo
wSo
vZt
+<<<<<<< HEAD
iHm
+=======
+qhI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rXe
hHN
bJD
@@ -244732,16 +329053,28 @@ lzy
sEB
sEB
sEB
+<<<<<<< HEAD
+=======
+xhA
+bln
+bln
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
tCr
bln
bln
+=======
+chb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -244895,14 +329228,22 @@ skl
ddr
ccp
ygB
+<<<<<<< HEAD
kCb
+=======
+vrD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gya
tfO
urd
xTU
uja
aty
+<<<<<<< HEAD
gjT
+=======
+pBs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uja
uja
uja
@@ -244933,11 +329274,19 @@ sIt
sIt
log
mhQ
+<<<<<<< HEAD
rXN
mhQ
mhQ
mhQ
dnq
+=======
+pOH
+mhQ
+mhQ
+mhQ
+rLl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jtE
vXh
cvS
@@ -244946,7 +329295,11 @@ bRH
caZ
hgK
caZ
+<<<<<<< HEAD
gDp
+=======
+rqN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
btg
pGo
uoE
@@ -244958,7 +329311,11 @@ jlV
hHN
hHN
iRw
+<<<<<<< HEAD
cYf
+=======
+vuf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bSG
uop
tHj
@@ -244981,6 +329338,7 @@ daM
pyM
kxY
ccz
+<<<<<<< HEAD
okk
lVm
qrm
@@ -245001,6 +329359,28 @@ bln
bln
bln
bln
+=======
+xCs
+lVm
+aPD
+mzz
+aPD
+bDl
+ooL
+qVo
+chb
+bln
+lSu
+bln
+mQb
+bln
+bln
+bln
+chb
+bln
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -245141,13 +329521,21 @@ lbk
sDl
sDl
skl
+<<<<<<< HEAD
yhL
+=======
+vaW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
deY
skl
gDz
xlH
kbN
+<<<<<<< HEAD
dym
+=======
+nzn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
skl
ygB
ygB
@@ -245159,6 +329547,7 @@ maB
fpa
uja
oiz
+<<<<<<< HEAD
gjT
uja
kDz
@@ -245178,6 +329567,27 @@ mfW
toT
mfW
aeF
+=======
+pBs
+uja
+kDz
+mBm
+twU
+uja
+uPT
+poL
+vBh
+wRk
+wRk
+wRk
+wRk
+wRk
+cRu
+mfW
+vKZ
+mfW
+uxm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eta
brp
mfW
@@ -245186,12 +329596,21 @@ ccs
amN
hHu
tZZ
+<<<<<<< HEAD
vBh
vBh
dqs
aVw
gxq
rlb
+=======
+mfW
+mfW
+oyY
+aVw
+gxq
+aVw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vBh
vBh
vBh
@@ -245203,7 +329622,11 @@ iGa
caZ
vpR
caZ
+<<<<<<< HEAD
oDk
+=======
+sqN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kRP
fwO
fwO
@@ -245219,7 +329642,11 @@ cEw
cEw
cEw
cEw
+<<<<<<< HEAD
rII
+=======
+woc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fwq
hHN
lRR
@@ -245243,6 +329670,7 @@ iaY
duh
duh
duh
+<<<<<<< HEAD
bln
bln
sEB
@@ -245258,6 +329686,23 @@ bln
bln
bln
bln
+=======
+mQb
+bln
+lbc
+bvb
+jHb
+bln
+bln
+mQb
+bln
+bln
+bln
+chb
+mQb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -245388,7 +329833,11 @@ ihb
bnM
iRM
kkl
+<<<<<<< HEAD
tAK
+=======
+xiq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gUs
ykw
lbk
@@ -245412,18 +329861,31 @@ ygB
ybE
eKJ
ulk
+<<<<<<< HEAD
rgM
uja
uja
uja
jnh
+=======
+ugZ
+uja
+uja
+uja
+kqP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uja
uja
uja
hsB
uja
+<<<<<<< HEAD
uuh
lyh
+=======
+ehq
+kOq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iuv
vrX
iuv
@@ -245432,7 +329894,11 @@ iuv
iuv
iuv
vrX
+<<<<<<< HEAD
maX
+=======
+uJN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iuv
xNF
ylU
@@ -245445,7 +329911,11 @@ iuv
iuv
iuv
iuv
+<<<<<<< HEAD
rpG
+=======
+uJN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iuv
iuv
iuv
@@ -245474,7 +329944,11 @@ dUv
cEw
rLs
xUV
+<<<<<<< HEAD
xmL
+=======
+rLs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cEw
cmJ
rwC
@@ -245500,6 +329974,7 @@ dFo
kKy
duh
bln
+<<<<<<< HEAD
bln
bln
sEB
@@ -245515,6 +329990,23 @@ bln
bln
bln
bln
+=======
+ntK
+bln
+lbc
+chb
+bln
+lSu
+bln
+mQb
+bln
+bln
+bln
+chb
+bln
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -245665,6 +330157,7 @@ ykA
skl
lQr
lkj
+<<<<<<< HEAD
ipx
seH
lvY
@@ -245691,18 +330184,54 @@ rbh
rbh
qPD
jIY
+=======
+iov
+seH
+lvY
+mmA
+whk
+uja
+aJi
+aJi
+eCT
+uja
+oUO
+msG
+xWG
+uja
+kyL
+hNU
+kyL
+kyL
+rwZ
+oTu
+ucu
+adv
+oTu
+oTu
+srw
+kfr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dKW
ylU
lDo
dnq
iuu
dnq
+<<<<<<< HEAD
dnq
+=======
+ebH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dnq
apb
dnq
bep
+<<<<<<< HEAD
mpy
+=======
+srw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dnq
dnq
ivo
@@ -245757,6 +330286,7 @@ lhO
fFi
duh
bln
+<<<<<<< HEAD
bln
bln
sEB
@@ -245770,6 +330300,21 @@ bln
tCr
bln
bln
+=======
+mQb
+bln
+lbc
+chb
+bln
+lSu
+bln
+bln
+uer
+bln
+bln
+bvb
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -245912,17 +330457,27 @@ bln
bln
fsm
bUx
+<<<<<<< HEAD
uek
wph
fnS
skl
qpU
xsm
+=======
+buR
+kVe
+fnS
+skl
+hir
+kAT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jOQ
skl
pOo
piC
ygB
+<<<<<<< HEAD
fXo
aos
cUH
@@ -245931,14 +330486,29 @@ beF
vme
lrE
gUw
+=======
+noJ
+aos
+uWo
+iUs
+ozk
+nsu
+fdV
+kux
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uja
uja
uja
hsB
uja
mdZ
+<<<<<<< HEAD
hMM
lEb
+=======
+ros
+bnm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mdZ
exw
hmb
@@ -245948,9 +330518,15 @@ hmb
hmb
exw
tLF
+<<<<<<< HEAD
gIf
dBA
gIf
+=======
+lFb
+qRE
+lFb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
azw
azw
mao
@@ -246014,13 +330590,22 @@ alb
nTL
cHf
qHg
+<<<<<<< HEAD
tmR
bln
sEB
+=======
+umg
+mQb
+lbc
+chb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -246028,6 +330613,13 @@ mVm
bln
bln
bln
+=======
+mQb
+bln
+chn
+bln
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -246169,6 +330761,7 @@ bUx
bUx
bUx
bUx
+<<<<<<< HEAD
maM
aXx
fnS
@@ -246176,11 +330769,21 @@ skl
eoV
npZ
qQV
+=======
+oBV
+aXq
+fnS
+skl
+bVx
+idP
+irn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
skl
gmW
gmW
gmW
ltV
+<<<<<<< HEAD
tip
gxT
ltV
@@ -246205,24 +330808,62 @@ iuE
gWl
hKn
lHi
+=======
+lAW
+ksl
+ltV
+uja
+tXk
+tXk
+tUn
+uja
+jlP
+dHg
+twU
+uja
+dka
+fKV
+jLK
+tJY
+phr
+eik
+cby
+otW
+jLc
+lvb
+xWk
+sTH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
dEV
bai
azw
jqE
kZb
+<<<<<<< HEAD
tSK
azw
fMg
fqW
pHS
+=======
+cJk
+azw
+xxi
+fqW
+sfd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nCb
kWL
cvS
pjF
nhw
cvS
+<<<<<<< HEAD
bEB
+=======
+aMh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kNA
mOo
jPh
@@ -246270,6 +330911,7 @@ njm
njm
njm
duh
+<<<<<<< HEAD
sEB
ipM
bln
@@ -246284,6 +330926,22 @@ bln
bln
bln
bln
+=======
+mZf
+ipM
+bln
+lbc
+chb
+mQb
+bln
+bln
+lSu
+bln
+mQb
+bln
+chb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ozo
bln
bln
@@ -246348,7 +331006,11 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
aaX
+=======
+qzn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vbG
tkU
tkU
@@ -246420,7 +331082,11 @@ fhu
bLI
ykw
skl
+<<<<<<< HEAD
blX
+=======
+ugA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
deY
skl
kQE
@@ -246431,6 +331097,7 @@ skl
hDV
skl
byP
+<<<<<<< HEAD
blX
eHX
ceU
@@ -246440,6 +331107,17 @@ qfJ
seB
mcT
xwL
+=======
+ugA
+hNp
+tFI
+eHb
+hcs
+bdp
+nmH
+tiI
+hLW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bVI
uja
uja
@@ -246450,6 +331128,7 @@ uja
uja
uja
uja
+<<<<<<< HEAD
scG
cKJ
hJS
@@ -246462,6 +331141,20 @@ nxc
lgb
xre
lHi
+=======
+sJC
+aSM
+fjN
+xhV
+mPl
+ybb
+fJS
+hFR
+rxJ
+lGN
+xul
+sTH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
dEV
bai
@@ -246470,7 +331163,11 @@ rEp
fTC
blU
azw
+<<<<<<< HEAD
eul
+=======
+bbO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hhT
vnN
pQp
@@ -246519,9 +331216,15 @@ qwF
qwF
qwF
wYJ
+<<<<<<< HEAD
bln
bln
bln
+=======
+sEB
+sEB
+sEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kUu
bln
bln
@@ -246530,11 +331233,20 @@ bln
bln
oxR
bln
+<<<<<<< HEAD
sEB
+=======
+lbc
+chb
+mQb
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -246543,6 +331255,12 @@ bln
bln
bln
bln
+=======
+chb
+bln
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -246605,7 +331323,11 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
fhB
+=======
+liV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vbG
tkU
tkU
@@ -246677,26 +331399,44 @@ ekW
vRN
fEA
uHF
+<<<<<<< HEAD
jyE
jyE
qdK
eqq
ejY
+=======
+wjj
+wjj
+qdK
+eqq
+krZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eqq
eqq
eqq
eqq
+<<<<<<< HEAD
mkM
eqq
fjO
qvh
skl
erH
+=======
+xuL
+eqq
+lrl
+qvh
+skl
+eFG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ffZ
vfW
vfW
mZK
lvk
+<<<<<<< HEAD
qiG
czo
kKL
@@ -246719,6 +331459,30 @@ nxc
lgb
uSE
hyQ
+=======
+gzI
+gIN
+kKL
+mBr
+kKL
+pyE
+suo
+qZg
+rxY
+ryn
+eDs
+vTm
+sxt
+shh
+bHJ
+xgy
+xgy
+uYE
+rxJ
+lGN
+ozU
+fuc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
dEV
kHI
@@ -246727,7 +331491,11 @@ feU
fTC
qEj
azw
+<<<<<<< HEAD
tJV
+=======
+rUQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
orE
aTE
hMH
@@ -246776,6 +331544,7 @@ sMg
sMg
qwF
aPD
+<<<<<<< HEAD
bln
bln
bln
@@ -246788,15 +331557,37 @@ bln
nFO
bln
sEB
+=======
+nQr
+sEB
+sEB
+nyA
+htd
+uer
+bln
+mQb
+bln
+nFO
+mQb
+lbc
+chb
+bln
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
bln
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -246933,6 +331724,7 @@ aML
iLv
hSJ
ykw
+<<<<<<< HEAD
fNz
wSc
blX
@@ -246976,13 +331768,62 @@ rRs
jik
lJW
lHi
+=======
+ygL
+jTw
+ugA
+eym
+ugA
+aBK
+fhz
+ugA
+fhz
+vjg
+byP
+mOf
+vHJ
+mOf
+skl
+opt
+eOl
+qFE
+cGB
+cGB
+gsI
+tLL
+spy
+kKL
+kKL
+kKL
+qUI
+lik
+tWj
+rxY
+jCK
+jdV
+bZm
+uQc
+mYR
+mpU
+ryJ
+xgy
+faW
+dHf
+rWI
+cOy
+sTH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
dEV
bai
azw
hnV
fTC
+<<<<<<< HEAD
xSu
+=======
+nej
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
azw
azw
azw
@@ -247032,6 +331873,7 @@ kfa
qCn
tCB
qwF
+<<<<<<< HEAD
bln
bln
bln
@@ -247040,22 +331882,45 @@ czY
bln
bln
bln
+=======
+sEB
+sEB
+sEB
+sEB
+fdb
+bln
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
nFO
bln
+<<<<<<< HEAD
sEB
+=======
+lbc
+chb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
tCr
bln
bln
bln
+=======
+bvb
+jHb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -247195,6 +332060,7 @@ rFP
rFP
skl
skl
+<<<<<<< HEAD
utW
kiI
skl
@@ -247222,17 +332088,51 @@ utG
rxY
bzF
dXR
+=======
+wYS
+tYF
+skl
+ugA
+goY
+skl
+cFr
+cQx
+cFr
+skl
+fRq
+vfW
+tBw
+nUj
+mpH
+aAe
+xjT
+spy
+kKL
+jZy
+aqV
+lgx
+xay
+lko
+rxY
+ntE
+rhG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mdZ
mdZ
mdZ
exw
exw
exw
+<<<<<<< HEAD
kXS
+=======
+dRB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
exw
exw
exw
tLF
+<<<<<<< HEAD
cwh
dEV
whg
@@ -247241,14 +332141,31 @@ eub
eyc
qPt
uTc
+=======
+bDB
+dEV
+dYU
+azw
+xbB
+eyc
+qPt
+goa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
biR
dmI
tdE
veU
+<<<<<<< HEAD
vEQ
kRP
kRP
oiB
+=======
+pkf
+kRP
+kRP
+rWH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kRP
pao
cGA
@@ -247280,7 +332197,11 @@ xGM
gHl
flH
afR
+<<<<<<< HEAD
rPn
+=======
+iVg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kqq
cnq
nqb
@@ -247289,6 +332210,7 @@ uxx
sMg
sMg
qwF
+<<<<<<< HEAD
bln
bln
hDG
@@ -247297,10 +332219,21 @@ czY
bln
bln
bln
+=======
+sEB
+sEB
+hDG
+sEB
+fdb
+mQb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
oxR
bln
+<<<<<<< HEAD
sEB
bln
bln
@@ -247312,6 +332245,19 @@ bln
tCr
bln
bln
+=======
+lbc
+chb
+bln
+mQb
+uer
+bln
+lSu
+bln
+bln
+ebW
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -247452,6 +332398,7 @@ bln
lBD
bln
skl
+<<<<<<< HEAD
rWA
skl
skl
@@ -247490,6 +332437,46 @@ wBr
lEO
wqt
jae
+=======
+dow
+skl
+skl
+giO
+hFw
+skl
+hED
+jlk
+pSF
+skl
+eXf
+vfW
+qfG
+iay
+dCF
+aAe
+fbM
+kVa
+kKL
+nWG
+kKL
+kKL
+bYC
+isC
+rxY
+fzK
+iIm
+fzK
+jRA
+wXb
+bOZ
+gpM
+jZj
+luP
+dWI
+lEO
+lRj
+msE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
kjK
bai
@@ -247504,7 +332491,11 @@ tdE
fBR
fKi
tHr
+<<<<<<< HEAD
euR
+=======
+rRA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
soK
kRP
nMN
@@ -247546,11 +332537,19 @@ qwF
qwF
qwF
qwF
+<<<<<<< HEAD
bln
bln
bln
bln
czY
+=======
+sEB
+sEB
+sEB
+sEB
+fdb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -247558,6 +332557,7 @@ bln
bln
nFO
bln
+<<<<<<< HEAD
sEB
bln
bln
@@ -247570,6 +332570,20 @@ tCr
bln
bln
bln
+=======
+lbc
+bvb
+jHb
+bln
+bln
+bln
+lSu
+lSu
+bln
+uap
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -247709,6 +332723,7 @@ ntK
mQb
bln
skl
+<<<<<<< HEAD
bkM
oWV
skl
@@ -247746,6 +332761,45 @@ fWW
mMZ
bid
nzt
+=======
+eZW
+deY
+skl
+vhF
+jPv
+rhv
+dEL
+vhF
+vsx
+skl
+hYL
+vfW
+sul
+eGM
+eGM
+soI
+tLL
+erd
+kKL
+mfP
+qgH
+kKL
+vJJ
+awu
+uzu
+tbL
+cEe
+fzK
+sZB
+jRA
+toT
+spz
+jHe
+mPr
+gOa
+jKs
+gDq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
lCi
dEV
@@ -247758,7 +332812,11 @@ azw
fVK
rGw
azw
+<<<<<<< HEAD
eiY
+=======
+ePT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tZm
pBA
aQZ
@@ -247771,7 +332829,11 @@ esC
eUI
kRP
qyR
+<<<<<<< HEAD
bve
+=======
+qyR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kRP
gDp
cvS
@@ -247800,6 +332862,7 @@ uQy
swu
swu
swu
+<<<<<<< HEAD
swu
swu
swu
@@ -247816,16 +332879,43 @@ bln
nFO
bln
sEB
+=======
+dvZ
+dvZ
+dvZ
+dvZ
+dvZ
+dvZ
+dvZ
+heE
+bln
+mQb
+bln
+mQb
+bln
+nFO
+mQb
+lbc
+chb
+bln
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
mVm
bln
bln
+=======
+chn
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -247964,6 +333054,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
gDh
skl
tSd
@@ -247977,11 +333068,27 @@ vOd
mnn
skl
ruX
+=======
+stJ
+skl
+sNL
+skl
+skl
+jOK
+deY
+rhv
+eLN
+iDe
+dyA
+skl
+gaC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vfW
eOl
vfW
vfW
lvk
+<<<<<<< HEAD
jiU
qVG
wpm
@@ -248004,6 +333111,30 @@ qSU
hSq
pdC
pdC
+=======
+crv
+acN
+mch
+mzX
+qBi
+kKL
+kKL
+tjG
+rxY
+uWS
+hjl
+xBj
+ddw
+hjz
+wqo
+spz
+eYS
+arZ
+eME
+hSq
+jLt
+ieJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vwO
hHg
jyp
@@ -248017,7 +333148,11 @@ sEz
jFZ
uoV
gnb
+<<<<<<< HEAD
gTi
+=======
+pZB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
whh
pQL
nCV
@@ -248027,7 +333162,11 @@ kRP
kRP
kRP
kRP
+<<<<<<< HEAD
qyR
+=======
+wCI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qyR
kRP
gDp
@@ -248054,6 +333193,7 @@ gtg
cEw
bCT
kfs
+<<<<<<< HEAD
sEB
bln
bln
@@ -248082,6 +333222,36 @@ bln
bln
tCr
bln
+=======
+kfs
+kfs
+qVo
+bln
+bln
+mQb
+bln
+mQb
+bln
+bln
+yfW
+jHb
+mQb
+bln
+uer
+bln
+cwn
+bln
+lbc
+chb
+bln
+uer
+mQb
+bln
+mQb
+bln
+bln
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -248222,6 +333392,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
aHh
ooL
skl
@@ -248234,18 +333405,37 @@ hqv
wHK
skl
mOH
+=======
+oUb
+ooL
+skl
+cwT
+deY
+deY
+skl
+ygS
+oGr
+pDA
+skl
+pyl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uRo
uRo
uRo
nCu
cZt
cZt
+<<<<<<< HEAD
qtG
+=======
+vnw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
lli
uar
gAt
kKL
+<<<<<<< HEAD
nxw
fzK
kQx
@@ -248271,6 +333461,33 @@ nah
azw
cXu
frP
+=======
+jcs
+fzK
+mbm
+dTa
+sav
+ymf
+nuD
+pQD
+lsA
+xmD
+awe
+lsA
+lEO
+atS
+lmQ
+lBB
+dEV
+bai
+azw
+pdm
+vYH
+etv
+azw
+dnI
+vHo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oIJ
nRd
lwQ
@@ -248281,8 +333498,13 @@ art
tHr
tHr
tHr
+<<<<<<< HEAD
bpZ
chW
+=======
+xDX
+qkR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pBA
xfb
dpB
@@ -248311,25 +333533,44 @@ gtg
hpI
qAT
kfs
+<<<<<<< HEAD
kfs
kfs
sEB
bln
bln
bln
+=======
+dtc
+kfs
+qVo
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+bln
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
shH
+<<<<<<< HEAD
vsI
sEB
+=======
+mjY
+qVo
+bza
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -248337,10 +333578,16 @@ bln
bln
bln
bln
+<<<<<<< HEAD
mVm
bln
bln
bln
+=======
+chb
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -248482,9 +333729,15 @@ bln
bln
bln
skl
+<<<<<<< HEAD
fpF
deY
hJF
+=======
+cwH
+deY
+ugA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
skl
skl
skl
@@ -248492,14 +333745,22 @@ gmW
gmW
dGO
dGO
+<<<<<<< HEAD
tEs
dGO
dGO
tEs
+=======
+kBc
+dGO
+dGO
+kBc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dGO
dGO
gmW
gmW
+<<<<<<< HEAD
tpZ
mGF
kKL
@@ -248521,15 +333782,45 @@ cql
fqX
dEV
kIK
+=======
+lgw
+lJn
+kKL
+kAQ
+jJA
+jJA
+sRw
+vNU
+vNU
+tvt
+peP
+spz
+qOG
+dnE
+gpr
+izC
+hku
+lmQ
+epw
+dEV
+hjA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
azw
pxV
oQD
vDh
azw
+<<<<<<< HEAD
fNA
eqp
cTV
fHz
+=======
+aXg
+bGq
+cTV
+bOp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lwQ
qfi
sEK
@@ -248537,12 +333828,20 @@ eHg
ahL
wVw
xyy
+<<<<<<< HEAD
bCr
+=======
+whU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bYK
srn
pBA
drH
+<<<<<<< HEAD
vSx
+=======
+tNz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kRP
gDp
cvS
@@ -248568,6 +333867,7 @@ uUH
vuu
xvj
rCW
+<<<<<<< HEAD
lfF
fJe
sEB
@@ -248587,10 +333887,32 @@ sEB
tmR
jrI
oaQ
+=======
+ygl
+fJe
+sEB
+oot
+oot
+oot
+oot
+oot
+oot
+oot
+sjh
+oot
+oot
+oot
+oot
+oot
+pcb
+jrI
+iXg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oaQ
oaQ
oaQ
qHg
+<<<<<<< HEAD
tmR
tmR
tmR
@@ -248599,6 +333921,16 @@ bln
bln
bln
bln
+=======
+uAL
+uAL
+uAL
+rzO
+bvb
+tMa
+sMy
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -248737,11 +334069,19 @@ bln
fsm
bln
uer
+<<<<<<< HEAD
yjo
skl
skl
qiL
qiL
+=======
+bln
+skl
+skl
+qFA
+qFA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
skl
fsm
tlH
@@ -248757,6 +334097,7 @@ knl
knl
knl
gmW
+<<<<<<< HEAD
ijw
bRO
kKL
@@ -248778,13 +334119,40 @@ vbI
gVh
kjK
arZ
+=======
+aJa
+gJD
+kKL
+jOC
+uWy
+xBf
+byJ
+mNP
+foI
+tvt
+peP
+spz
+pau
+dnE
+uTq
+izC
+qiv
+saF
+lBB
+kjK
+gdc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
azw
mwF
sbc
qYV
azw
gIY
+<<<<<<< HEAD
iBj
+=======
+dDR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mcW
sFG
lwQ
@@ -248827,11 +334195,26 @@ loV
kfs
kfs
kfs
+<<<<<<< HEAD
sEB
+=======
+qVo
+bln
+bln
+mQb
+mQb
+bln
+bln
+bln
+chb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -248853,6 +334236,19 @@ sEB
tmR
tCr
bln
+=======
+mQb
+mQb
+bln
+bln
+bln
+hMM
+mHR
+sEB
+tmR
+sEB
+rrh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -248995,12 +334391,21 @@ bln
bln
stJ
bln
+<<<<<<< HEAD
bln
skl
qjn
iRa
skl
tlH
+=======
+qtD
+skl
+wMY
+lWG
+skl
+oFc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
dGO
knl
@@ -249014,6 +334419,7 @@ knl
knl
knl
dGO
+<<<<<<< HEAD
ksR
rEH
kKL
@@ -249039,6 +334445,33 @@ hgh
czS
fVo
qbd
+=======
+jMu
+duT
+kKL
+tdU
+fXw
+abZ
+qfz
+mNP
+vNU
+tvt
+pQD
+lsA
+nwn
+fSs
+lsA
+lEO
+ksc
+saF
+lBB
+dEV
+bai
+hgh
+qlD
+fVo
+etW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rzS
hgh
pLt
@@ -249050,7 +334483,11 @@ juw
nji
tkf
ikz
+<<<<<<< HEAD
oSQ
+=======
+vyW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tHr
pBA
pBA
@@ -249060,7 +334497,11 @@ jbC
kRP
gDp
cvS
+<<<<<<< HEAD
sEB
+=======
+rsh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qwF
qwF
qwF
@@ -249082,6 +334523,7 @@ sEB
hpI
loV
kfs
+<<<<<<< HEAD
bln
sEB
sEB
@@ -249115,6 +334557,41 @@ sEB
sEB
sEB
sEB
+=======
+sEB
+sEB
+qVo
+bln
+mQb
+mQb
+bln
+bln
+mQb
+bln
+yfW
+jHb
+bln
+mQb
+bln
+mQb
+mQb
+bln
+bln
+bln
+mQb
+bln
+bln
+tJK
+sEB
+tmR
+sEB
+fAW
+ajx
+ajx
+ajx
+kKU
+kKU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mfD
mfD
mfD
@@ -249178,7 +334655,11 @@ bln
bln
lBD
bln
+<<<<<<< HEAD
rST
+=======
+xZq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
qRv
@@ -249188,7 +334669,11 @@ hHG
wNO
wNO
wNO
+<<<<<<< HEAD
khz
+=======
+pUa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -249253,10 +334738,17 @@ bln
bln
bln
bln
+<<<<<<< HEAD
gbM
iRa
iRa
gbM
+=======
+bxS
+lWG
+lWG
+bxS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
tlH
dGO
@@ -249272,6 +334764,7 @@ knl
knl
dGO
uar
+<<<<<<< HEAD
bXb
kKL
xFz
@@ -249296,12 +334789,42 @@ hgh
qit
xxg
nDl
+=======
+lby
+kKL
+rAY
+fYJ
+qMF
+jpg
+mNP
+qpm
+tvt
+peP
+spz
+tsu
+uGe
+fDf
+mbw
+rDN
+qbG
+qbG
+onP
+jyp
+hgh
+kbS
+xxg
+ehU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uau
hgh
kBL
xPT
cxA
+<<<<<<< HEAD
lka
+=======
+bij
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vkD
cey
lux
@@ -249349,6 +334872,7 @@ wvI
wvI
pwF
wvI
+<<<<<<< HEAD
sEB
sEB
sEB
@@ -249371,6 +334895,30 @@ bln
bln
bln
sEB
+=======
+nyZ
+kKU
+kKU
+kKU
+kKU
+ajx
+ajx
+mgv
+bln
+bln
+mQb
+mQb
+bln
+jqx
+jEK
+tmR
+jEK
+ktX
+mQb
+uer
+bln
+mZf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mfD
mfD
xow
@@ -249439,10 +334987,17 @@ lBD
bln
bln
bln
+<<<<<<< HEAD
xDQ
xDQ
bln
khz
+=======
+wDS
+wDS
+bln
+pUa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -249510,10 +335065,17 @@ bln
bln
tlH
tlH
+<<<<<<< HEAD
gbM
iRa
iRa
gbM
+=======
+bxS
+lWG
+lWG
+bxS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
tlH
dGO
@@ -249529,6 +335091,7 @@ knl
knl
dGO
uar
+<<<<<<< HEAD
wla
kKL
eTT
@@ -249554,11 +335117,42 @@ wiO
mnF
lKZ
xGh
+=======
+sVW
+kKL
+dBN
+kOx
+hye
+byJ
+mNP
+aoO
+tvt
+peP
+spz
+sAt
+bSp
+jWm
+tay
+rRt
+lso
+mRy
+dEV
+eKI
+hgh
+hmE
+mnF
+tjv
+xYS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fCM
qQx
mcW
cxA
+<<<<<<< HEAD
lyl
+=======
+bZI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nMu
wDe
hxs
@@ -249582,7 +335176,11 @@ lvG
cvS
cvS
lvG
+<<<<<<< HEAD
bVZ
+=======
+cvS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tYZ
kRP
wOn
@@ -249598,6 +335196,7 @@ pzn
wvI
bBM
mIE
+<<<<<<< HEAD
mdQ
hBE
kJK
@@ -249613,20 +335212,46 @@ haC
qCB
bln
bln
+=======
+ldr
+hBE
+kJK
+iZr
+sHs
+jXr
+aLJ
+puf
+dyg
+haC
+haC
+haC
+fOU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sdr
dZX
xcZ
dZX
swF
+<<<<<<< HEAD
bln
bln
bln
+=======
+xEn
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
mfD
khy
@@ -249635,7 +335260,11 @@ ghY
ccw
cQL
pbs
+<<<<<<< HEAD
xHY
+=======
+uvu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bPc
ptY
ptY
@@ -249643,7 +335272,11 @@ ptY
ptY
ptY
ptY
+<<<<<<< HEAD
vyt
+=======
+dLL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vyt
vyt
vyt
@@ -249696,8 +335329,13 @@ lBD
bln
lBD
bln
+<<<<<<< HEAD
wUD
wUD
+=======
+vOy
+vOy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -249767,10 +335405,17 @@ bln
tlH
tlH
tlH
+<<<<<<< HEAD
uUq
gHL
iRa
gbM
+=======
+aDM
+aEj
+lWG
+bxS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
tlH
gmW
@@ -249785,6 +335430,7 @@ knl
knl
hNx
gmW
+<<<<<<< HEAD
sDM
gAt
kKL
@@ -249807,6 +335453,30 @@ mqq
vSa
fuY
clK
+=======
+uKY
+gAt
+kKL
+asN
+bUy
+bUy
+gBJ
+vNU
+vNU
+tvt
+ulR
+qjW
+qmh
+iuL
+tii
+lEO
+fPI
+ghb
+mqq
+vSa
+fuY
+oXb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pKb
eTM
vkG
@@ -249815,7 +335485,11 @@ lUb
vWm
pbW
sco
+<<<<<<< HEAD
amJ
+=======
+iBo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lzM
wbw
ddu
@@ -249840,20 +335514,34 @@ gDp
gDp
gDp
cvS
+<<<<<<< HEAD
cGA
kRP
uyU
gGC
heQ
nll
+=======
+muX
+kRP
+fYY
+qwo
+sOd
+eUK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ign
ebr
iJK
ebr
bzE
dYI
+<<<<<<< HEAD
vep
nDi
+=======
+wvI
+wTB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xke
ldr
vhT
@@ -249863,7 +335551,11 @@ gRI
lwd
mka
wvI
+<<<<<<< HEAD
msd
+=======
+rnp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wvI
bln
bln
@@ -249874,11 +335566,19 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
sdr
dZX
nto
+=======
+lSu
+bln
+sdr
+dZX
+gpB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ote
swF
swF
@@ -249895,7 +335595,11 @@ uVp
sTx
vyt
vyt
+<<<<<<< HEAD
yfT
+=======
+vyt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vyt
vyt
vyt
@@ -249953,8 +335657,13 @@ bln
bln
lBD
lBD
+<<<<<<< HEAD
wUD
wUD
+=======
+vOy
+vOy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -250024,10 +335733,17 @@ bln
tlH
tlH
tlH
+<<<<<<< HEAD
uUq
gHL
gHL
uUq
+=======
+aDM
+aEj
+aEj
+aDM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
tlH
dGO
@@ -250042,6 +335758,7 @@ aBf
knl
knl
dGO
+<<<<<<< HEAD
gdK
qgT
kKL
@@ -250068,6 +335785,34 @@ mJM
jOz
dEg
vBD
+=======
+rVE
+oqY
+kKL
+kKL
+kKL
+sIb
+uXd
+iiE
+oIj
+quS
+jNo
+hvQ
+gUv
+tCk
+fYz
+izC
+izC
+tLF
+fqR
+qEM
+lso
+ioE
+mJM
+jOz
+dEg
+hmx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hgh
eei
niu
@@ -250084,7 +335829,11 @@ hRH
dXi
mmh
ikz
+<<<<<<< HEAD
piI
+=======
+hTx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cvS
kRP
kRP
@@ -250109,7 +335858,11 @@ vXv
hGs
gOY
ylM
+<<<<<<< HEAD
vep
+=======
+wvI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jWt
cXV
nDq
@@ -250118,6 +335871,7 @@ swx
ldr
ldr
rSW
+<<<<<<< HEAD
xgr
mVe
fVE
@@ -250137,6 +335891,27 @@ tis
qci
tWy
dqg
+=======
+aHt
+wvI
+fVE
+wvI
+mQb
+bln
+uer
+bln
+bln
+mQb
+bln
+bln
+bln
+lSu
+dZX
+tis
+dZX
+tWy
+dZX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
swF
swF
qFu
@@ -250210,8 +335985,13 @@ lBD
lBD
bln
bln
+<<<<<<< HEAD
wUD
wUD
+=======
+vOy
+vOy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -250281,10 +336061,17 @@ bln
bln
tlH
bln
+<<<<<<< HEAD
uUq
gHL
gHL
uUq
+=======
+aDM
+aEj
+aEj
+aDM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
tlH
dGO
@@ -250301,6 +336088,7 @@ knl
dGO
uar
lli
+<<<<<<< HEAD
dwq
any
kKL
@@ -250321,6 +336109,28 @@ lso
vwO
lso
dCs
+=======
+nkE
+xwq
+kKL
+mzf
+blM
+fzK
+cax
+fFe
+gcP
+gcP
+gcP
+kJr
+tpO
+gpS
+izC
+xHr
+lso
+vwO
+lso
+ioE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mJM
obG
dEf
@@ -250356,7 +336166,11 @@ uep
vsZ
hnd
kRP
+<<<<<<< HEAD
lop
+=======
+wCN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
don
gJs
gJs
@@ -250366,7 +336180,11 @@ iJK
ebr
bzE
pMq
+<<<<<<< HEAD
vep
+=======
+wvI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bHu
cAu
xwc
@@ -250374,17 +336192,30 @@ raA
vRC
nSw
qUu
+<<<<<<< HEAD
qUu
+=======
+imJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fvR
kiE
fTB
pwF
+<<<<<<< HEAD
bln
bln
bln
bln
bln
bln
+=======
+mQb
+mQb
+bln
+bln
+bln
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -250467,8 +336298,13 @@ bln
lBD
bln
bln
+<<<<<<< HEAD
rPp
rPp
+=======
+dTI
+dTI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -250537,12 +336373,21 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
kKL
oEC
gHL
kKL
tlH
+=======
+qtD
+kKL
+cMr
+aEj
+kKL
+oFc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
dGO
knl
@@ -250556,11 +336401,16 @@ knl
knl
knl
dGO
+<<<<<<< HEAD
xPf
+=======
+bZW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lRs
tml
kKL
kKL
+<<<<<<< HEAD
aft
jsR
cpY
@@ -250579,15 +336429,43 @@ vwO
pxn
xjg
swI
+=======
+uFE
+xqk
+cpY
+cpY
+hhO
+tLI
+uoY
+xqU
+tLI
+fNZ
+fKZ
+cpY
+tLF
+nOj
+vwO
+gnT
+hgh
+ohb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mTS
obu
mjI
fCM
+<<<<<<< HEAD
qPu
niu
uOW
lwQ
ade
+=======
+dIL
+hDq
+tXc
+lwQ
+gkX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oeW
aTZ
fle
@@ -250604,7 +336482,11 @@ vSY
ubq
lfL
gdz
+<<<<<<< HEAD
isP
+=======
+iPz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cwu
kRP
kRP
@@ -250614,7 +336496,11 @@ hlp
cGA
kRP
npD
+<<<<<<< HEAD
wfu
+=======
+npD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
npD
npD
gGj
@@ -250643,11 +336529,19 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
dZX
kJI
+=======
+ntK
+mQb
+mQb
+dZX
+vGw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fgU
hPe
vMA
@@ -250659,7 +336553,11 @@ fQu
aiY
pnR
xfg
+<<<<<<< HEAD
rjH
+=======
+uza
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iAk
aRD
hHb
@@ -250678,7 +336576,11 @@ euc
ujs
mYh
ogF
+<<<<<<< HEAD
lIK
+=======
+hfy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uBi
uBi
lqz
@@ -250723,6 +336625,7 @@ lBD
bln
bln
bln
+<<<<<<< HEAD
kPS
hHG
hHG
@@ -250731,6 +336634,16 @@ khz
wNO
wNO
khz
+=======
+dHF
+hHG
+hHG
+hHG
+pUa
+wNO
+wNO
+pUa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -250793,11 +336706,19 @@ wNO
bln
bln
fsm
+<<<<<<< HEAD
yjo
kKL
kKL
odZ
odZ
+=======
+bln
+kKL
+kKL
+wsr
+wsr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
tlH
tlH
@@ -250814,6 +336735,7 @@ knl
knl
gmW
uar
+<<<<<<< HEAD
hNK
bfy
kKL
@@ -250829,25 +336751,56 @@ sJg
sJg
sJg
kqP
+=======
+gUa
+uNN
+kKL
+rBz
+sSX
+pns
+cpY
+vzH
+uuO
+uuO
+uuO
+uuO
+uuO
+uuO
+guA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cpY
lkr
lso
vwO
+<<<<<<< HEAD
nCz
+=======
+fME
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nKa
dqO
icA
joa
dqO
nKa
+<<<<<<< HEAD
tWZ
niu
+=======
+qYx
+qWe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
agK
lwQ
lwQ
bEL
+<<<<<<< HEAD
sjX
moE
+=======
+weI
+syv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bEL
lwQ
lwQ
@@ -250857,7 +336810,11 @@ lwQ
bEL
lwQ
qQp
+<<<<<<< HEAD
bXT
+=======
+gGI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
isP
ePi
rdG
@@ -250865,7 +336822,11 @@ vQP
rdG
jzY
xlh
+<<<<<<< HEAD
jQt
+=======
+hKY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uep
uep
uep
@@ -250879,9 +336840,15 @@ noR
wDg
rqD
wDg
+<<<<<<< HEAD
uin
vep
xEL
+=======
+edw
+wvI
+ksb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xyT
jvR
fFC
@@ -250889,7 +336856,11 @@ nnn
iIs
iDQ
msN
+<<<<<<< HEAD
gVC
+=======
+drK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lyH
isu
lmy
@@ -250901,8 +336872,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dZX
lIW
fgU
@@ -250918,7 +336894,11 @@ frq
rlS
cfe
mXi
+<<<<<<< HEAD
nDz
+=======
+mzZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mRI
bLz
bLz
@@ -251052,9 +337032,15 @@ bln
efv
bln
kKL
+<<<<<<< HEAD
xIh
lli
eEr
+=======
+uUp
+lli
+sQS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
@@ -251062,14 +337048,22 @@ gmW
gmW
gmW
gmW
+<<<<<<< HEAD
tEs
dGO
dGO
tEs
+=======
+kBc
+dGO
+dGO
+kBc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gmW
gmW
gmW
gmW
+<<<<<<< HEAD
kav
lCO
oEe
@@ -251080,10 +337074,23 @@ hxY
cpY
aMI
arW
+=======
+oOw
+aOW
+dXx
+rOw
+ctS
+qjJ
+nPc
+cpY
+mmw
+oKX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fkk
fkk
fkk
fkk
+<<<<<<< HEAD
spj
cmd
vrw
@@ -251093,19 +337100,38 @@ vwO
dKf
nKa
kyW
+=======
+dkZ
+dlH
+aBP
+ofl
+lso
+vwO
+ePP
+nKa
+dGq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wKe
vHf
cZd
nKa
+<<<<<<< HEAD
mPG
ted
krS
qkc
+=======
+lIP
+cJX
+krS
+aOU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mbB
rDa
mrB
jQD
slc
+<<<<<<< HEAD
dMB
rjC
qjF
@@ -251116,6 +337142,18 @@ tOO
qQp
qQp
lWj
+=======
+wZu
+xza
+qjF
+pPO
+qOj
+iyK
+uzr
+qQp
+qQp
+wjD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rZm
sOO
lRD
@@ -251137,6 +337175,7 @@ lmA
oqc
oAD
xKX
+<<<<<<< HEAD
vep
pBI
sCm
@@ -251146,6 +337185,17 @@ xAm
qSC
ldr
oOx
+=======
+wvI
+pBI
+sCm
+xFf
+kdC
+kRw
+fUW
+jeR
+pMN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mgD
oKL
elT
@@ -251159,21 +337209,36 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+dZX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dZX
dZX
dZX
dZX
+<<<<<<< HEAD
oOO
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iDp
swF
osm
iqu
fcu
+<<<<<<< HEAD
uOk
pnR
oTS
oPv
+=======
+vQz
+pnR
+oTS
+uxG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iAk
mWw
hHb
@@ -251186,8 +337251,13 @@ pza
pza
pza
pza
+<<<<<<< HEAD
rcO
wLK
+=======
+iHp
+cFM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mEx
ujs
mYh
@@ -251310,6 +337380,7 @@ gsK
kKU
kKL
cvF
+<<<<<<< HEAD
xUt
lli
kKL
@@ -251317,10 +337388,20 @@ gDL
iyY
tlH
vww
+=======
+sQS
+lli
+kKL
+tRq
+iyY
+tlH
+uMW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
dGO
iyg
hHq
+<<<<<<< HEAD
aNj
xTI
gmW
@@ -251345,10 +337426,37 @@ gtw
iZD
vrw
sLy
+=======
+hfd
+syC
+gmW
+cvH
+kbL
+kKL
+soE
+neE
+kKL
+kKL
+cvn
+btK
+aUt
+vnA
+ooG
+oUp
+syI
+xbn
+hJo
+vaL
+gtw
+wAJ
+aBP
+xVo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
qEM
pJC
nKa
+<<<<<<< HEAD
dhk
cDT
iTE
@@ -251358,6 +337466,17 @@ uYm
kcj
krS
bna
+=======
+jWO
+cDT
+rLL
+cAI
+cMN
+met
+idm
+krS
+ljB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xtc
wxH
voj
@@ -251367,7 +337486,11 @@ laD
xPv
mGO
tAx
+<<<<<<< HEAD
wbN
+=======
+qOj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
grT
lEo
shy
@@ -251388,7 +337511,11 @@ sZF
sZF
wDK
npD
+<<<<<<< HEAD
tZG
+=======
+cbC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nZH
xbC
dPj
@@ -251398,18 +337525,37 @@ npD
npD
npD
npD
+<<<<<<< HEAD
fvX
fvX
cnh
cnh
oSw
ybF
+=======
+mdI
+npD
+npD
+npD
+wvI
+fTH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wvI
wvI
wvI
wvI
vep
wvI
+<<<<<<< HEAD
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
@@ -251417,11 +337563,14 @@ bln
bln
bln
bln
+=======
+lSu
bln
bln
bln
-bln
-bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mwo
swF
eDh
@@ -251548,6 +337697,7 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
reu
jas
jas
@@ -251571,11 +337721,37 @@ xea
isj
gBs
lyv
+=======
+hAM
+kdS
+kdS
+eRE
+qQk
+cvJ
+kdS
+eRE
+kdS
+kdS
+kdS
+dop
+kdS
+kdS
+kdS
+kKL
+enY
+kKL
+kKL
+eaQ
+lqL
+aiu
+ijd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iyY
tlH
tlH
tlH
dGO
+<<<<<<< HEAD
ubK
uRo
aNj
@@ -251602,12 +337778,41 @@ gtw
iZD
vrw
krE
+=======
+brm
+uRo
+hfd
+jDX
+gmW
+bkR
+pAX
+kKL
+hfg
+hQW
+kKL
+soR
+yfg
+odF
+lia
+dgR
+haJ
+tYt
+nRW
+gtw
+aoM
+niO
+gtw
+wAJ
+aBP
+kNf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
cbs
nGA
nKa
nTV
jPl
+<<<<<<< HEAD
bGD
kXM
nKa
@@ -251615,6 +337820,15 @@ xXV
eYn
wjL
wbN
+=======
+jGJ
+kXM
+nKa
+uze
+eYn
+wjL
+niU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iWP
xIW
lrc
@@ -251624,10 +337838,17 @@ lCC
iKl
iKl
xyc
+<<<<<<< HEAD
dVw
bkV
ree
mpR
+=======
+sPJ
+bkV
+ree
+lOV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qQp
tQc
jbx
@@ -251637,12 +337858,20 @@ tQc
tQc
qQp
hRA
+<<<<<<< HEAD
lal
+=======
+dBb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rkL
cga
api
sZF
+<<<<<<< HEAD
sKf
+=======
+tKH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wRr
npD
cmw
@@ -251650,6 +337879,7 @@ nZH
msT
npD
npD
+<<<<<<< HEAD
hRe
hRe
alq
@@ -251657,6 +337887,26 @@ dFA
sZF
nBQ
sZF
+=======
+ouW
+aQj
+alq
+dFA
+sZF
+gTi
+emT
+wzv
+oCE
+gcT
+gcT
+lSu
+bln
+bln
+bln
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -251667,6 +337917,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -251680,6 +337931,10 @@ bln
bln
bln
bln
+=======
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
swF
jsq
ben
@@ -251805,8 +338060,12 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
bln
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -251815,12 +338074,17 @@ bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
kKL
+<<<<<<< HEAD
aXv
bSi
kKL
@@ -251828,11 +338092,21 @@ acm
tDy
kKL
tts
+=======
+fOq
+lli
+kKL
+tAN
+tDy
+kKL
+ftk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iyY
tlH
tlH
tlH
dGO
+<<<<<<< HEAD
nOI
uRo
aNj
@@ -251859,6 +338133,34 @@ aHZ
nsH
vrw
jlT
+=======
+vxW
+uRo
+hfd
+rsy
+gmW
+oiU
+xQU
+kKL
+kKL
+kuJ
+kKL
+cqb
+aYu
+gYT
+lia
+njj
+qEn
+tFe
+eay
+eay
+gtw
+gtw
+aHZ
+ehL
+aBP
+ofl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
qEM
xwz
@@ -251873,13 +338175,22 @@ gOb
gOb
aSo
aSo
+<<<<<<< HEAD
cCD
+=======
+gLn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZD
lnC
klc
lDM
+<<<<<<< HEAD
kNa
ica
+=======
+dVS
+bAj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lDM
klc
rWR
@@ -251892,20 +338203,30 @@ laD
laD
laD
xLK
+<<<<<<< HEAD
nHX
+=======
+pDL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hRA
ist
rkL
uFz
tFV
sZF
+<<<<<<< HEAD
edT
wRr
+=======
+ecW
+fed
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
npD
bPY
rwe
wGO
npD
+<<<<<<< HEAD
vMN
hRe
ves
@@ -251926,6 +338247,22 @@ bln
bln
bln
bln
+=======
+umD
+pgc
+dws
+dhR
+iye
+sZF
+xkr
+gTi
+cip
+oCE
+lSu
+mQb
+mQb
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -251933,7 +338270,17 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+uer
+mQb
+mQb
+bln
+mQb
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -251951,7 +338298,11 @@ wSw
fPZ
itl
tQM
+<<<<<<< HEAD
koX
+=======
+itl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
itl
qCU
vyt
@@ -252062,8 +338413,13 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
bln
+=======
+chb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -252078,11 +338434,19 @@ uei
bln
bln
kKL
+<<<<<<< HEAD
aPP
kKL
kKL
jRt
fTn
+=======
+enY
+kKL
+kKL
+eRf
+lfU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
@@ -252092,11 +338456,16 @@ mMb
kKL
kKL
iyY
+<<<<<<< HEAD
fvm
+=======
+vFT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
rCf
+<<<<<<< HEAD
hlt
kKL
iqA
@@ -252116,6 +338485,27 @@ fhS
pAn
cpY
bao
+=======
+uOm
+kKL
+rsf
+kKL
+kKL
+tSF
+kKL
+kKL
+cpY
+twn
+nBt
+jJQ
+rlE
+mBL
+vjA
+uDv
+aFh
+cpY
+pxp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lso
brj
mbk
@@ -252128,6 +338518,7 @@ lQG
oxU
pxX
bCf
+<<<<<<< HEAD
kmf
qOW
hDC
@@ -252137,6 +338528,17 @@ lDM
pjZ
vzN
oXq
+=======
+wor
+wor
+mfX
+sZD
+vgx
+lDM
+dxO
+omo
+jdm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xWT
klc
uiF
@@ -252156,6 +338558,7 @@ lGs
rfo
vzs
sZF
+<<<<<<< HEAD
wUb
mlo
npD
@@ -252177,6 +338580,37 @@ bln
bln
uer
bln
+=======
+sKf
+naF
+npD
+ebr
+iJK
+ebr
+npD
+olM
+xUW
+sKf
+tbQ
+sKf
+sZF
+ddA
+sZF
+sZF
+sZF
+bln
+quy
+uer
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
@@ -252189,11 +338623,18 @@ bln
bln
bln
bln
-bln
-bln
-bln
-bln
-bln
+=======
+hPv
+ujK
+ujK
+hBf
+eRE
+ujK
+ujK
+ujK
+iNl
+ujK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
swF
swF
swF
@@ -252205,7 +338646,11 @@ kCV
bkr
qOy
pbs
+<<<<<<< HEAD
rAL
+=======
+nZN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qMH
ptY
ptY
@@ -252213,7 +338658,11 @@ ptY
ptY
ptY
ptY
+<<<<<<< HEAD
vyt
+=======
+dLL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vyt
vyt
vyt
@@ -252319,8 +338768,13 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
vHT
bln
+=======
+sAd
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -252335,6 +338789,7 @@ uei
bln
bln
mMb
+<<<<<<< HEAD
hAW
jVm
sON
@@ -252360,22 +338815,59 @@ xUt
fKk
kKL
xOE
+=======
+nJK
+puz
+kSc
+kSc
+lRZ
+lRZ
+tYS
+lRZ
+vjq
+lRZ
+lRZ
+vjq
+pbS
+lRZ
+lRZ
+iLn
+niE
+bMF
+pJi
+ovz
+kKL
+sQS
+sna
+kKL
+nFt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
kKL
kKL
kKL
+<<<<<<< HEAD
nXs
+=======
+pcM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
kKL
kKL
kKL
+<<<<<<< HEAD
oFB
opH
oFB
+=======
+glz
+kjN
+hAl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vBG
rMS
pKw
@@ -252387,6 +338879,7 @@ rZR
bCf
wor
wor
+<<<<<<< HEAD
kqN
vFW
noW
@@ -252397,6 +338890,18 @@ rIc
tVB
klc
tDA
+=======
+qxG
+vFW
+noW
+nOh
+bNH
+bNH
+rIc
+gpR
+klc
+ooy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gsT
eDH
iYs
@@ -252406,6 +338911,7 @@ dVc
nfD
sUT
bIQ
+<<<<<<< HEAD
fFJ
hRA
npo
@@ -252417,10 +338923,24 @@ sKf
mlo
npD
ebr
+=======
+gib
+hRA
+npo
+woa
+uQj
+htH
+sZF
+akd
+mlo
+npD
+tMS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iJK
cpl
npD
fWL
+<<<<<<< HEAD
qUM
fZT
dFA
@@ -252428,6 +338948,23 @@ axC
sZF
uNw
vjZ
+=======
+qHt
+iiB
+dFA
+nhO
+sZF
+awO
+vjZ
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
@@ -252448,12 +338985,27 @@ bln
bln
bln
bln
+=======
+mQb
+mQb
+mQb
bln
bln
bln
+yfW
+nTX
+bln
+lSu
bln
bln
bln
+uer
+mQb
+bln
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
oiy
oiy
@@ -252576,7 +339128,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -252585,7 +339141,11 @@ bln
uei
tmR
uei
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -252593,6 +339153,7 @@ bln
bln
kKL
kKL
+<<<<<<< HEAD
tOe
rkm
fEY
@@ -252609,11 +339170,30 @@ tbK
ssM
lli
jRt
+=======
+aeS
+plI
+whe
+chc
+dDz
+kKL
+sQS
+sQS
+lli
+sQS
+lli
+kKL
+kRV
+ssM
+lli
+eRf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
kKL
lli
+<<<<<<< HEAD
xUt
lli
vYY
@@ -252636,6 +339216,30 @@ pxn
vBG
mQr
idp
+=======
+sQS
+lli
+uwE
+tnu
+eUU
+sdf
+vmO
+eYm
+kKL
+tvZ
+kKL
+kVv
+wgo
+lcs
+eGg
+kKL
+rjP
+vwO
+pxn
+vBG
+ulL
+kGm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rZZ
opc
qPI
@@ -252644,6 +339248,7 @@ cgs
bCf
wor
wor
+<<<<<<< HEAD
apt
amE
vgx
@@ -252652,6 +339257,16 @@ kAZ
gUg
amv
cTJ
+=======
+kjP
+amE
+vgx
+lDM
+oXq
+gUg
+amv
+sxs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
klc
aSo
aSo
@@ -252670,13 +339285,18 @@ tMO
tMO
tMO
sZF
+<<<<<<< HEAD
hil
+=======
+nfF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mlo
npD
wPE
iJK
pyY
npD
+<<<<<<< HEAD
vBa
vLo
hyL
@@ -252688,6 +339308,19 @@ vjZ
bln
bln
bln
+=======
+lYT
+waF
+jmY
+ptp
+iye
+sZF
+eZu
+vjZ
+mQb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -252698,7 +339331,11 @@ iAf
iAf
iAf
bln
+<<<<<<< HEAD
bln
+=======
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -252833,7 +339470,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -252842,7 +339483,11 @@ bln
uei
tmR
uei
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -252856,8 +339501,13 @@ mMb
kKL
kKL
kKL
+<<<<<<< HEAD
qUo
pjM
+=======
+fsJ
+ekj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nLY
lli
gAt
@@ -252865,6 +339515,7 @@ kKL
lIC
lRZ
pQa
+<<<<<<< HEAD
eDD
nhv
lli
@@ -252888,6 +339539,31 @@ dig
pbF
kKL
rjP
+=======
+rOv
+fuf
+lli
+kDO
+wsk
+hVR
+lli
+obt
+xWM
+dku
+kKL
+nqn
+lHA
+ddi
+kKL
+tvZ
+kKL
+pdB
+oBD
+lqM
+aYk
+kKL
+vpx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qEM
bbM
vBG
@@ -252914,7 +339590,11 @@ dDw
qHz
ekE
fzo
+<<<<<<< HEAD
czF
+=======
+fGY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qaU
jtH
qpb
@@ -252927,16 +339607,28 @@ jDc
tMO
nMb
sZF
+<<<<<<< HEAD
qwO
+=======
+oGN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wRr
npD
ebr
hcG
+<<<<<<< HEAD
bEH
npD
vtr
mmC
iQw
+=======
+nZH
+npD
+vtr
+giv
+aQj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dFA
oMs
sZF
@@ -252944,8 +339636,13 @@ eZu
vjZ
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -253087,10 +339784,17 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
reu
xog
xog
raq
+=======
+hAM
+kdS
+kdS
+nyZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -253116,11 +339820,16 @@ bxe
bxe
mHB
kKL
+<<<<<<< HEAD
gEl
+=======
+ycO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
aIE
lRZ
+<<<<<<< HEAD
cCR
lli
mRN
@@ -253136,13 +339845,34 @@ cOQ
vgU
kdw
qpQ
+=======
+rmP
+lli
+pKX
+sQS
+qdq
+sQS
+qdq
+lli
+qdq
+sQS
+unu
+hxa
+kXW
+saC
+xWr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
tvZ
cDw
lli
lli
lli
+<<<<<<< HEAD
iXB
+=======
+nfE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
cwO
vwO
@@ -253162,7 +339892,11 @@ ubk
ndJ
rHz
fdY
+<<<<<<< HEAD
xuM
+=======
+vjN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wXh
xCQ
ufN
@@ -253176,7 +339910,11 @@ nmC
cEo
kQJ
mFE
+<<<<<<< HEAD
dRe
+=======
+bdT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bsi
cmy
nAN
@@ -253184,6 +339922,7 @@ kCo
ezf
cnb
sZF
+<<<<<<< HEAD
sKf
wRr
npD
@@ -253193,12 +339932,27 @@ npD
npD
sZF
iqr
+=======
+uTV
+fed
+npD
+npD
+nvh
+npD
+npD
+sZF
+fzO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
sZF
sZF
sZF
eZu
+<<<<<<< HEAD
sZF
+=======
+vjZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -253213,7 +339967,11 @@ weR
lQO
hJD
iAf
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -253344,7 +340102,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -253352,7 +340114,11 @@ bln
bln
tmR
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
tmR
bln
@@ -253367,6 +340133,7 @@ bln
vsI
acE
acE
+<<<<<<< HEAD
wtX
eqJ
ktJ
@@ -253374,10 +340141,20 @@ oBQ
mHB
gUY
rmR
+=======
+acE
+kXQ
+gWV
+oBQ
+mHB
+gUY
+iLn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lli
kKL
kKL
lRZ
+<<<<<<< HEAD
hfG
xUt
tNb
@@ -253402,6 +340179,32 @@ jzR
fpA
kKL
tXg
+=======
+pEc
+sQS
+wfE
+opU
+ykd
+sQS
+wfE
+qch
+gyd
+tTK
+aXc
+eUU
+iCo
+kiX
+enH
+kKL
+tvZ
+kKL
+lne
+rrg
+atI
+fpA
+kKL
+rtf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qEM
lso
bGT
@@ -253409,11 +340212,19 @@ vBG
wvW
moG
vBG
+<<<<<<< HEAD
ayR
oMR
hsC
vBG
uSS
+=======
+rWg
+oMR
+cNL
+vBG
+eTY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xrb
qhN
amE
@@ -253422,16 +340233,27 @@ klc
pgY
hXU
oRu
+<<<<<<< HEAD
hIe
uKj
dDw
fWn
+=======
+ccR
+uKj
+dDw
+fsz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qgu
tYA
vds
mrD
liz
+<<<<<<< HEAD
rKX
+=======
+txH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mFE
nEc
klk
@@ -253441,6 +340263,7 @@ sSj
tMO
jYy
sZF
+<<<<<<< HEAD
vwr
wRr
eZu
@@ -253454,14 +340277,35 @@ xpT
hEZ
sZF
kCh
+=======
+jPi
+fed
+nGv
+hQK
+eZu
+pGG
+sZF
+dlS
+pZZ
+xpT
+hEZ
+sZF
+lGH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eZu
sZF
sZF
vjZ
sZF
+<<<<<<< HEAD
gar
bln
fBN
+=======
+lSu
+bln
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vYq
iAf
tUh
@@ -253601,8 +340445,13 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
wHr
bln
+=======
+sAd
+ftY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cnx
tmR
tmR
@@ -253627,24 +340476,41 @@ kxv
fIs
kxv
jju
+<<<<<<< HEAD
lXC
lFG
rlH
+=======
+qNZ
+lFG
+qRo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gxh
gxh
gxh
kKL
gAt
+<<<<<<< HEAD
hfG
gAt
xUt
gPo
+=======
+pEc
+gAt
+sQS
+hFm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
mMb
mMb
kKL
+<<<<<<< HEAD
cjh
+=======
+xds
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
@@ -253663,16 +340529,28 @@ vwO
mqq
ivB
vBG
+<<<<<<< HEAD
loG
iOu
sZF
sZF
puB
+=======
+dxq
+jAG
+sZF
+sZF
+jbf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
sZF
sxw
ayI
+<<<<<<< HEAD
ktD
+=======
+jdA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mSM
ozN
sZF
@@ -253685,10 +340563,17 @@ sZF
fLQ
mjH
qLy
+<<<<<<< HEAD
obr
xMM
nqd
ttO
+=======
+vds
+iCj
+nqd
+eUN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mFE
fil
pWY
@@ -253698,6 +340583,7 @@ oqT
tMO
vIe
sZF
+<<<<<<< HEAD
xsA
wRr
dDo
@@ -253712,20 +340598,46 @@ eGK
sZF
eZu
eZu
+=======
+gWh
+wRr
+lMa
+frz
+dhv
+pZZ
+hLX
+pZZ
+pZZ
+sKf
+eGK
+sZF
+cXR
+aTc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xpT
bdx
sKf
cmq
+<<<<<<< HEAD
gar
bln
bln
+=======
+lSu
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vYq
fWS
weR
jdJ
xVO
jAQ
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -253858,8 +340770,13 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
bln
+=======
+chb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -253881,7 +340798,11 @@ bln
sEB
acE
acE
+<<<<<<< HEAD
het
+=======
+acE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lQf
swt
xTp
@@ -253889,41 +340810,72 @@ pDQ
xBL
wJM
wJM
+<<<<<<< HEAD
rlH
kKL
dnL
hfG
+=======
+qRo
+kKL
+dnL
+pEc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
pVl
kKL
kKL
+<<<<<<< HEAD
kbp
tlH
tlH
kKL
diK
+=======
+xUd
+tlH
+tlH
+kKL
+rEM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
tlH
tlH
bln
kKL
+<<<<<<< HEAD
emx
vIL
fOg
kQH
snR
+=======
+dYS
+aXc
+amW
+qmq
+kWV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
asg
kKL
kdF
qGV
hUx
+<<<<<<< HEAD
bSC
+=======
+xVv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
sZF
sZF
sZF
sZF
+<<<<<<< HEAD
sKf
+=======
+ayd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wEV
sKf
sZF
@@ -253931,7 +340883,11 @@ sZF
sZF
sZF
lpC
+<<<<<<< HEAD
uWp
+=======
+sZF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
pwV
pwV
@@ -253957,32 +340913,53 @@ sZF
sZF
hEZ
mlo
+<<<<<<< HEAD
fUx
sKf
+=======
+lCc
+lRK
+xKx
+bHc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
sZF
sZF
sZF
sZF
sZF
+<<<<<<< HEAD
sZF
sZF
eZu
+=======
+sVA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
sZF
sZF
vjZ
sZF
+<<<<<<< HEAD
gar
bln
fBN
+=======
+lSu
+bln
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vYq
iAf
qPY
tUh
xVO
jAQ
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -254115,15 +341092,26 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
dqA
jas
jas
nIe
+=======
+fYT
+kdS
+kdS
+wSp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
uei
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -254149,7 +341137,11 @@ bqe
gxh
kKL
hOu
+<<<<<<< HEAD
hfG
+=======
+pEc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hJx
lli
fAF
@@ -254158,7 +341150,11 @@ kKL
mMb
mMb
kKL
+<<<<<<< HEAD
cjh
+=======
+xds
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
mMb
mMb
@@ -254174,7 +341170,11 @@ kKL
xcy
rvZ
hUx
+<<<<<<< HEAD
veq
+=======
+cie
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aLX
vng
gNT
@@ -254190,7 +341190,11 @@ xwM
daR
mQg
lRW
+<<<<<<< HEAD
hkt
+=======
+qDm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hkt
hkt
hkt
@@ -254209,16 +341213,30 @@ sWs
sXK
xTQ
sWs
+<<<<<<< HEAD
sWs
sWs
sWs
sWs
xTQ
vwN
+=======
+rzV
+sWs
+sWs
+rzV
+xTQ
+vwN
+rzV
+rzV
+rzV
+vtO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sWs
sWs
sWs
sWs
+<<<<<<< HEAD
leE
sWs
sWs
@@ -254231,6 +341249,16 @@ sZF
bln
bln
bln
+=======
+skI
+osn
+nzN
+ktf
+sZF
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -254240,7 +341268,11 @@ jAQ
iAf
iAf
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -254375,7 +341407,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -254403,14 +341439,22 @@ cvF
lli
kKL
mwu
+<<<<<<< HEAD
rlH
kKL
kKL
gRL
+=======
+qRo
+kKL
+kKL
+lwI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
jhS
tOX
kKL
+<<<<<<< HEAD
kaI
xIh
wvJ
@@ -254426,24 +341470,53 @@ igX
igX
kKL
neQ
+=======
+hVz
+uUp
+khs
+kKL
+xds
+dYS
+amW
+amW
+amW
+amW
+rkh
+igX
+igX
+kKL
+mVS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
fyZ
hUx
+<<<<<<< HEAD
veq
+=======
+cie
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
eFS
sZF
sZF
sZF
sZF
+<<<<<<< HEAD
npD
+=======
+sZF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eZi
sKf
mFj
npD
+<<<<<<< HEAD
bEo
+=======
+eMn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sou
mZH
sZF
@@ -254459,6 +341532,7 @@ sKf
sKf
sKf
ktf
+<<<<<<< HEAD
dPP
sKf
sKf
@@ -254485,6 +341559,35 @@ sKf
wRr
wEV
sZF
+=======
+tEe
+sKf
+sKf
+lVS
+oLn
+jgL
+gCu
+elE
+xJv
+bge
+sKf
+jgL
+sKf
+jgL
+xpT
+sKf
+ktf
+mFj
+sKf
+jgL
+sKf
+sKf
+jgL
+wRr
+wEV
+sZF
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -254493,11 +341596,18 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+fPc
+mQb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -254632,12 +341742,21 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
ngh
bln
uei
tmR
uei
bln
+=======
+chb
+mQb
+uei
+tmR
+uei
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -254663,16 +341782,27 @@ qqB
gxh
kKL
weF
+<<<<<<< HEAD
hfG
+=======
+pEc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
moF
cjI
kKL
pQa
+<<<<<<< HEAD
erq
erq
oPw
srU
+=======
+wWo
+wWo
+oPO
+jPq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xWM
kKL
kKL
@@ -254682,18 +341812,30 @@ kKL
kKL
kKL
kKL
+<<<<<<< HEAD
nLs
+=======
+meZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aJG
sQE
hwE
hwE
cMe
+<<<<<<< HEAD
veq
+=======
+cie
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uvt
tlP
wIg
vzX
+<<<<<<< HEAD
bJJ
+=======
+gAz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cyX
sZF
npD
@@ -254701,7 +341843,11 @@ npD
npD
npD
npD
+<<<<<<< HEAD
mSv
+=======
+hTu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
npD
npD
npD
@@ -254719,8 +341865,13 @@ npD
npD
npD
npD
+<<<<<<< HEAD
tvx
qNX
+=======
+npD
+gDE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
npD
npD
npD
@@ -254746,14 +341897,24 @@ bln
bln
uer
bln
+<<<<<<< HEAD
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
+=======
+yfW
+mQb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -254889,8 +342050,13 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
vHT
bln
+=======
+sAd
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uei
tmR
uei
@@ -254920,12 +342086,20 @@ hJx
qFW
kKL
hOu
+<<<<<<< HEAD
hfG
+=======
+pEc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hJx
mzM
hUi
kKL
+<<<<<<< HEAD
uar
+=======
+eqP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unu
kKL
kKL
@@ -254939,13 +342113,21 @@ jSC
bdS
dtb
hUD
+<<<<<<< HEAD
bOh
+=======
+nNi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rvZ
lso
lso
rCu
cYE
+<<<<<<< HEAD
tCG
+=======
+hZT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
idi
cZU
kBl
@@ -254957,8 +342139,13 @@ awK
ppQ
mrA
mtI
+<<<<<<< HEAD
axc
wgR
+=======
+dAh
+mYp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
owC
tsr
moL
@@ -254967,12 +342154,21 @@ wHc
aEA
dng
dAB
+<<<<<<< HEAD
ubh
ubh
ubh
ubh
ubh
ubh
+=======
+rHi
+rHi
+rHi
+rHi
+rHi
+rHi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
pnA
qFp
@@ -255000,6 +342196,7 @@ pHR
wEV
vjZ
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -255009,6 +342206,17 @@ bln
bln
bln
uer
+=======
+mQb
+bln
+bln
+mQb
+mQb
+bln
+mQb
+uer
+fPc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -255146,7 +342354,11 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
vnS
+=======
+uap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
uei
tmR
@@ -255177,13 +342389,21 @@ lli
gxh
kKL
kKL
+<<<<<<< HEAD
hfG
+=======
+pEc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
kKL
kKL
kIl
+<<<<<<< HEAD
nNI
+=======
+cqN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
eIk
xry
@@ -255198,11 +342418,19 @@ qMm
hUD
sOH
hUx
+<<<<<<< HEAD
rek
rek
hUx
rNQ
tCG
+=======
+igt
+rek
+hUx
+rNQ
+hZT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
idi
aID
gky
@@ -255212,11 +342440,16 @@ cgZ
uvt
iBa
pra
+<<<<<<< HEAD
dyW
+=======
+axZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mtI
lUf
keZ
owC
+<<<<<<< HEAD
jIP
qOH
veX
@@ -255230,6 +342463,21 @@ ubh
ubh
ubh
ubh
+=======
+pXt
+qOH
+jIP
+wHc
+sgL
+pTU
+itt
+rHi
+rHi
+rHi
+rHi
+rHi
+rHi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
baF
fvk
@@ -255258,6 +342506,7 @@ wEV
vjZ
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -255268,6 +342517,18 @@ bln
bln
bln
bln
+=======
+mQb
+bln
+bln
+mQb
+bln
+mQb
+bln
+fPc
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -255403,7 +342664,11 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
ngh
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -255455,11 +342720,19 @@ qMm
hUD
pyJ
lPh
+<<<<<<< HEAD
rBp
hUD
ebb
cYE
tCG
+=======
+aJj
+hUD
+ebb
+cYE
+hZT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
idi
aID
ddk
@@ -255474,6 +342747,7 @@ mtI
uxj
eNK
owC
+<<<<<<< HEAD
wAx
jTZ
ftt
@@ -255487,6 +342761,21 @@ ubh
ubh
ubh
ubh
+=======
+xGA
+jTZ
+xGA
+wHc
+xKk
+emK
+uvU
+rHi
+rHi
+rHi
+rHi
+rHi
+rHi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qLY
oCA
fvk
@@ -255507,22 +342796,39 @@ tgx
tgx
tgx
tgx
+<<<<<<< HEAD
ctF
tmR
+=======
+qLY
+xSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
rzL
gea
sZF
+<<<<<<< HEAD
+=======
+mQb
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
bln
+=======
+mQb
bln
-bln
-bln
-bln
+pMM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -255660,6 +342966,7 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
dqA
jas
jas
@@ -255682,6 +342989,30 @@ bYr
bYx
jas
ike
+=======
+fYT
+kdS
+kdS
+eRE
+kdS
+kdS
+kdS
+eRE
+kdS
+kdS
+xFn
+eRE
+kdS
+kdS
+kdS
+eRE
+kdS
+gSd
+lej
+eRE
+kdS
+lVr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
hTB
sRI
@@ -255714,9 +343045,15 @@ nVr
wFO
bzA
hUD
+<<<<<<< HEAD
lso
byK
hMs
+=======
+eaT
+byK
+sDd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bRd
fqQ
wIg
@@ -255755,6 +343092,7 @@ hfc
ocD
diL
qVz
+<<<<<<< HEAD
pNY
edp
dcr
@@ -255762,6 +343100,15 @@ aRl
bCL
ofr
sBx
+=======
+luD
+tfl
+dXI
+pTT
+eLm
+jVs
+hfc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hfc
jCE
adY
@@ -255770,6 +343117,7 @@ sZF
pHR
wEV
sZF
+<<<<<<< HEAD
bln
bln
bln
@@ -255783,6 +343131,21 @@ bln
bln
bln
bln
+=======
+mQb
+uer
+mQb
+mQb
+ntK
+bln
+bln
+mQb
+bln
+yfW
+nwD
+bln
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -255955,7 +343318,11 @@ kKL
kKL
gkP
kKL
+<<<<<<< HEAD
wKY
+=======
+ilq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eSn
bJQ
qCA
@@ -255973,7 +343340,11 @@ vfo
hUD
lso
cYE
+<<<<<<< HEAD
nYY
+=======
+fkw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ult
bsG
wGF
@@ -255998,7 +343369,11 @@ mfV
xpA
uHc
cpg
+<<<<<<< HEAD
gUX
+=======
+gRA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cpg
cdl
pMF
@@ -256014,11 +343389,19 @@ dbr
aFJ
xJj
xJj
+<<<<<<< HEAD
lvh
iVT
ogl
ffz
bzB
+=======
+klW
+iVT
+ogl
+eyR
+goe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diL
vTJ
apT
@@ -256027,6 +343410,7 @@ vjZ
laf
wEV
vjZ
+<<<<<<< HEAD
bln
bln
bln
@@ -256041,6 +343425,22 @@ bln
bln
bln
bln
+=======
+mQb
+bln
+bln
+mQb
+uer
+bln
+bln
+mQb
+mQb
+fPc
+bln
+bln
+mQb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -256212,7 +343612,11 @@ nqn
kKL
gkP
kKL
+<<<<<<< HEAD
yfY
+=======
+tgv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
huB
ogd
hff
@@ -256230,7 +343634,11 @@ cLJ
iQQ
lso
cYE
+<<<<<<< HEAD
uIS
+=======
+gAZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ult
wjz
tXh
@@ -256242,7 +343650,11 @@ pKJ
rIU
tLM
mtI
+<<<<<<< HEAD
vtA
+=======
+nRX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sfY
owC
bYS
@@ -256256,7 +343668,11 @@ jbU
jbU
jbU
jbU
+<<<<<<< HEAD
bFr
+=======
+bkQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
drr
qhL
qhL
@@ -256286,6 +343702,7 @@ wEV
vjZ
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -256298,6 +343715,20 @@ bln
bln
bln
bln
+=======
+uer
+mQb
+bln
+mQb
+bln
+bln
+mQb
+fPc
+bln
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -256465,11 +343896,19 @@ tml
kKL
kLb
qpd
+<<<<<<< HEAD
oNy
kKL
gkP
kKL
flV
+=======
+obl
+kKL
+gkP
+kKL
+sTA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ivH
lVF
pup
@@ -256487,7 +343926,11 @@ bwl
hUD
uff
cYE
+<<<<<<< HEAD
hXt
+=======
+gAZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ult
hpC
rIU
@@ -256497,10 +343940,17 @@ irA
uzi
pdy
fiS
+<<<<<<< HEAD
uTL
mtI
nRX
jVL
+=======
+agJ
+mtI
+vtA
+muP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
owC
owC
owC
@@ -256509,8 +343959,13 @@ wHc
mYq
nyH
lFW
+<<<<<<< HEAD
rEd
pZA
+=======
+jzH
+mde
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gSN
jbU
wnX
@@ -256520,10 +343975,17 @@ pvB
ehd
ehd
ehd
+<<<<<<< HEAD
wmX
ooo
rtn
qEv
+=======
+ehd
+ooo
+rtn
+huq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vDu
lva
lva
@@ -256542,6 +344004,7 @@ pHR
wEV
vjZ
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -256551,6 +344014,17 @@ bln
bln
bln
bln
+=======
+uer
+bln
+mQb
+mQb
+mQb
+bln
+bln
+bln
+yfW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -256731,7 +344205,11 @@ bla
sil
hUD
hUD
+<<<<<<< HEAD
fgm
+=======
+pGT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qok
iZn
xzd
@@ -256744,7 +344222,11 @@ wND
iQQ
rvZ
cYE
+<<<<<<< HEAD
uIS
+=======
+aPl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ult
vuq
tfM
@@ -256777,6 +344259,7 @@ wve
hfc
hfc
hfc
+<<<<<<< HEAD
iWI
kRI
nXp
@@ -256784,6 +344267,15 @@ gvM
kva
oXT
uPa
+=======
+mns
+hEP
+wGt
+dAl
+hWt
+ocJ
+mBs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ccQ
aCb
wAY
@@ -256799,6 +344291,10 @@ pHR
wEV
sZF
bln
+<<<<<<< HEAD
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -256806,9 +344302,14 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
+=======
+fPc
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -256987,7 +344488,11 @@ kCg
gjc
bLQ
vaE
+<<<<<<< HEAD
tSt
+=======
+hUD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hUD
hUD
hUD
@@ -256999,9 +344504,15 @@ sEi
sEi
naP
hUD
+<<<<<<< HEAD
jed
iIk
jed
+=======
+tRo
+iQa
+tRo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ult
ult
wBk
@@ -257027,7 +344538,11 @@ gaT
bZc
qlO
jbU
+<<<<<<< HEAD
ily
+=======
+hzb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hdH
qhL
dkK
@@ -257049,25 +344564,43 @@ vVP
vVP
vVP
vVP
+<<<<<<< HEAD
ctF
tmR
+=======
+qLY
+xSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZF
pHR
wEV
sZF
+<<<<<<< HEAD
bln
bln
bln
bln
+=======
+mQb
+mQb
+bln
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
vzD
vzD
vzD
gQw
gQw
+<<<<<<< HEAD
vsI
bln
bln
+=======
+oMa
+bln
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -257240,6 +344773,7 @@ lIC
lli
unu
kKL
+<<<<<<< HEAD
hno
poy
poy
@@ -257247,6 +344781,15 @@ vvJ
hUD
ybr
bpL
+=======
+nMT
+poy
+poy
+nRV
+hUD
+ygf
+dsZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pIw
hUD
ktz
@@ -257259,7 +344802,11 @@ iQQ
lso
rNQ
lso
+<<<<<<< HEAD
aop
+=======
+pkg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yar
mdl
rIU
@@ -257280,9 +344827,15 @@ jbU
pEE
cAG
nbq
+<<<<<<< HEAD
hAq
nDB
nfW
+=======
+iNY
+kiQ
+xGK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jbU
lhu
hdH
@@ -257313,8 +344866,13 @@ wRr
wEV
vjZ
bln
+<<<<<<< HEAD
bln
bln
+=======
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
vzD
@@ -257322,8 +344880,13 @@ oIR
vzD
jCl
kir
+<<<<<<< HEAD
sEB
bln
+=======
+qVo
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -257497,7 +345060,11 @@ bcC
eFO
unu
kKL
+<<<<<<< HEAD
hno
+=======
+tUO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
poy
poy
vvJ
@@ -257517,7 +345084,11 @@ dFO
cYE
lso
hDb
+<<<<<<< HEAD
azU
+=======
+exm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nIl
nVC
abM
@@ -257534,10 +345105,17 @@ ujP
htO
sqn
jbU
+<<<<<<< HEAD
iyP
dUe
ank
wgH
+=======
+gEy
+dUe
+ank
+baX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUM
wlW
jbU
@@ -257570,17 +345148,28 @@ wRr
sKf
vjZ
bln
+<<<<<<< HEAD
bln
bln
bln
+=======
+mQb
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
vzD
vzD
vzD
kir
vzD
+<<<<<<< HEAD
sEB
bln
+=======
+rwt
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -257754,12 +345343,21 @@ weF
fMc
aME
kKL
+<<<<<<< HEAD
qLf
poy
poy
lNk
hUD
nbL
+=======
+kIr
+poy
+poy
+tav
+hUD
+uZu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rGd
whC
hUD
@@ -257779,8 +345377,13 @@ gqK
nxU
gjg
dxg
+<<<<<<< HEAD
gJi
fVC
+=======
+ivG
+aYi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dkr
cHQ
jDm
@@ -257794,11 +345397,19 @@ jbU
anP
cRK
uMK
+<<<<<<< HEAD
udQ
oMT
qwJ
jbU
whc
+=======
+rep
+oMT
+ppz
+jbU
+uQR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iZQ
llw
aus
@@ -257836,9 +345447,15 @@ ydh
dFG
uZc
gQw
+<<<<<<< HEAD
bln
bln
bln
+=======
+mQb
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -258011,7 +345628,11 @@ nLY
lli
aME
kKL
+<<<<<<< HEAD
ttv
+=======
+ptS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
poy
poy
hUe
@@ -258054,12 +345675,17 @@ pbQ
pbQ
pbQ
pbQ
+<<<<<<< HEAD
eQQ
+=======
+jbU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lKq
pMY
kLy
bGA
lKq
+<<<<<<< HEAD
bNu
hUf
bKm
@@ -258071,6 +345697,19 @@ pJc
iBO
tPx
trn
+=======
+tYW
+oYn
+cfR
+xMT
+hjE
+lqN
+bkS
+pJc
+iBO
+xfp
+agd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bgx
buv
jhC
@@ -258093,9 +345732,15 @@ uZc
cDk
sGZ
gQw
+<<<<<<< HEAD
bln
bln
bln
+=======
+mQb
+mQb
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -258260,6 +345905,7 @@ iwO
uYR
kKL
kKL
+<<<<<<< HEAD
tfu
aMa
tfu
@@ -258269,6 +345915,17 @@ xUT
uZn
kKL
ttv
+=======
+kKL
+aMa
+kKL
+kKL
+kKL
+iVD
+uZn
+kKL
+ptS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
prg
prg
caY
@@ -258279,7 +345936,11 @@ gEE
gEE
gEE
oNC
+<<<<<<< HEAD
gEE
+=======
+nmD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gEE
gEE
tva
@@ -258293,7 +345954,11 @@ sxZ
oOo
xvy
wLl
+<<<<<<< HEAD
axc
+=======
+tKD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oLg
eLr
wtT
@@ -258301,10 +345966,17 @@ mbK
jQS
eNK
aYJ
+<<<<<<< HEAD
sSz
aYJ
aYJ
bXL
+=======
+jpN
+aYJ
+aYJ
+dwZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eLr
eaa
via
@@ -258312,15 +345984,24 @@ aYJ
lAw
aYJ
aYJ
+<<<<<<< HEAD
aYJ
+=======
+wib
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eLr
hAm
via
via
tPz
iRN
+<<<<<<< HEAD
via
ojP
+=======
+odR
+leo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qFt
pTY
lcu
@@ -258351,7 +346032,11 @@ gTq
fNa
gQw
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -258525,9 +346210,15 @@ kKL
pzV
uZn
kKL
+<<<<<<< HEAD
xXU
spW
kVE
+=======
+jbz
+nKb
+god
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xse
iQQ
gEE
@@ -258550,7 +346241,11 @@ pJV
mZG
mZG
qEZ
+<<<<<<< HEAD
axc
+=======
+urk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dFW
aYJ
aYJ
@@ -258558,7 +346253,11 @@ aYJ
aYJ
wUt
urK
+<<<<<<< HEAD
xjU
+=======
+mNt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nJT
urK
urK
@@ -258576,8 +346275,13 @@ pJV
pJV
pJV
aYJ
+<<<<<<< HEAD
aYJ
sSE
+=======
+cTR
+leo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wOX
efk
jTr
@@ -258608,6 +346312,10 @@ gQw
gQw
vzD
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -258670,7 +346378,10 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
wNO
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(181,1,3) = {"
wNO
@@ -258773,11 +346484,19 @@ kKL
kKL
kKL
kKL
+<<<<<<< HEAD
qAS
fUc
jaX
glI
gZR
+=======
+cDv
+fUc
+jaX
+glI
+mRY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kKL
kKL
mbG
@@ -258787,7 +346506,11 @@ hUD
hUD
hUD
hUD
+<<<<<<< HEAD
gEE
+=======
+cEz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gEE
gEE
gEE
@@ -258801,6 +346524,7 @@ gqj
emp
cYE
lso
+<<<<<<< HEAD
kvG
wLl
qXp
@@ -258808,6 +346532,15 @@ uxA
pUn
wLl
dzg
+=======
+qbp
+wLl
+qfA
+uxA
+pUn
+wLl
+jYF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fXr
dFj
dFj
@@ -258815,26 +346548,45 @@ uZB
oni
nxa
qwN
+<<<<<<< HEAD
tkS
dFj
dFj
gwm
dFj
niC
+=======
+cLK
+dFj
+dFj
+dFj
+dFj
+xnM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xnM
xnM
fLl
wMm
+<<<<<<< HEAD
wqb
niC
+=======
+xnM
+wqb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xnM
xnM
xnM
xnM
lYg
xYj
+<<<<<<< HEAD
pIt
kfZ
+=======
+kkX
+leo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qFt
bYu
qkH
@@ -258865,6 +346617,12 @@ bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -258925,9 +346683,12 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
wNO
wNO
wNO
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(182,1,3) = {"
wNO
@@ -259030,15 +346791,25 @@ iSQ
qji
pyD
kKL
+<<<<<<< HEAD
mqO
+=======
+gCs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUc
sBi
xYA
ldi
lUC
+<<<<<<< HEAD
vhm
oLG
jbu
+=======
+cZc
+oLG
+eQF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oxV
oxV
jbG
@@ -259069,6 +346840,7 @@ wnT
wnT
oHK
oHK
+<<<<<<< HEAD
cbF
dEC
oHK
@@ -259094,6 +346866,33 @@ wLl
wLl
hjE
vWo
+=======
+xer
+wKi
+oHK
+oHK
+umv
+cPt
+nOa
+hnP
+nsZ
+fki
+iIJ
+hYE
+iIJ
+dia
+nsZ
+nsZ
+uoC
+nsZ
+uoC
+nsZ
+nsZ
+nsZ
+nsZ
+hjE
+xSg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fOl
cyL
jAI
@@ -259119,6 +346918,23 @@ bRz
vzD
bln
bln
+<<<<<<< HEAD
+=======
+mQb
+bln
+bln
+mQb
+uer
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
@@ -259127,13 +346943,10 @@ bln
bln
bln
bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
+=======
+wNO
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -259317,12 +347130,21 @@ cYE
lso
pHX
nDd
+<<<<<<< HEAD
qWh
lmY
haQ
snI
bZQ
elf
+=======
+soz
+faq
+ofi
+snI
+bZQ
+gSq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ojF
rQW
ftN
@@ -259330,6 +347152,7 @@ bxP
vvE
tJG
oHK
+<<<<<<< HEAD
goq
goq
rDH
@@ -259350,6 +347173,28 @@ cQs
bdQ
nsZ
bkF
+=======
+hJH
+hJH
+tPL
+eOx
+nsZ
+nsZ
+uoC
+gzH
+uoC
+nsZ
+nsZ
+fFQ
+igd
+mzg
+tIq
+tIq
+cQs
+bdQ
+nsZ
+pnK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cSw
cmx
yeC
@@ -259374,6 +347219,13 @@ lEz
kPw
dAx
gQw
+<<<<<<< HEAD
+=======
+mQb
+mQb
+uer
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -259386,11 +347238,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -259545,7 +347401,11 @@ fLb
oHh
kKL
bpQ
+<<<<<<< HEAD
bsc
+=======
+kcT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oih
dmL
lUC
@@ -259587,6 +347447,7 @@ vaA
gXJ
wgU
oHK
+<<<<<<< HEAD
pnq
goq
rDH
@@ -259603,6 +347464,24 @@ awa
awa
awa
xUk
+=======
+nWe
+hJH
+tPL
+oiZ
+nsZ
+izD
+wbR
+djG
+eqj
+bjI
+tqs
+sqt
+sqt
+sqt
+sqt
+sqt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aWg
xgK
nsZ
@@ -259631,6 +347510,16 @@ lbf
esF
bRz
gQw
+<<<<<<< HEAD
+=======
+mQb
+bln
+bln
+bln
+bln
+lSu
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -259640,6 +347529,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -259648,6 +347538,9 @@ bln
bln
bln
bln
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -259801,11 +347694,19 @@ eOm
kKL
kKL
kKL
+<<<<<<< HEAD
dvS
pwd
glI
tsR
gZR
+=======
+mly
+pwd
+glI
+tsR
+mRY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lUC
tXV
kvX
@@ -259815,7 +347716,11 @@ qrQ
wrX
wrX
wrX
+<<<<<<< HEAD
gEE
+=======
+cEz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gEE
gEE
gEE
@@ -259829,9 +347734,15 @@ urw
emp
bvI
lso
+<<<<<<< HEAD
mtT
pLa
jJF
+=======
+cUB
+nYm
+mNi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yeB
uuC
hDb
@@ -259846,6 +347757,7 @@ hhP
oHK
iZl
iZl
+<<<<<<< HEAD
ieb
iZl
wLl
@@ -259860,6 +347772,22 @@ awa
awa
awa
xUk
+=======
+sVi
+iZl
+nsZ
+fBJ
+tkp
+tur
+bjL
+sjl
+fZy
+fZy
+fZy
+fZy
+fZy
+gPC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wvz
srW
nsZ
@@ -259889,6 +347817,16 @@ bRz
bVL
vzD
bln
+<<<<<<< HEAD
+=======
+fsm
+bln
+bln
+uer
+bln
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -259897,6 +347835,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -259905,6 +347844,9 @@ bln
bln
bln
bln
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -260062,11 +348004,19 @@ pfP
apD
ugG
gIt
+<<<<<<< HEAD
fkc
lUC
ccT
nyC
opw
+=======
+mnW
+lUC
+ccT
+nyC
+eUz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oTA
oTA
hIN
@@ -260104,6 +348054,7 @@ aju
gPY
qWu
fbl
+<<<<<<< HEAD
foy
krY
awa
@@ -260111,6 +348062,15 @@ awa
awa
awa
jvc
+=======
+rlu
+nsZ
+mFb
+aHX
+aHX
+aHX
+xgF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
@@ -260126,7 +348086,11 @@ ihu
epH
rDZ
rDZ
+<<<<<<< HEAD
tBP
+=======
+ePu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rDZ
rDZ
bgx
@@ -260145,6 +348109,19 @@ gQw
gQw
vzD
vzD
+<<<<<<< HEAD
+=======
+lSu
+bln
+bln
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
bln
bln
bln
@@ -260152,10 +348129,10 @@ bln
bln
bln
bln
-bln
-bln
-bln
-bln
+=======
+lSu
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -260321,7 +348298,11 @@ lUC
lUC
lUC
lUC
+<<<<<<< HEAD
daX
+=======
+wrX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pxi
wrX
tLQ
@@ -260335,7 +348316,11 @@ gEE
gEE
iKQ
cpq
+<<<<<<< HEAD
gEE
+=======
+ueF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gEE
gEE
tva
@@ -260361,13 +348346,22 @@ wgO
fTT
bUa
wgL
+<<<<<<< HEAD
phB
krY
+=======
+bhm
+nsZ
+awa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
awa
+<<<<<<< HEAD
jvc
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
@@ -260377,7 +348371,11 @@ xUk
aSB
tHT
nsZ
+<<<<<<< HEAD
lHm
+=======
+vmK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oZn
sFj
rck
@@ -260398,6 +348396,7 @@ vzD
vzD
bln
bln
+<<<<<<< HEAD
bln
bln
tCr
@@ -260414,6 +348413,24 @@ tCr
tCr
tCr
tCr
+=======
+mQb
+bln
+bln
+fYT
+eRE
+ujK
+ujK
+eRE
+wOq
+eRE
+ujK
+ujK
+eRE
+lej
+lej
+hAM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -260578,8 +348595,13 @@ tlH
tlH
tlH
nXb
+<<<<<<< HEAD
ngY
iQt
+=======
+wrX
+tuQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oHH
tAA
efH
@@ -260600,6 +348622,7 @@ jbG
nzV
cYE
dfB
+<<<<<<< HEAD
wck
pFg
hXC
@@ -260608,10 +348631,21 @@ kuV
cAi
qWn
nQq
+=======
+ymj
+pFg
+hXC
+qad
+kuV
+cAi
+qWn
+dik
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fOR
tFF
tia
qNn
+<<<<<<< HEAD
hek
gNi
krY
@@ -260620,11 +348654,25 @@ bUa
fbl
nHf
krY
+=======
+uIQ
+gNi
+oHK
+dUh
+bUa
+fbl
+aDr
+nsZ
+awa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
awa
+<<<<<<< HEAD
jvc
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
@@ -260634,6 +348682,7 @@ xUk
sqt
duE
nsZ
+<<<<<<< HEAD
ijW
xsP
rms
@@ -260641,6 +348690,15 @@ sXC
rDZ
rDZ
rnu
+=======
+xDa
+abT
+jJZ
+tuy
+rDZ
+rDZ
+mBk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rDZ
rDZ
bgx
@@ -260654,8 +348712,13 @@ vzD
bln
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+mQb
+uer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -260670,8 +348733,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
bln
+=======
+chn
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -260836,27 +348904,46 @@ tlH
tlH
nXb
wrX
+<<<<<<< HEAD
xun
+=======
+iqW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wrX
oHH
oHH
oHH
oHH
qPL
+<<<<<<< HEAD
nCa
erI
gGE
qPL
pRG
mtN
+=======
+qiL
+erI
+gGE
+qPL
+pdD
+asv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dFt
vHI
vHI
dFt
dFt
+<<<<<<< HEAD
jub
hQO
cMv
+=======
+fdj
+lah
+asU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qPL
elw
elw
@@ -260873,15 +348960,26 @@ mEJ
mEJ
krY
srP
+<<<<<<< HEAD
pGp
lIk
srP
krY
+=======
+rou
+lIk
+srP
+nsZ
+awa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
awa
+<<<<<<< HEAD
jvc
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
@@ -260909,10 +349007,17 @@ vzD
vrO
vzD
bln
+<<<<<<< HEAD
bln
bln
bln
bln
+=======
+mQb
+bln
+mQb
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
sUN
@@ -260927,8 +349032,13 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
tCr
bln
+=======
+sFJ
+nwD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -261110,7 +349220,11 @@ gVt
pCI
pCI
vsM
+<<<<<<< HEAD
vns
+=======
+avc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nfB
cMJ
eBg
@@ -261118,7 +349232,11 @@ kCs
omh
peV
elw
+<<<<<<< HEAD
tZe
+=======
+oOc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nvY
qpu
oPP
@@ -261133,12 +349251,20 @@ vJS
bUa
ubY
qHn
+<<<<<<< HEAD
krY
+=======
+nsZ
+awa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
awa
awa
awa
awa
+<<<<<<< HEAD
jvc
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wQY
nmz
nmz
@@ -261166,11 +349292,19 @@ jCl
vpg
gQw
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+uer
+bln
+bln
+mQb
+ntK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sUN
tmR
@@ -261183,8 +349317,13 @@ bln
sUN
tmR
sUN
+<<<<<<< HEAD
bln
tCr
+=======
+hty
+uap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -261390,12 +349529,18 @@ ciS
bUa
jPx
jxb
+<<<<<<< HEAD
luJ
bEJ
+=======
+dqI
+oEE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bEJ
mXe
bEJ
qbb
+<<<<<<< HEAD
piM
hLO
hLO
@@ -261404,6 +349549,16 @@ hLO
uAx
pFl
cyG
+=======
+miK
+xRv
+xRv
+xRv
+xRv
+goy
+hWD
+oiI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nsZ
uCJ
hjE
@@ -261422,6 +349577,7 @@ vrO
vrO
vrO
gQw
+<<<<<<< HEAD
bln
bln
bln
@@ -261429,6 +349585,19 @@ bln
bln
bln
bln
+=======
+mQb
+ntK
+mQb
+bln
+bln
+mQb
+bln
+sUN
+tmR
+sUN
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sUN
tmR
sUN
@@ -261437,11 +349606,15 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
sUN
tmR
sUN
bln
tCr
+=======
+dzZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -261606,7 +349779,11 @@ tlH
tlH
tlH
nXb
+<<<<<<< HEAD
tlH
+=======
+oFc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tlH
tlH
tlH
@@ -261646,18 +349823,32 @@ gpj
oQn
iBl
pLr
+<<<<<<< HEAD
hRF
krY
+=======
+mKO
+sPq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xLq
xLq
aoo
vIg
+<<<<<<< HEAD
ykE
qEV
wpi
gZx
tIq
tIq
+=======
+jED
+qEV
+cRq
+qVZ
+ybf
+ybf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vaa
xLq
xLq
@@ -261681,11 +349872,23 @@ pxQ
vzD
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+mQb
+bln
+bln
+uer
+bln
+sUN
+tmR
+sUN
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sUN
tmR
sUN
@@ -261694,11 +349897,15 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
sUN
tmR
sUN
bln
bln
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -261772,7 +349979,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
khz
+=======
+pUa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
vbG
hHG
@@ -261904,6 +350115,7 @@ fbl
eIC
trK
qEz
+<<<<<<< HEAD
krY
xLq
xLq
@@ -261920,6 +350132,24 @@ xLq
grs
nsZ
pdO
+=======
+nsZ
+vyz
+xLq
+kvR
+qVZ
+kgo
+sCx
+iHc
+qVZ
+nQj
+auK
+vaa
+xLq
+xLq
+nsZ
+ufb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dDm
rDZ
rDZ
@@ -261955,10 +350185,17 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
bln
tCr
tCr
tCr
+=======
+rdJ
+ujK
+lej
+hAM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -262031,6 +350268,7 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
kPS
hHG
hHG
@@ -262039,6 +350277,16 @@ khz
wNO
wNO
khz
+=======
+dHF
+hHG
+hHG
+hHG
+pUa
+wNO
+wNO
+pUa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -262128,7 +350376,11 @@ tlH
tlH
sEB
qPL
+<<<<<<< HEAD
qgn
+=======
+nbK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vXy
ixv
qPL
@@ -262161,7 +350413,11 @@ gVe
whP
mOc
gYt
+<<<<<<< HEAD
krY
+=======
+nsZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oOb
ezJ
iba
@@ -262169,18 +350425,30 @@ gas
rjK
nlP
xTV
+<<<<<<< HEAD
imy
dHM
+=======
+rGY
+nzA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
auK
vaa
xLq
xLq
nsZ
rDZ
+<<<<<<< HEAD
pxu
rDZ
swa
pxu
+=======
+rDZ
+rDZ
+swa
+rDZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rDZ
bgx
vzD
@@ -262190,10 +350458,17 @@ vzD
geJ
sMo
bgx
+<<<<<<< HEAD
tfm
qbh
oGm
axy
+=======
+rkH
+qbh
+oGm
+mJq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mJq
mJq
sEB
@@ -262207,15 +350482,26 @@ bln
bln
tmR
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
tmR
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
+=======
+fsm
+mQb
+bln
+vap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -262289,8 +350575,13 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
xDQ
xDQ
+=======
+wDS
+wDS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -262407,21 +350698,37 @@ fTW
dxm
sHM
elw
+<<<<<<< HEAD
aFt
hAT
xyE
hDp
kjr
+=======
+cIb
+hAT
+xyE
+hDp
+hDp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
elw
omh
omh
omh
omh
+<<<<<<< HEAD
cbq
elw
nsZ
nsZ
vdM
+=======
+eHV
+elw
+nsZ
+nsZ
+qaz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nsZ
nsZ
bgx
@@ -262472,8 +350779,13 @@ tmR
tmR
cnx
bln
+<<<<<<< HEAD
tCr
bln
+=======
+sFJ
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -262546,8 +350858,13 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
wUD
wUD
+=======
+vOy
+vOy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -262664,17 +350981,29 @@ dbw
omh
sHM
elw
+<<<<<<< HEAD
sVf
+=======
+jqw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
axN
qvE
nhI
hDp
elw
+<<<<<<< HEAD
uKx
rpV
fTW
bwM
hds
+=======
+qrP
+rpV
+fTW
+bwM
+xGx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lEv
clV
wmG
@@ -262682,12 +351011,20 @@ jLW
nkh
tLT
wvv
+<<<<<<< HEAD
fHC
+=======
+lEP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lEP
oEj
xmR
oEj
+<<<<<<< HEAD
oEj
+=======
+ohU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oEj
myO
oEj
@@ -262702,12 +351039,21 @@ oEj
xmR
oEj
dww
+<<<<<<< HEAD
dFZ
mbT
nBB
xQh
xCz
mjt
+=======
+ygm
+bgx
+qUQ
+xQh
+xCz
+mJq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mJq
mJq
vsI
@@ -262726,10 +351072,17 @@ bln
tmR
bln
bln
+<<<<<<< HEAD
bln
bln
bln
tCr
+=======
+mQb
+bln
+bln
+vap
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -262803,8 +351156,13 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
rPp
rPp
+=======
+dTI
+dTI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -262897,7 +351255,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
sEB
+=======
+miY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tpd
wwI
tPY
@@ -262927,6 +351289,7 @@ elw
elw
elw
elw
+<<<<<<< HEAD
rft
icE
idt
@@ -262944,6 +351307,25 @@ bhk
cYI
jCl
jCl
+=======
+lxR
+icE
+idt
+nCd
+bXD
+elw
+puY
+opN
+faG
+tKO
+hyV
+bgx
+tHw
+tVx
+ltP
+jCl
+uZc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jCl
jCl
vzD
@@ -262969,7 +351351,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sUN
tmR
@@ -262983,10 +351369,17 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
bln
tCr
tCr
tCr
+=======
+cIf
+lej
+ujK
+fYT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -263154,7 +351547,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
sEB
+=======
+miY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tpd
hOt
ejn
@@ -263174,10 +351571,17 @@ udw
jZM
sEB
omh
+<<<<<<< HEAD
amK
omh
sED
xSw
+=======
+jrX
+omh
+sED
+gjM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
upv
gjM
gjM
@@ -263186,6 +351590,7 @@ gjM
tIW
gjM
aUl
+<<<<<<< HEAD
xnt
egR
pSz
@@ -263198,12 +351603,30 @@ qQa
bgx
gti
lOq
+=======
+lmx
+mHq
+pSz
+elw
+pIu
+mEU
+enq
+nkH
+qQa
+bgx
+ave
+wpn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jCl
xWo
axu
bFq
jCl
+<<<<<<< HEAD
jCl
+=======
+uZc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jCl
jtn
jCl
@@ -263221,6 +351644,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -263228,6 +351652,15 @@ bln
bln
bln
bln
+=======
+chb
+mQb
+uer
+mQb
+bln
+nEa
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sUN
tmR
sUN
@@ -263240,8 +351673,13 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
bln
bln
+=======
+chn
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -263313,17 +351751,30 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
khz
wNO
aaX
+=======
+pUa
+wNO
+qzn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vbG
hHG
hHG
hHG
+<<<<<<< HEAD
khz
wNO
wNO
khz
+=======
+pUa
+wNO
+wNO
+pUa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -263411,6 +351862,7 @@ bln
lSu
lSu
bln
+<<<<<<< HEAD
sEB
tpd
tpd
@@ -263427,6 +351879,24 @@ nJo
hdz
quK
xdM
+=======
+miY
+tpd
+tpd
+tpd
+qKq
+qPL
+fPX
+dFt
+jZM
+dFt
+jZM
+dFt
+nJo
+dFt
+quK
+dFt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jZM
jZM
sEB
@@ -263437,15 +351907,25 @@ omh
omh
omh
omh
+<<<<<<< HEAD
omh
fTW
+=======
+cNe
+dbw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rpV
jYc
fTW
cJs
fTW
+<<<<<<< HEAD
fTW
omh
+=======
+tlf
+pSz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
elw
mWf
mWf
@@ -263453,7 +351933,11 @@ mWf
hyV
trm
bgx
+<<<<<<< HEAD
vzD
+=======
+gti
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzD
vzD
vzD
@@ -263471,13 +351955,18 @@ twZ
bMb
rEU
vXd
+<<<<<<< HEAD
jCl
+=======
+uZc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mwQ
vzD
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
@@ -263485,6 +351974,19 @@ bln
bln
bln
bln
+=======
+pMM
+bln
+mQb
+bln
+bln
+uer
+mQb
+sUN
+tmR
+sUN
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sUN
tmR
sUN
@@ -263493,6 +351995,7 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
sUN
tmR
sUN
@@ -263501,6 +352004,12 @@ tCr
bln
bln
bln
+=======
+ebW
+bln
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -263572,7 +352081,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
fhB
+=======
+liV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vbG
hHG
hHG
@@ -263668,22 +352181,35 @@ bln
bln
bln
bln
+<<<<<<< HEAD
vsI
sEB
sEB
+=======
+hMM
+ooL
+ooL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jZM
xVG
jZM
xVG
jZM
+<<<<<<< HEAD
sEB
gZa
sEB
+=======
+ooL
+ooL
+ooL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jZM
xVG
jZM
xVG
jZM
+<<<<<<< HEAD
sEB
sEB
sEB
@@ -263694,11 +352220,25 @@ sEB
sEB
sEB
sEB
+=======
+ooL
+ooL
+ooL
+ooL
+ooL
+ooL
+ooL
+ooL
+ooL
+nXb
+buU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
omh
skW
omh
omh
omh
+<<<<<<< HEAD
omh
skW
omh
@@ -263712,6 +352252,20 @@ trm
bgx
bln
bln
+=======
+skW
+omh
+pSz
+omh
+ooL
+ooL
+ooL
+hyV
+trm
+bgx
+gti
+vzD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -263723,9 +352277,15 @@ bFq
jCl
nuj
jCl
+<<<<<<< HEAD
gUT
jCl
jCl
+=======
+mEz
+uZc
+uZc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
syT
vzD
jCl
@@ -263735,12 +352295,20 @@ bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sUN
tmR
@@ -263749,15 +352317,26 @@ bln
sUN
tmR
sUN
+<<<<<<< HEAD
bln
+=======
+mQb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sUN
tmR
sUN
bln
+<<<<<<< HEAD
tCr
bln
bln
bln
+=======
+chb
+bln
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -263950,25 +352529,42 @@ bln
bln
lSu
lSu
+<<<<<<< HEAD
bln
omh
fTW
+=======
+nXb
+omh
+omh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xTy
qNV
rCT
xTy
qNV
+<<<<<<< HEAD
mhq
omh
bln
+=======
+omh
+omh
+omh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
hyV
fiU
bgx
+<<<<<<< HEAD
bln
bln
+=======
+vzD
+vzD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -263992,12 +352588,21 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
mVm
+=======
+obe
+ujK
+eRE
+ujK
+ujK
+dMo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
sUN
tmR
@@ -264011,8 +352616,13 @@ sUN
tmR
sUN
bln
+<<<<<<< HEAD
tCr
bln
+=======
+sFJ
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264186,6 +352796,7 @@ bln
lSu
bln
dFt
+<<<<<<< HEAD
kAm
jZM
gBI
@@ -264199,6 +352810,21 @@ jZM
gBI
dFt
bln
+=======
+tsP
+jZM
+vYw
+dFt
+tMa
+bln
+bln
+dFt
+tsP
+jZM
+vYw
+dFt
+tMa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264217,13 +352843,21 @@ vJk
vJk
qbW
omh
+<<<<<<< HEAD
+=======
+hZN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+hZN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264240,7 +352874,11 @@ bln
bln
bln
vzD
+<<<<<<< HEAD
caU
+=======
+lPq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzD
bln
bln
@@ -264254,7 +352892,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
+=======
+chb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264268,9 +352910,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
mVm
bln
bln
+=======
+vap
+lSu
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264472,14 +353120,22 @@ tQX
wLk
nXg
tRX
+<<<<<<< HEAD
drm
+=======
+pIy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
omh
bln
bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264511,6 +353167,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
tCr
tCr
tCr
@@ -264528,6 +353185,24 @@ tCr
tCr
bln
bln
+=======
+obe
+lej
+iNl
+ahG
+ujK
+ujK
+lej
+eRE
+lej
+ujK
+ujK
+eRE
+wvw
+ujK
+bFP
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264582,6 +353257,10 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(204,1,3) = {"
wNO
@@ -264701,18 +353380,32 @@ bln
bln
jZM
oeh
+<<<<<<< HEAD
kLs
vmR
jZM
bln
+=======
+jZM
+vmR
+jZM
+htd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
jZM
vmR
+<<<<<<< HEAD
kLs
woU
jZM
bln
+=======
+jZM
+woU
+jZM
+htd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264736,6 +353429,10 @@ bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264752,10 +353449,16 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
vsI
sEB
sEB
+=======
+hMM
+ooL
+rwt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264787,7 +353490,11 @@ bln
bln
ozo
bln
+<<<<<<< HEAD
bln
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -264946,7 +353653,11 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -264977,6 +353688,7 @@ bln
bln
bln
bln
+<<<<<<< HEAD
fBN
bln
bln
@@ -264990,10 +353702,28 @@ uOE
bln
bln
bln
+=======
+xOk
+lSu
+lSu
+cSx
+pXY
+pXY
+xuR
+vyU
+pXY
+oOB
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -265044,7 +353774,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -265237,12 +353971,21 @@ bln
bln
bln
bln
+<<<<<<< HEAD
nRV
vyU
vyU
vyU
vyU
vyU
+=======
+lqE
+vyU
+pXY
+pXY
+pXY
+pXY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fcP
bln
bln
@@ -265250,6 +353993,10 @@ bln
bln
bln
bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -265299,9 +354046,14 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
+=======
+wNO
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -265554,11 +354306,19 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
bln
bln
+=======
+wNO
+wNO
+wNO
+wNO
+wNO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -266021,7 +354781,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -266231,8 +354995,47 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
+fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
fBN
bln
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -266248,37 +355051,10 @@ bln
bln
bln
bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-fBN
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -266535,7 +355311,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -267306,7 +356086,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -267415,7 +356199,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
tNN
+=======
+wLI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kDs
kDs
kDs
@@ -267516,8 +356304,47 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
+fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
fBN
bln
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -267533,37 +356360,10 @@ bln
bln
bln
bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-fBN
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -267820,7 +356620,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -268077,7 +356881,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -268187,7 +356995,11 @@ wNO
wNO
tkU
tkU
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -268591,7 +357403,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -268801,8 +357617,47 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
+fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+bln
+<<<<<<< HEAD
fBN
bln
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -268818,37 +357673,10 @@ bln
bln
bln
bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-fBN
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
-bln
+<<<<<<< HEAD
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -268958,7 +357786,11 @@ wNO
tkU
tkU
tkU
+<<<<<<< HEAD
uFg
+=======
+qtv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -269105,7 +357937,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -269215,7 +358051,11 @@ wNO
tkU
tkU
tkU
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -269362,7 +358202,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
+=======
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -269618,8 +358462,13 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
+=======
+lSu
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
wNO
wNO
@@ -269875,9 +358724,15 @@ bln
bln
bln
bln
+<<<<<<< HEAD
bln
bln
bln
+=======
+lSu
+bln
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -270086,7 +358941,11 @@ wNO
wNO
wNO
bln
+<<<<<<< HEAD
fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -270117,7 +358976,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -270132,10 +358995,17 @@ bln
bln
bln
bln
+<<<<<<< HEAD
fBN
bln
fBN
bln
+=======
+xOk
+bln
+xOk
+lSu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -270757,7 +359627,11 @@ wNO
wNO
tkU
tkU
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -271371,7 +360245,11 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -271402,7 +360280,11 @@ bln
bln
bln
bln
+<<<<<<< HEAD
fBN
+=======
+xOk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -272299,7 +361181,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -272553,7 +361439,11 @@ wNO
(235,1,3) = {"
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
bln
@@ -272810,7 +361700,11 @@ wNO
(236,1,3) = {"
wNO
wNO
+<<<<<<< HEAD
aaX
+=======
+qzn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
bln
@@ -273067,7 +361961,11 @@ wNO
(237,1,3) = {"
wNO
wNO
+<<<<<<< HEAD
fhB
+=======
+liV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
bln
@@ -273327,7 +362225,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -274612,7 +363514,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -274628,7 +363534,11 @@ vbG
hHG
hHG
hHG
+<<<<<<< HEAD
aaX
+=======
+qzn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -274885,7 +363795,11 @@ vbG
hHG
hHG
hHG
+<<<<<<< HEAD
fhB
+=======
+liV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wNO
wNO
wNO
@@ -275383,7 +364297,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -275396,8 +364314,13 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
xDQ
xDQ
+=======
+wDS
+wDS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
wNO
@@ -275653,8 +364576,13 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
wUD
wUD
+=======
+vOy
+vOy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -275910,8 +364838,13 @@ wNO
wNO
bln
bln
+<<<<<<< HEAD
rPp
rPp
+=======
+dTI
+dTI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bln
bln
bln
@@ -276411,7 +365344,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
@@ -277182,7 +366119,11 @@ wNO
wNO
wNO
wNO
+<<<<<<< HEAD
lgH
+=======
+fwx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hHG
hHG
hHG
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index 484f0b6e21c..2a889cf2fc6 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -13,6 +13,7 @@
"aag" = (
/turf/closed/wall,
/area/station/commons/fitness)
+<<<<<<< HEAD
"aaj" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -29,6 +30,8 @@
dir = 4
},
/area/station/science/lab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aal" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -78,6 +81,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"aaL" = (
/obj/structure/table,
/obj/effect/turf_decal/siding/white/corner,
@@ -88,6 +92,8 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/dark,
/area/station/medical/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"abI" = (
/obj/structure/chair/stool/directional/south,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -186,6 +192,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/ce)
+<<<<<<< HEAD
"adC" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -195,6 +202,8 @@
/obj/effect/turf_decal/tile/purple/fourcorners,
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"adD" = (
/obj/effect/spawner/random/structure/closet_maintenance,
/obj/effect/spawner/random/maintenance,
@@ -258,6 +267,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
/turf/open/floor/iron/dark/textured,
/area/station/medical/cryo)
+<<<<<<< HEAD
"afe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -266,6 +276,8 @@
/obj/effect/decal/cleanable/wrapping,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"afj" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -304,6 +316,16 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/carpet,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"afM" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"afZ" = (
/obj/machinery/vending/coffee,
/obj/structure/disposalpipe/segment,
@@ -314,6 +336,7 @@
/mob/living/simple_animal/bot/secbot/beepsky/armsky,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
"agf" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/storage/box/lights/mixed{
@@ -351,6 +374,17 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/textured_half,
/area/station/cargo/bitrunning/den)
+=======
+"agi" = (
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ago" = (
/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
/turf/open/floor/iron,
@@ -362,6 +396,7 @@
/obj/structure/window/spawner/directional/north,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"agB" = (
/obj/machinery/firealarm/directional/north,
/obj/machinery/light/directional/north,
@@ -370,6 +405,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"agN" = (
/obj/structure/table/glass,
/obj/item/radio/intercom/directional/west,
@@ -399,6 +436,7 @@
},
/turf/open/floor/iron/white,
/area/station/science/cytology)
+<<<<<<< HEAD
"agP" = (
/obj/item/storage/box/syringes,
/obj/item/storage/box/beakers{
@@ -414,6 +452,8 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"agR" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -427,11 +467,14 @@
},
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"ahb" = (
/obj/structure/lattice/catwalk,
/obj/item/banner/cargo,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ahe" = (
/obj/machinery/airalarm/directional/east,
/obj/structure/cable,
@@ -480,6 +523,7 @@
/obj/effect/turf_decal/tile/red/opposingcorners,
/turf/open/floor/iron/white,
/area/station/security/prison/mess)
+<<<<<<< HEAD
"ahu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -500,6 +544,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ahD" = (
/obj/structure/displaycase/trophy,
/turf/open/floor/wood,
@@ -525,6 +571,7 @@
dir = 4
},
/turf/open/floor/iron/dark/corner{
+<<<<<<< HEAD
dir = 1
},
/area/station/engineering/atmos)
@@ -618,6 +665,76 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+=======
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"ahW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "showroom"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"aib" = (
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"aid" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"aij" = (
+/obj/structure/chair,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"aiw" = (
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"aja" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/office)
+"ajq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"ajI" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/vending/drugs,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"ajK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{
dir = 1
},
@@ -678,6 +795,7 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
"akQ" = (
/obj/structure/table/wood,
/obj/structure/sign/picture_frame/showroom/three{
@@ -694,6 +812,21 @@
},
/turf/open/floor/wood,
/area/station/command/corporate_showroom)
+=======
+"akF" = (
+/obj/machinery/flasher/directional/north{
+ id = "AI"
+ },
+/obj/structure/table/wood/fancy/blue,
+/obj/effect/spawner/random/aimodule/neutral,
+/obj/machinery/door/window/right/directional/east{
+ name = "Core Modules";
+ req_access = list("captain")
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"akZ" = (
/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
dir = 4
@@ -707,6 +840,38 @@
},
/turf/open/floor/carpet,
/area/station/command/heads_quarters/captain/private)
+<<<<<<< HEAD
+=======
+"alu" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/turf_decal/arrows{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"alw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"alA" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 4;
+ name = "Quartermaster Junction"
+ },
+/obj/effect/mapping_helpers/mail_sorting/supply/qm_office,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"alE" = (
/turf/open/floor/iron,
/area/station/security/courtroom)
@@ -716,10 +881,13 @@
},
/turf/open/floor/iron/dark,
/area/station/security/mechbay)
+<<<<<<< HEAD
"alG" = (
/obj/structure/sign/poster/contraband/random/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"alI" = (
/obj/machinery/door/window/left/directional/east{
name = "Bridge Deliveries";
@@ -762,6 +930,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
"aml" = (
/obj/structure/secure_safe/hos{
pixel_x = 36;
@@ -771,6 +940,8 @@
/obj/structure/cable,
/turf/open/floor/carpet,
/area/station/command/heads_quarters/hos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"amo" = (
/obj/structure/chair{
dir = 8;
@@ -864,6 +1035,7 @@
/obj/structure/lattice,
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
"aoc" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -884,6 +1056,22 @@
},
/turf/open/floor/plating,
/area/station/command/heads_quarters/qm)
+=======
+"anX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/machinery/status_display/evac/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aok" = (
/turf/open/floor/iron,
/area/station/cargo/storage)
@@ -915,6 +1103,13 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"apC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"apJ" = (
/obj/structure/cable,
/turf/open/floor/iron/dark,
@@ -924,6 +1119,7 @@
/obj/machinery/power/apc/auto_name/directional/south,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
"apT" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance"
@@ -1543,6 +1739,648 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 1
},
+=======
+"apO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"apS" = (
+/obj/structure/sink/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"apT" = (
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"aqa" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"aqh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"aqs" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"aqt" = (
+/obj/structure/table,
+/obj/item/folder/yellow,
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/item/paper/pamphlet/gateway,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"aqu" = (
+/obj/structure/closet/wardrobe/green,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"aqG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"aqS" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ara" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"arg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ark" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"art" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"asi" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/lights/mixed,
+/obj/item/stack/sheet/iron{
+ amount = 30
+ },
+/obj/item/radio{
+ pixel_x = -5;
+ pixel_y = 5
+ },
+/obj/item/stack/cable_coil,
+/obj/structure/sign/poster/random/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"asm" = (
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/trimline/brown/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/medical/medbay/lobby)
+"asz" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 35
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"asB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"asM" = (
+/obj/machinery/computer/prisoner/management{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"asT" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/lobby)
+"atf" = (
+/obj/structure/table/glass,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"atk" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"atN" = (
+/obj/structure/cable,
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"aub" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"auc" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"auh" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"aum" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"auw" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin7";
+ name = "Cabin 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"auJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"ava" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"avb" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_half,
+/area/station/medical/cryo)
+"avc" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Gateway - Access"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"avq" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"avr" = (
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"avx" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"avA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"avK" = (
+/turf/closed/wall,
+/area/station/maintenance/fore/lesser)
+"avU" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/button/door/directional/east{
+ id = "Cabin2";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"awy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/sign/warning/test_chamber/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"awO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "rdoffice";
+ name = "Research Director's Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/server)
+"axd" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = -32
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"axe" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3";
+ name = "Cell 3 locker"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"axx" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"axJ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"axK" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"axO" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"axW" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/side,
+/area/station/medical/medbay/lobby)
+"aye" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"ayg" = (
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"ayr" = (
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"ayz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"ayH" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"ayO" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ayV" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"azd" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"azg" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"azv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"azz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"azE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"azF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"azZ" = (
+/obj/structure/closet/crate,
+/obj/item/reagent_containers/cup/bowl,
+/obj/effect/spawner/random/contraband/prison,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/reagent_containers/cup/bowl,
+/obj/item/kitchen/fork/plastic,
+/obj/item/kitchen/fork/plastic,
+/obj/item/kitchen/fork/plastic,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/kitchen/spoon/plastic,
+/obj/item/kitchen/spoon/plastic,
+/obj/item/kitchen/spoon/plastic,
+/obj/item/knife/plastic,
+/obj/item/knife/plastic,
+/obj/item/knife/plastic,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/item/storage/box/drinkingglasses,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"aAb" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"aAg" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"aAs" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"aAt" = (
+/obj/machinery/light_switch/directional/south,
+/obj/effect/spawner/random/vending/colavend,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"aAA" = (
+/obj/docking_port/stationary/mining_home{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space)
+"aAB" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"aAI" = (
+/obj/structure/sign/plaques/kiddie/perfect_man{
+ pixel_y = 32
+ },
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"aAK" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"aAS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"aAT" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Bridge - Port Access"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"aBw" = (
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"aBL" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"aBM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/item/cigbutt{
+ pixel_x = -6;
+ pixel_y = -4
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/trash/garbage,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"aBQ" = (
+/obj/structure/cable,
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"aBW" = (
+/obj/machinery/button/ignition/incinerator/atmos,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"aBX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
"aCi" = (
@@ -1564,6 +2402,7 @@
/obj/item/wallframe/digital_clock,
/turf/open/floor/iron,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
"aCz" = (
/obj/effect/mapping_helpers/broken_floor,
/obj/structure/cable,
@@ -1571,6 +2410,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aCE" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=10.1-Central-from-Aft";
@@ -1682,10 +2523,13 @@
/obj/item/poster/random_official,
/turf/open/floor/iron/dark,
/area/station/security/office)
+<<<<<<< HEAD
"aEp" = (
/obj/structure/sign/departments/cargo,
/turf/closed/wall,
/area/station/cargo/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aEr" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -1698,6 +2542,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"aEy" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -1708,6 +2553,19 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+"aEA" = (
+/obj/structure/table/wood,
+/obj/item/staff/broom,
+/obj/item/wrench,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aEH" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -1722,10 +2580,13 @@
/obj/effect/turf_decal/tile/red/opposingcorners,
/turf/open/floor/iron,
/area/station/security/checkpoint/science)
+<<<<<<< HEAD
"aFb" = (
/obj/structure/sign/warning/electric_shock/directional/south,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aFd" = (
/obj/effect/landmark/start/shaft_miner,
/turf/open/floor/iron,
@@ -1740,6 +2601,14 @@
/obj/effect/spawner/random/bureaucracy/paper,
/turf/open/floor/wood,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"aFW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/mirror/directional/west,
+/turf/open/floor/wood,
+/area/station/service/theater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aFZ" = (
/obj/effect/landmark/generic_maintenance_landmark,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
@@ -1782,6 +2651,20 @@
"aGM" = (
/turf/open/floor/iron,
/area/station/security/range)
+<<<<<<< HEAD
+=======
+"aGQ" = (
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aGS" = (
/obj/structure/sign/warning/no_smoking,
/turf/closed/wall,
@@ -1794,6 +2677,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"aGW" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -1811,6 +2695,8 @@
/obj/effect/turf_decal/tile/purple/fourcorners,
/turf/open/floor/iron,
/area/station/science/genetics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aHh" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -1851,6 +2737,23 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
+=======
+"aHH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/east{
+ areastring = "/area/station/science/ordnance/burnchamber"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aHM" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -1861,6 +2764,7 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron,
/area/station/science/research)
+<<<<<<< HEAD
"aHW" = (
/obj/machinery/door/airlock/mining{
name = "Drone Bay"
@@ -1872,6 +2776,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/cargo/drone_bay)
+=======
+"aHN" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"aHR" = (
+/obj/structure/sign/warning/biohazard,
+/turf/closed/wall/r_wall,
+/area/station/science/research)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aIl" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment,
@@ -1948,10 +2866,13 @@
},
/turf/open/floor/engine/n2o,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"aJh" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
/turf/closed/wall/r_wall,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aJj" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -1974,6 +2895,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
"aJt" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -1982,10 +2904,13 @@
/obj/effect/turf_decal/trimline/brown/filled/line,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aJv" = (
/obj/structure/sign/warning/fire,
/turf/closed/wall/r_wall,
/area/station/engineering/supermatter)
+<<<<<<< HEAD
"aJw" = (
/obj/structure/table,
/obj/machinery/button/door{
@@ -2000,6 +2925,8 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/iron,
/area/station/science/xenobiology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aJI" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -2092,6 +3019,20 @@
},
/turf/open/floor/iron,
/area/station/security/checkpoint/engineering)
+<<<<<<< HEAD
+=======
+"aKN" = (
+/obj/structure/chair/office,
+/obj/machinery/requests_console/directional/north{
+ department = "Quartermaster's Desk";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/landmark/start/depsec/supply,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aKO" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -2151,6 +3092,47 @@
/obj/effect/turf_decal/tile/purple/half/contrasted,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"aLW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/stamp/head/qm{
+ pixel_x = 1;
+ pixel_y = 12
+ },
+/obj/item/stamp/granted{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/item/stamp/denied{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/obj/item/stamp/void{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/effect/spawner/random/entertainment/money_medium{
+ pixel_y = -6;
+ pixel_x = -3
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/item/clipboard{
+ pixel_x = 10;
+ pixel_y = 8
+ },
+/obj/item/coin/gold{
+ pixel_y = -5;
+ pixel_x = 10
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aMb" = (
/obj/structure/table,
/obj/item/cultivator,
@@ -2253,6 +3235,21 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+<<<<<<< HEAD
+=======
+"aNQ" = (
+/obj/structure/table,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/mesh,
+/obj/item/stack/medical/suture,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aNZ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -2280,6 +3277,7 @@
/obj/effect/turf_decal/trimline/brown/warning,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
"aOt" = (
/obj/effect/turf_decal/siding/white{
dir = 9
@@ -2631,6 +3629,310 @@
/obj/machinery/porta_turret/ai{
dir = 4
},
+=======
+"aOA" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"aOC" = (
+/obj/effect/turf_decal/trimline/red/filled/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"aOH" = (
+/obj/structure/table,
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/gas/sechailer{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"aPk" = (
+/obj/structure/closet/crate/preopen,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"aPm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"aPq" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Auxilliary Surgery"
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/surgery,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"aPs" = (
+/obj/structure/displaycase/captain{
+ pixel_y = 5
+ },
+/obj/machinery/status_display/evac/directional/north,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"aPv" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"aPw" = (
+/obj/machinery/ai_slipper{
+ uses = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"aPx" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/spawner/random/structure/closet_empty/crate,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"aPH" = (
+/obj/structure/bed/dogbed/runtime,
+/obj/item/toy/cattoy,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/mob/living/basic/pet/cat/runtime,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"aPX" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"aQe" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "MiniSat Exterior - Starboard Aft";
+ network = list("minisat")
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"aQR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space,
+/area/space/nearstation)
+"aQS" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/central)
+"aRo" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"aRt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"aRz" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"aRI" = (
+/turf/open/floor/circuit/green,
+/area/station/science/robotics/mechbay)
+"aRV" = (
+/obj/machinery/porta_turret/ai{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"aSe" = (
+/obj/machinery/duct,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"aSk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"aSm" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"aSv" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/item/toy/figure/qm{
+ pixel_x = 3;
+ pixel_y = 12
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"aSQ" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"aST" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"aSZ" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "Supply Dock Loading Door"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"aTs" = (
+/mob/living/basic/slime,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"aTD" = (
+/obj/machinery/vending/coffee,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"aTU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"aTV" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/ai)
+"aUm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"aUn" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/space/basic,
+/area/space/nearstation)
+"aUt" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"aUx" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+"aUC" = (
+/obj/effect/turf_decal/trimline/green/line{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/cup/rag,
+/obj/item/reagent_containers/cup/glass/coffee{
+ pixel_x = -3;
+ pixel_y = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"aUK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"aUP" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"aVd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"aVl" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai)
"aVn" = (
@@ -2743,6 +4045,7 @@
"aWO" = (
/obj/machinery/ai_slipper{
uses = 10
+<<<<<<< HEAD
},
/turf/open/floor/circuit,
/area/station/ai_monitored/turret_protected/ai)
@@ -2763,6 +4066,11 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+ },
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aXa" = (
/turf/closed/wall,
/area/station/security/prison/mess)
@@ -2849,6 +4157,17 @@
},
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
+=======
+"aYl" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Lab - Test Chamber";
+ network = list("ss13","rd","xeno")
+ },
+/obj/machinery/light/cold/directional/east,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aYw" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod Three";
@@ -2866,6 +4185,7 @@
},
/turf/open/space,
/area/space/nearstation)
+<<<<<<< HEAD
"aYy" = (
/obj/machinery/light/directional/south,
/obj/structure/disposalpipe/segment{
@@ -2879,6 +4199,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aYz" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -2919,6 +4241,7 @@
"aZj" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 4
+<<<<<<< HEAD
},
/obj/machinery/computer/order_console/mining,
/turf/open/floor/iron,
@@ -2994,6 +4317,103 @@
/obj/effect/mapping_helpers/broken_floor,
/obj/machinery/light/small/dim/directional/west,
/turf/open/floor/plating,
+=======
+ },
+/obj/machinery/computer/order_console/mining,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"aZr" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/button/door{
+ desc = "A door remote control switch for the exterior brig doors.";
+ id = "outerbrig";
+ name = "Brig Exterior Door Control";
+ normaldoorcontrol = 1;
+ pixel_x = 6;
+ pixel_y = 7;
+ req_access = list("security")
+ },
+/obj/machinery/button/flasher{
+ id = "secentranceflasher";
+ name = "Brig Entrance Flasher";
+ pixel_y = -3;
+ req_access = list("security")
+ },
+/obj/machinery/button/door{
+ desc = "A door remote control switch for the interior brig doors.";
+ id = "innerbrig";
+ name = "Brig Interior Door Control";
+ normaldoorcontrol = 1;
+ pixel_x = -6;
+ pixel_y = 7;
+ req_access = list("security")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"aZv" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "ordnancebridge"
+ },
+/obj/machinery/button/door{
+ id = "ordnancebridge";
+ pixel_x = -24;
+ req_one_access = list("maint_tunnels","science")
+ },
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"aZA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/button/door/directional/south{
+ id = "PermaLockdown";
+ name = "Panic Button";
+ req_access = list("brig")
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"aZL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"aZR" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bar" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 10
+ },
+/obj/item/flashlight/lamp{
+ pixel_x = -7;
+ pixel_y = 18;
+ start_on = 0
+ },
+/obj/item/kitchen/rollingpin{
+ pixel_x = -4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/port/aft)
"bas" = (
/obj/machinery/airalarm/directional/west,
@@ -3018,6 +4438,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/medical/office)
+<<<<<<< HEAD
"baB" = (
/obj/structure/table/glass,
/obj/structure/cable,
@@ -3030,12 +4451,23 @@
},
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"baE" = (
/obj/effect/spawner/random/structure/closet_maintenance,
/obj/effect/spawner/random/maintenance/two,
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"baG" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"baM" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -3085,6 +4517,25 @@
/obj/effect/spawner/random/structure/grille,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
+=======
+"bbT" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil,
+/obj/item/crowbar,
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"bcb" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/science/research)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bcf" = (
/obj/machinery/portable_atmospherics/canister,
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
@@ -3099,6 +4550,29 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"bcw" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/official/random/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"bcx" = (
+/obj/structure/table,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bcT" = (
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
@@ -3118,6 +4592,20 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"bdb" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/random/directional/east,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bdv" = (
/obj/effect/turf_decal/delivery,
/obj/structure/disposalpipe/trunk,
@@ -3138,6 +4626,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/surgery/theatre)
+<<<<<<< HEAD
"bdE" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -3148,6 +4637,8 @@
/obj/structure/sign/poster/contraband/random/directional/south,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bdP" = (
/obj/machinery/door/airlock/maintenance,
/obj/structure/cable,
@@ -3253,6 +4744,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
"bfy" = (
/obj/item/retractor,
/obj/item/hemostat{
@@ -3262,6 +4754,8 @@
/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
/turf/open/floor/iron/white,
/area/station/science/robotics/lab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bfM" = (
/obj/machinery/door/airlock/public/glass{
name = "Art Storage"
@@ -3416,6 +4910,7 @@
/obj/machinery/component_printer,
/turf/open/floor/iron/white,
/area/station/science/explab)
+<<<<<<< HEAD
"biz" = (
/obj/structure/table,
/obj/item/analyzer,
@@ -3426,6 +4921,8 @@
/obj/machinery/power/apc/auto_name/directional/west,
/turf/open/floor/iron/white,
/area/station/science/ordnance/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"biA" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/delivery,
@@ -3447,6 +4944,7 @@
/obj/structure/extinguisher_cabinet/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"bjf" = (
/obj/structure/table,
/obj/machinery/status_display/ai/directional/west,
@@ -3460,6 +4958,8 @@
/obj/item/ai_module/supplied/freeform,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai_upload)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bjl" = (
/obj/machinery/rnd/production/techfab/department/service,
/obj/effect/turf_decal/trimline/brown/warning{
@@ -3536,6 +5036,19 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"bjK" = (
+/obj/structure/tank_holder/extinguisher,
+/obj/machinery/camera/directional/east{
+ c_tag = "Medbay Cryogenics";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bjP" = (
/turf/closed/wall/r_wall,
/area/station/ai_monitored/turret_protected/aisat/foyer)
@@ -3557,6 +5070,15 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"bkJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bkM" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/engine,
@@ -3585,6 +5107,7 @@
/obj/effect/spawner/random/vending/snackvend,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"blg" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/spawner/random/structure/crate,
@@ -3603,6 +5126,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"blu" = (
/obj/structure/table/wood,
/obj/machinery/light/small/directional/west,
@@ -3646,6 +5171,7 @@
},
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
"bmn" = (
/obj/structure/cable,
/obj/machinery/camera/motion/directional/south{
@@ -3657,6 +5183,8 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/nuke_storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bmB" = (
/obj/machinery/light_switch/directional/south,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -3722,6 +5250,24 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+<<<<<<< HEAD
+=======
+"bny" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
+ name = "Antechamber Turret Control";
+ pixel_x = 30;
+ req_access = list("minisat")
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bnA" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
@@ -3832,6 +5378,29 @@
dir = 4
},
/area/station/service/chapel)
+<<<<<<< HEAD
+=======
+"bpq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 3
+ },
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -3
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bpu" = (
/obj/machinery/airalarm/directional/north,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
@@ -3859,6 +5428,27 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"bpY" = (
+/obj/machinery/light/small/directional/west,
+/obj/item/clothing/mask/animal/horsehead,
+/obj/structure/table/wood,
+/obj/machinery/airalarm/directional/south,
+/obj/item/cigarette/pipe,
+/obj/item/clothing/mask/fakemoustache,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"bqg" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/official/random/directional/east,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bqk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos/glass{
@@ -3867,6 +5457,14 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
/turf/open/floor/iron/dark,
/area/station/engineering/atmospherics_engine)
+<<<<<<< HEAD
+=======
+"bqC" = (
+/obj/structure/table/wood,
+/obj/item/cigarette/pipe,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bqJ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -3879,12 +5477,15 @@
},
/turf/open/floor/iron/white,
/area/station/science/cytology)
+<<<<<<< HEAD
"bqP" = (
/obj/effect/landmark/start/depsec/supply,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bqX" = (
/turf/closed/wall/r_wall,
/area/station/medical/chemistry)
@@ -3917,6 +5518,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
"brN" = (
/obj/structure/table,
/obj/item/clothing/gloves/latex,
@@ -3929,6 +5531,8 @@
},
/turf/open/floor/iron/white,
/area/station/science/robotics/lab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"brO" = (
/obj/structure/transit_tube/diagonal/topleft,
/turf/open/space,
@@ -3995,6 +5599,7 @@
},
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"bsv" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/trimline/brown/filled/line{
@@ -4018,6 +5623,24 @@
/area/station/service/theater)
"bsE" = (
/obj/structure/cable,
+=======
+"bsz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"bsC" = (
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"bsE" = (
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/disposalpipe/sorting/mail{
@@ -4061,6 +5684,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"btD" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -4117,6 +5741,76 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/iron,
/area/station/science/xenobiology)
+=======
+"btC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"btG" = (
+/obj/structure/window/spawner/directional/west,
+/obj/structure/table,
+/obj/item/storage/belt/utility/full,
+/obj/item/borg/upgrade/rename,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"btL" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"bug" = (
+/obj/structure/lattice,
+/obj/item/tank/internals/oxygen/empty,
+/turf/open/space/basic,
+/area/space/nearstation)
+"buj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"buk" = (
+/obj/structure/sign/warning/electric_shock,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/fore)
+"bus" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/extinguisher{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/extinguisher,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"buv" = (
+/obj/structure/sign/warning/secure_area/directional/west,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/closet/bombcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"buE" = (
/obj/machinery/power/apc/auto_name/directional/south,
/obj/structure/window/spawner/directional/west,
@@ -4152,6 +5846,17 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
+=======
+"buL" = (
+/obj/structure/closet/secure_closet/exile,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"buN" = (
/obj/structure/flora/bush/large/style_random,
/obj/structure/disposalpipe/segment,
@@ -4179,6 +5884,31 @@
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
+=======
+"bvl" = (
+/obj/machinery/newscaster/directional/east,
+/obj/structure/table,
+/obj/item/stack/package_wrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -7;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/glass/waterbottle{
+ pixel_y = 16
+ },
+/obj/machinery/digital_clock/directional/north,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bvJ" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -4187,6 +5917,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"bvU" = (
/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
/obj/effect/turf_decal/siding/purple{
@@ -4197,6 +5928,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bvY" = (
/obj/machinery/power/tracker,
/obj/structure/cable,
@@ -4245,6 +5978,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
"bxc" = (
/obj/structure/sink{
dir = 8;
@@ -4254,6 +5988,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bxf" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -4288,6 +6024,13 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"bxr" = (
+/obj/structure/sign/warning/electric_shock/directional/east,
+/turf/open/space/basic,
+/area/space/nearstation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bxE" = (
/obj/machinery/camera/directional/south{
c_tag = "Chemistry South";
@@ -4351,6 +6094,44 @@
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
+=======
+"byE" = (
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/north{
+ id = "rdrnd";
+ name = "Research and Development Containment Control";
+ pixel_x = -6;
+ req_access = list("rd")
+ },
+/obj/machinery/button/door/directional/north{
+ id = "rdordnance";
+ name = "Ordnance Containment Control";
+ pixel_x = 6;
+ req_access = list("rd")
+ },
+/obj/machinery/button/door/directional/north{
+ id = "rdoffice";
+ name = "Privacy Control";
+ pixel_y = 34;
+ req_access = list("rd")
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"byQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"byR" = (
/obj/structure/sign/warning/secure_area/directional/north,
/obj/structure/cable,
@@ -4387,6 +6168,25 @@
},
/turf/open/floor/iron/grimy,
/area/station/service/chapel/office)
+<<<<<<< HEAD
+=======
+"bzV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bAA" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -4423,6 +6223,21 @@
},
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"bBy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/supply/cargo_bay,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bBA" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -4433,6 +6248,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"bBC" = (
/obj/structure/sign/poster/random/directional/west,
/obj/effect/turf_decal/tile/neutral{
@@ -4440,6 +6256,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bBK" = (
/obj/structure/table,
/obj/item/storage/dice,
@@ -4518,6 +6336,18 @@
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
+=======
+"bDn" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bDp" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -4561,6 +6391,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/security/office)
+<<<<<<< HEAD
"bEA" = (
/obj/structure/cable,
/obj/machinery/camera/directional/south{
@@ -4638,6 +6469,46 @@
"bGo" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
+=======
+"bEv" = (
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{
+ name = "Burn Chamber Exterior Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"bEA" = (
+/obj/structure/cable,
+/obj/machinery/camera/directional/south{
+ c_tag = "Chief Medical Officer's Office";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/machinery/requests_console/directional/south{
+ department = "Chief Medical Officer's Desk";
+ name = "Chief Medical Officer's Requests Console"
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"bEC" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"bEK" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/spawner/random/structure/crate_loot,
/turf/open/floor/plating,
@@ -4815,6 +6686,7 @@
location = "11.1-Command-Starboard"
},
/obj/structure/cable,
+<<<<<<< HEAD
/turf/open/floor/iron,
/area/station/hallway/primary/central)
"bKe" = (
@@ -4832,6 +6704,332 @@
"bKz" = (
/turf/closed/wall/mineral/plastitanium,
/area/station/security/execution/transfer)
+=======
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"bER" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"bEW" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Customs Checkpoint"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/modular_computer/preset/id,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"bFr" = (
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"bFC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"bFH" = (
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"bFN" = (
+/obj/machinery/chem_dispenser,
+/obj/machinery/button/door/directional/north{
+ id = "pharmacy_shutters";
+ name = "pharmacy shutters control";
+ pixel_x = 24;
+ req_access = list("medical")
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"bGo" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/spawner/random/structure/crate_loot,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"bGu" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"bGC" = (
+/turf/closed/wall,
+/area/station/hallway/primary/central)
+"bGJ" = (
+/obj/structure/chair/stool/bar/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"bGL" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"bHb" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/station/science/research)
+"bHr" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/security/warden)
+"bHt" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"bHv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/station/cargo/warehouse)
+"bHD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"bHE" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"bHN" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"bHQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/medbay/chemistry,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"bIa" = (
+/obj/structure/sign/poster/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"bIi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"bIq" = (
+/obj/structure/table/wood,
+/obj/machinery/button/ticket_machine{
+ pixel_x = 38
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = 6;
+ pixel_y = -34
+ },
+/obj/machinery/button/door/directional/south{
+ id = "hop";
+ name = "Privacy Shutters Control";
+ pixel_x = -6;
+ req_access = list("hop")
+ },
+/obj/item/paper_bin/carbon{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/stamp/head/hop{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/machinery/button/door/directional/south{
+ id = "hopqueue";
+ name = "Queue Shutters Control";
+ pixel_x = -6;
+ pixel_y = -34;
+ req_access = list("hop")
+ },
+/obj/item/pen{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/machinery/button/photobooth{
+ pixel_x = 26
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"bIv" = (
+/obj/machinery/smartfridge/organ,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/station/medical/surgery/aft)
+"bIw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"bIH" = (
+/obj/structure/chair/comfy/beige,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"bIO" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"bIU" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"bJk" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"bJp" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"bJq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"bJG" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"bJQ" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/sign/poster/official/random/directional/east,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"bJW" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=12-Central-Starboard";
+ location = "11.1-Command-Starboard"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"bJX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"bKv" = (
+/obj/item/pen,
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/item/folder/red,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"bKz" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/station/security/execution/transfer)
+"bKB" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bKT" = (
/obj/machinery/door/airlock/grunge{
name = "Prison Forestry"
@@ -4844,6 +7042,33 @@
"bLd" = (
/turf/closed/wall,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
+=======
+"bLh" = (
+/obj/effect/turf_decal/trimline/green/line{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/bottle/syrup_bottle/korta_nectar{
+ pixel_x = 5;
+ pixel_y = 16
+ },
+/obj/item/reagent_containers/cup/bottle/syrup_bottle/liqueur{
+ pixel_x = -5;
+ pixel_y = 16
+ },
+/obj/item/reagent_containers/cup/bottle/syrup_bottle/caramel{
+ pixel_x = 15;
+ pixel_y = 16
+ },
+/obj/item/storage/fancy/coffee_condi_display{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bLj" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/effect/turf_decal/trimline/brown/filled/warning,
@@ -4860,6 +7085,22 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/plating/airless,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"bLY" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bMa" = (
/obj/structure/disposaloutlet{
dir = 4;
@@ -4905,11 +7146,14 @@
},
/turf/open/floor/iron/checker,
/area/station/engineering/atmos/pumproom)
+<<<<<<< HEAD
"bME" = (
/obj/structure/table,
/obj/item/cigarette/pipe,
/turf/open/floor/plating,
/area/station/maintenance/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bMM" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -4929,6 +7173,7 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/surgery/theatre)
+<<<<<<< HEAD
"bMW" = (
/obj/structure/sign/warning/vacuum/external/directional/south,
/obj/machinery/light/small/directional/north,
@@ -4940,6 +7185,8 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/transit_tube)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bMY" = (
/turf/closed/wall,
/area/station/medical/office)
@@ -4984,16 +7231,29 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
"bNv" = (
/obj/structure/table,
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/testlab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bNE" = (
/obj/machinery/light/directional/east,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"bNN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bNP" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -5032,10 +7292,17 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"bOP" = (
/obj/effect/turf_decal/trimline/brown/filled/line,
/obj/machinery/light/directional/south,
/obj/structure/disposalpipe/segment,
+=======
+"bPc" = (
+/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/cargo/storage)
"bPi" = (
@@ -5068,6 +7335,7 @@
"bQj" = (
/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
dir = 4
+<<<<<<< HEAD
},
/obj/structure/cable,
/turf/open/floor/plating,
@@ -5104,6 +7372,65 @@
/obj/effect/landmark/start/scientist,
/turf/open/floor/engine,
/area/station/science/explab)
+=======
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"bQk" = (
+/obj/item/bodypart/arm/left,
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"bQl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Cargo Office";
+ name = "Cargo Office Fax Machine"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"bQN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"bQO" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Bar - Starboard"
+ },
+/obj/structure/cable,
+/obj/effect/spawner/random/entertainment/arcade,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"bQQ" = (
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/machinery/smartfridge/extract/preloaded,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"bRb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"bRp" = (
+/obj/effect/spawner/random/decoration/microwave{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bRq" = (
/obj/structure/table/wood,
/obj/item/food/grown/harebell{
@@ -5182,6 +7509,7 @@
},
/turf/open/floor/wood,
/area/station/command/heads_quarters/hop)
+<<<<<<< HEAD
"bSp" = (
/obj/machinery/door/airlock/mining{
name = "Quartermaster's Office"
@@ -5195,6 +7523,8 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/diagonal,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bSr" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/airalarm/directional/west,
@@ -5202,6 +7532,33 @@
dir = 8
},
/area/station/commons/fitness)
+<<<<<<< HEAD
+=======
+"bSs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/table/glass,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/grenade/chem_grenade,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/screwdriver{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/requests_console/directional/west{
+ department = "Pharmacy";
+ name = "Pharmacy Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bSY" = (
/obj/structure/rack,
/obj/effect/spawner/random/maintenance,
@@ -5224,6 +7581,23 @@
},
/turf/open/floor/iron,
/area/station/commons/lounge)
+<<<<<<< HEAD
+=======
+"bTm" = (
+/obj/structure/table/reinforced,
+/obj/item/wheelchair{
+ pixel_y = -3
+ },
+/obj/item/wheelchair,
+/obj/item/wheelchair{
+ pixel_y = 3
+ },
+/obj/structure/window/spawner/directional/north,
+/obj/structure/window/spawner/directional/west,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bTq" = (
/obj/machinery/camera/motion/directional/south{
c_tag = "AI Upload Chamber - Port";
@@ -5234,6 +7608,7 @@
/obj/machinery/power/apc/auto_name/directional/south,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai_upload)
+<<<<<<< HEAD
"bUb" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/trimline/brown/filled/corner{
@@ -5245,16 +7620,59 @@
/obj/effect/decal/cleanable/wrapping,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bUc" = (
/obj/machinery/shower/directional/west,
/obj/effect/landmark/start/assistant,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/restrooms)
+<<<<<<< HEAD
"bUg" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"bUk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 3
+ },
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -3
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"bUo" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/sheet/plasteel{
+ amount = 15
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/structure/fireaxecabinet/mechremoval/directional/east,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"bUt" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/item/radio/intercom/directional/west,
+/obj/item/pinpointer/nuke,
+/obj/item/disk/nuclear,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bUC" = (
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/north,
@@ -5325,6 +7743,38 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"bVK" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ id_tag = "virology_airlock_interior";
+ name = "Virology Interior Airlock"
+ },
+/obj/machinery/door_buttons/access_button{
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_access = list("virology")
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bWe" = (
/obj/structure/table/glass,
/obj/structure/reagent_dispensers/wall/virusfood/directional/west,
@@ -5350,6 +7800,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
"bWs" = (
/obj/structure/cable,
/obj/machinery/door/airlock/external{
@@ -5361,6 +7812,8 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/plating,
/area/station/maintenance/solars/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bWw" = (
/obj/structure/chair/stool/directional/south,
/obj/machinery/computer/pod/old/mass_driver_controller/trash{
@@ -5368,6 +7821,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+<<<<<<< HEAD
"bWA" = (
/obj/machinery/light/directional/west,
/obj/machinery/piratepad/civilian,
@@ -5381,6 +7835,8 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bWM" = (
/obj/item/radio/intercom/directional/south,
/obj/effect/turf_decal/tile/blue,
@@ -5420,6 +7876,37 @@
/obj/machinery/duct,
/turf/open/floor/iron,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
+=======
+"bXc" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/requests_console/directional/east{
+ department = "Research Lab";
+ name = "Research Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/trimline/purple/filled/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"bXg" = (
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bXk" = (
/obj/machinery/telecomms/server/presets/command,
/turf/open/floor/circuit/telecomms/mainframe,
@@ -5497,6 +7984,7 @@
"bYz" = (
/turf/open/floor/circuit,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"bYF" = (
/obj/structure/sign/chalkboard_menu,
/turf/closed/wall,
@@ -5514,6 +8002,29 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+"bYN" = (
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"bZb" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Doors";
+ pixel_y = 1;
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bZq" = (
/obj/machinery/seed_extractor,
/obj/effect/turf_decal/stripes/line{
@@ -5566,11 +8077,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/security/courtroom)
+<<<<<<< HEAD
"car" = (
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"caO" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -5579,6 +8093,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
+=======
+"caV" = (
+/obj/vehicle/sealed/mecha/ripley/cargo,
+/obj/effect/decal/cleanable/generic,
+/turf/open/floor/iron/recharge_floor,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cbg" = (
/obj/effect/turf_decal/tile/purple{
dir = 1
@@ -5595,6 +8117,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
"cbz" = (
/turf/closed/wall,
/area/station/cargo/storage)
@@ -5610,6 +8133,22 @@
/obj/structure/window/spawner/directional/west,
/turf/open/floor/iron/dark,
/area/station/medical/office)
+=======
+"cbp" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/normal/directional/north,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"cbz" = (
+/turf/closed/wall,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ccc" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -5618,6 +8157,7 @@
/obj/machinery/duct,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+<<<<<<< HEAD
"cci" = (
/obj/machinery/computer/mecha{
dir = 8
@@ -5635,6 +8175,8 @@
/obj/machinery/computer/security/telescreen/rd/directional/north,
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/rd)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ccD" = (
/mob/living/carbon/human/species/monkey,
/turf/open/floor/grass,
@@ -5671,6 +8213,22 @@
},
/turf/open/floor/iron,
/area/station/commons/toilet/auxiliary)
+<<<<<<< HEAD
+=======
+"cdC" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"cdS" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cdX" = (
/turf/closed/wall,
/area/station/engineering/storage/tech)
@@ -5728,6 +8286,7 @@
},
/turf/open/space,
/area/space/nearstation)
+<<<<<<< HEAD
"ceY" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -5738,6 +8297,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ceZ" = (
/obj/effect/turf_decal/tile/purple/half/contrasted{
dir = 4
@@ -5781,6 +8342,7 @@
/obj/machinery/oven/range,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+<<<<<<< HEAD
"cfJ" = (
/obj/structure/cable,
/obj/structure/table/wood/fancy/black,
@@ -5823,6 +8385,15 @@
/obj/machinery/door/window/right/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+"cfH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cgi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/dark/side{
@@ -5855,6 +8426,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"cgP" = (
+/obj/machinery/air_sensor/ordnance_burn_chamber,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"cgZ" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cha" = (
/obj/machinery/door/airlock/research/glass{
name = "Ordnance Lab"
@@ -5865,6 +8448,19 @@
/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
/turf/open/floor/iron/dark/airless,
/area/station/science/ordnance/freezerchamber)
+<<<<<<< HEAD
+=======
+"chn" = (
+/obj/structure/sign/warning/secure_area/directional/south,
+/obj/structure/table/reinforced,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"chH" = (
/obj/structure/chair/stool/directional/west,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -5892,6 +8488,7 @@
},
/turf/closed/wall,
/area/station/maintenance/central)
+<<<<<<< HEAD
"cia" = (
/obj/structure/sign/poster/random/directional/south,
/obj/effect/turf_decal/tile/blue,
@@ -5900,6 +8497,8 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cii" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -5907,6 +8506,18 @@
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"ciE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ciG" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -5971,6 +8582,17 @@
},
/turf/open/floor/plating,
/area/station/maintenance/solars/port/aft)
+<<<<<<< HEAD
+=======
+"ckB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ckE" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 4
@@ -5986,6 +8608,7 @@
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"clf" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/brown{
@@ -6058,6 +8681,57 @@
/obj/item/folder/red,
/turf/open/floor/carpet,
/area/station/command/bridge)
+=======
+"clj" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"cln" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/research)
+"clp" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"clq" = (
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"clE" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"clO" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Inner Pipe Access";
+ req_access = list("atmospherics")
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump/off{
+ dir = 1;
+ name = "O2 To Pure"
+ },
+/obj/structure/window/spawner/directional/east,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"clQ" = (
+/turf/closed/wall,
+/area/station/command/teleporter)
+"cml" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cmB" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -6076,6 +8750,34 @@
/obj/item/bodypart/leg/left,
/turf/open/floor/plating/airless,
/area/station/science/ordnance/bomb)
+<<<<<<< HEAD
+=======
+"cmX" = (
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "QMLoad";
+ name = "Loading Conveyor";
+ pixel_x = -13;
+ pixel_y = -5
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"cna" = (
+/obj/structure/table,
+/obj/item/storage/box/lights/mixed{
+ pixel_y = 9;
+ pixel_x = 8
+ },
+/obj/item/storage/box/lights/mixed{
+ pixel_y = 5;
+ pixel_x = -6
+ },
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cnc" = (
/obj/structure/chair/comfy/brown{
dir = 8
@@ -6158,12 +8860,25 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+<<<<<<< HEAD
"coE" = (
/obj/effect/turf_decal/trimline/brown/filled/line{
dir = 4
},
/obj/effect/turf_decal/siding/thinplating_new{
dir = 4
+=======
+"com" = (
+/obj/structure/cable,
+/obj/machinery/netpod,
+/obj/machinery/light/directional/west,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/cargo/bitrunning/den)
+"coz" = (
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/turf/open/floor/iron,
/area/station/cargo/storage)
@@ -6189,10 +8904,30 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"cpn" = (
+/obj/structure/table,
+/obj/machinery/newscaster/directional/north,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cpp" = (
/obj/structure/sign/poster/random/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"cpw" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -6214,6 +8949,8 @@
/obj/item/computer_disk/medical,
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cpH" = (
/obj/structure/lattice/catwalk,
/obj/structure/marker_beacon/yellow,
@@ -6268,6 +9005,29 @@
/obj/structure/cable,
/turf/open/floor/plating/airless,
/area/station/solars/port/aft)
+<<<<<<< HEAD
+=======
+"cqm" = (
+/obj/item/disk/data{
+ pixel_x = 9;
+ pixel_y = -1
+ },
+/obj/item/disk/tech_disk{
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/disk/design_disk{
+ name = "component design disk";
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/obj/item/toy/talking/ai{
+ name = "\improper Nanotrasen-brand toy AI";
+ pixel_y = 6
+ },
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cqp" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/spawner/random/structure/closet_private,
@@ -6278,6 +9038,17 @@
/obj/effect/spawner/random/engineering/atmospherics_portable,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
+=======
+"cqy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cqD" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -6378,10 +9149,28 @@
/obj/effect/landmark/navigate_destination,
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
"csy" = (
/obj/structure/dresser,
/turf/open/floor/wood,
/area/station/service/theater)
+=======
+"csz" = (
+/obj/structure/table,
+/obj/item/raw_anomaly_core/random{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/raw_anomaly_core/random{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/raw_anomaly_core/random,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"csQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
@@ -6404,6 +9193,7 @@
/obj/machinery/disposal/bin,
/turf/open/floor/iron,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"ctu" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -6413,6 +9203,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ctL" = (
/obj/machinery/computer/records/security{
dir = 4
@@ -6433,6 +9225,7 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/plating,
/area/station/maintenance/solars/port/aft)
+<<<<<<< HEAD
"cua" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/generic,
@@ -6442,6 +9235,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cuc" = (
/obj/structure/disposalpipe/segment{
dir = 9
@@ -6453,6 +9248,7 @@
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/ce)
"cuh" = (
+<<<<<<< HEAD
/obj/structure/table,
/obj/item/paper_bin,
/obj/item/pen,
@@ -6463,6 +9259,11 @@
/obj/effect/turf_decal/trimline/purple/filled/warning,
/turf/open/floor/iron,
/area/station/science/lab)
+=======
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cuk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 8
@@ -6484,6 +9285,35 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"cuM" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/table,
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/rag{
+ pixel_x = -4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"cuO" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/closet/firecloset,
+/obj/structure/sign/warning/secure_area/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cuZ" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -6516,6 +9346,20 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"cvv" = (
+/obj/machinery/conveyor/inverted{
+ dir = 10;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/railing,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cvw" = (
/obj/machinery/recharge_station,
/turf/open/floor/iron/dark,
@@ -6555,6 +9399,7 @@
/obj/machinery/shower/directional/south,
/turf/open/floor/iron/white,
/area/station/science/xenobiology/hallway)
+<<<<<<< HEAD
"cvU" = (
/obj/structure/table/wood,
/obj/item/storage/briefcase/secure{
@@ -6573,6 +9418,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cvY" = (
/turf/open/floor/plating/airless,
/area/station/solars/port/aft)
@@ -6658,6 +9505,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"cwE" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -6668,6 +9516,8 @@
},
/turf/open/floor/wood/large,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cwF" = (
/obj/structure/sink/directional/west,
/obj/structure/mirror/directional/east,
@@ -6691,6 +9541,16 @@
},
/turf/open/floor/iron,
/area/station/security/prison/visit)
+<<<<<<< HEAD
+=======
+"cwP" = (
+/obj/structure/sign/poster/random/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cwX" = (
/obj/machinery/door/window/brigdoor/left/directional/south{
name = "Command Desk";
@@ -6701,6 +9561,7 @@
/turf/open/floor/iron/dark,
/area/station/command/bridge)
"cwY" = (
+<<<<<<< HEAD
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -6708,6 +9569,20 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageExternal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cxi" = (
/obj/item/solar_assembly,
/obj/item/solar_assembly,
@@ -6783,10 +9658,13 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"cxT" = (
/obj/machinery/door/poddoor/incinerator_ordmix,
/turf/open/floor/engine/vacuum,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cxU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -6806,6 +9684,17 @@
},
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
+=======
+"cyE" = (
+/obj/machinery/portable_atmospherics/pipe_scrubber,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cyG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -6823,6 +9712,17 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
+=======
+"cyU" = (
+/obj/structure/table/wood,
+/obj/item/toy/plush/carpplushie{
+ greyscale_colors = "#ff5050#000000";
+ name = "\improper Nanotrasen wildlife department space carp plushie"
+ },
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cyW" = (
/turf/open/floor/iron,
/area/station/engineering/atmos)
@@ -6835,6 +9735,7 @@
/obj/effect/mapping_helpers/airlock/access/all/medical/general,
/turf/open/floor/iron/white,
/area/station/medical/abandoned)
+<<<<<<< HEAD
"cza" = (
/obj/effect/turf_decal/trimline/blue/corner{
dir = 1
@@ -6855,6 +9756,8 @@
/obj/structure/sign/departments/rndserver/directional/north,
/turf/open/floor/iron/white,
/area/station/science/research)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"czs" = (
/obj/structure/easel,
/obj/effect/mapping_helpers/broken_floor,
@@ -6868,6 +9771,16 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/dark,
/area/station/security/lockers)
+<<<<<<< HEAD
+=======
+"czD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"czG" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -6884,6 +9797,7 @@
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating/airless,
/area/space/nearstation)
+<<<<<<< HEAD
"czN" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
@@ -6903,6 +9817,33 @@
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
/turf/closed/wall/r_wall,
+=======
+"czP" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"czT" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"cAf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/crate,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"cAm" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/closed/wall/r_wall,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/engineering/supermatter)
"cAG" = (
/obj/effect/turf_decal/tile/green/opposingcorners{
@@ -6938,6 +9879,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"cBv" = (
/obj/structure/table/glass,
/obj/machinery/cell_charger,
@@ -6951,6 +9893,8 @@
},
/turf/open/floor/iron/white,
/area/station/science/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cBy" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -6967,6 +9911,7 @@
/obj/structure/window/spawner/directional/west,
/turf/open/floor/iron/dark,
/area/station/medical/storage)
+<<<<<<< HEAD
"cBO" = (
/obj/structure/fireaxecabinet/directional/south,
/obj/item/paper_bin{
@@ -6980,6 +9925,8 @@
/obj/structure/table/glass,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cBV" = (
/obj/machinery/mech_bay_recharge_port{
dir = 8
@@ -6990,6 +9937,7 @@
/obj/structure/railing,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
"cCe" = (
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/trimline/brown/filled/line{
@@ -7004,6 +9952,46 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"cCM" = (
+/obj/structure/lattice/catwalk,
+/obj/item/reagent_containers/cup/glass/bottle/rum{
+ pixel_x = -7;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/glass/colocup{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/glass/colocup{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/cigarette/rollie/cannabis{
+ pixel_y = -3
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"cCN" = (
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cCR" = (
/obj/item/radio/intercom/directional/east,
/obj/structure/kitchenspike,
@@ -7023,6 +10011,37 @@
/obj/item/instrument/guitar,
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"cDM" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"cDO" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cDP" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -7040,6 +10059,14 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"cDV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cDX" = (
/obj/structure/chair/stool/bar/directional/south,
/obj/effect/turf_decal/tile/bar/opposingcorners,
@@ -7048,6 +10075,7 @@
},
/turf/open/floor/iron,
/area/station/commons/lounge)
+<<<<<<< HEAD
"cEe" = (
/obj/machinery/recharger{
pixel_y = 4
@@ -7067,6 +10095,29 @@
/obj/effect/mapping_helpers/requests_console/supplies,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint/medical)
+=======
+"cEv" = (
+/obj/item/food/grown/wheat,
+/obj/item/food/grown/watermelon,
+/obj/item/food/grown/citrus/orange,
+/obj/item/food/grown/grapes,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cEx" = (
+/obj/structure/dresser,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"cEY" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cFa" = (
/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
dir = 4
@@ -7077,10 +10128,31 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"cFl" = (
+/obj/structure/table,
+/obj/structure/cable,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cFp" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/station/commons/storage/primary)
+<<<<<<< HEAD
+=======
+"cFr" = (
+/obj/structure/table,
+/obj/machinery/status_display/evac/directional/east,
+/obj/machinery/flasher/directional/south{
+ id = "AI"
+ },
+/obj/effect/spawner/round_default_module,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cFu" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
@@ -7091,6 +10163,17 @@
},
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
+=======
+"cGq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cGu" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -7127,6 +10210,7 @@
},
/turf/open/floor/iron/grimy,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
"cHp" = (
/obj/effect/turf_decal/tile/brown/opposingcorners,
/obj/structure/table,
@@ -7164,11 +10248,14 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cHE" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
"cHN" = (
/obj/effect/decal/cleanable/blood/old,
/obj/machinery/camera/directional/east{
@@ -7177,6 +10264,21 @@
},
/turf/open/floor/iron/white,
/area/station/science/research)
+=======
+"cHG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cHQ" = (
/obj/machinery/computer/security/mining{
dir = 1
@@ -7186,12 +10288,20 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
"cIa" = (
/obj/structure/cable,
/obj/machinery/status_display/evac/directional/west,
/obj/machinery/light/directional/west,
/turf/open/floor/iron,
/area/station/construction/storage_wing)
+=======
+"cHR" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cId" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -7201,6 +10311,7 @@
},
/turf/open/floor/plating,
/area/station/science/genetics)
+<<<<<<< HEAD
"cIg" = (
/obj/structure/secure_safe/caps_spare,
/obj/structure/table/glass,
@@ -7214,6 +10325,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/command/teleporter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cIK" = (
/obj/machinery/smartfridge/chemistry/preloaded,
/obj/effect/turf_decal/tile/yellow/fourcorners,
@@ -7261,6 +10374,7 @@
},
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+<<<<<<< HEAD
"cJp" = (
/obj/machinery/status_display/supply,
/turf/closed/wall,
@@ -7275,6 +10389,18 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"cJt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/computer/cargo{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cJv" = (
/obj/effect/turf_decal/tile/yellow/fourcorners,
/obj/machinery/chem_heater/withbuffer,
@@ -7287,6 +10413,35 @@
/obj/structure/table/wood,
/turf/open/floor/iron/grimy,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
+=======
+"cJL" = (
+/obj/structure/sign/directions/evac,
+/turf/closed/wall/r_wall,
+/area/station/medical/chemistry)
+"cJS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"cJT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cKd" = (
/obj/effect/turf_decal/trimline/blue/filled/warning{
dir = 4
@@ -7319,6 +10474,20 @@
/obj/effect/landmark/start/hangover,
/turf/open/floor/carpet,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"cKN" = (
+/obj/structure/table/wood,
+/obj/structure/cable,
+/obj/item/storage/backpack/satchel/leather/withwallet{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cKW" = (
/obj/structure/secure_safe/directional/north,
/obj/machinery/camera/directional/north{
@@ -7369,6 +10538,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
+=======
+"cLN" = (
+/obj/structure/sign/departments/exodrone/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cMb" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable,
@@ -7392,6 +10568,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/commons/fitness)
+<<<<<<< HEAD
"cMJ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -7399,6 +10576,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cML" = (
/obj/structure/cable,
/turf/closed/wall/r_wall,
@@ -7424,6 +10603,26 @@
/obj/effect/landmark/navigate_destination,
/turf/open/floor/iron/white,
/area/station/medical/psychology)
+<<<<<<< HEAD
+=======
+"cNb" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/computer/security/qm{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"cNg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cNk" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 4
@@ -7443,14 +10642,18 @@
"cNS" = (
/turf/open/floor/iron,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"cNX" = (
/obj/item/stack/rods,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cOa" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+<<<<<<< HEAD
"cOk" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -7467,6 +10670,12 @@
},
/turf/open/floor/iron,
/area/station/science/lab)
+=======
+"cOj" = (
+/obj/structure/sign/chalkboard_menu,
+/turf/closed/wall,
+/area/station/commons/storage/primary)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cOl" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -7486,11 +10695,14 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
"cOt" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot_white,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cON" = (
/obj/structure/table,
/obj/item/pai_card,
@@ -7508,6 +10720,15 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/command/heads_quarters/cmo)
+<<<<<<< HEAD
+=======
+"cOT" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_burn_chamber_input{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cOX" = (
/obj/structure/sign/warning/radiation/rad_area/directional/north,
/obj/effect/turf_decal/stripes/line{
@@ -7517,6 +10738,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"cPa" = (
/obj/structure/sign/warning/secure_area/directional/south,
/turf/open/floor/plating,
@@ -7534,6 +10756,8 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cPQ" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/fyellow,
@@ -7573,6 +10797,25 @@
/obj/structure/window/spawner/directional/south,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"cQz" = (
+/obj/structure/table/glass,
+/obj/machinery/light_switch/directional/north,
+/obj/item/storage/briefcase/secure{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/storage/medkit/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cQQ" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
@@ -7621,11 +10864,14 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+<<<<<<< HEAD
"cRZ" = (
/obj/structure/sink/directional/east,
/obj/structure/sign/poster/contraband/random/directional/west,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cSg" = (
/obj/structure/chair/comfy/brown{
dir = 4
@@ -7651,6 +10897,12 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
+=======
+"cSu" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cSv" = (
/obj/effect/turf_decal/delivery,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -7690,6 +10942,17 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
+=======
+"cTk" = (
+/obj/machinery/camera/motion/directional/south{
+ active_power_usage = 0;
+ c_tag = "Armory - External";
+ use_power = 0
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cTl" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/syringe,
@@ -7732,6 +10995,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"cTR" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -7745,6 +11009,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cUd" = (
/obj/machinery/door/firedoor,
/obj/structure/cable,
@@ -7765,6 +11031,7 @@
},
/turf/open/floor/wood,
/area/station/security/office)
+<<<<<<< HEAD
"cUm" = (
/obj/machinery/chem_dispenser,
/obj/effect/turf_decal/tile/yellow/half/contrasted{
@@ -7772,6 +11039,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cUw" = (
/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/cable,
@@ -7786,6 +11055,7 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/wood,
/area/station/commons/dorms)
+<<<<<<< HEAD
"cUy" = (
/obj/effect/landmark/navigate_destination/bar,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -7800,6 +11070,8 @@
/obj/structure/sign/poster/official/random/directional/east,
/turf/open/floor/plating,
/area/station/commons/toilet/auxiliary)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cUH" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -7814,6 +11086,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
"cUL" = (
/obj/structure/cable,
/obj/structure/sign/poster/official/random/directional/east,
@@ -7822,11 +11095,27 @@
},
/turf/open/floor/iron/white/corner,
/area/station/hallway/secondary/entry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cUP" = (
/obj/effect/spawner/random/structure/closet_private,
/obj/item/clothing/under/misc/assistantformal,
/turf/open/floor/wood,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"cUX" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/light/small/directional/west,
+/obj/item/paper/fluff/gateway,
+/obj/item/coin/plasma,
+/obj/item/melee/chainofcommand,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cVj" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -7843,6 +11132,20 @@
},
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"cVC" = (
+/obj/structure/cable,
+/obj/machinery/mineral/stacking_unit_console{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cVJ" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
dir = 4
@@ -7856,6 +11159,7 @@
"cWr" = (
/obj/structure/disposalpipe/segment{
dir = 4
+<<<<<<< HEAD
},
/turf/open/floor/carpet,
/area/station/service/library)
@@ -7912,6 +11216,73 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+ },
+/turf/open/floor/carpet,
+/area/station/service/library)
+"cWs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"cWu" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"cWy" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Distro to Waste"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"cWD" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"cWI" = (
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"cWM" = (
+/obj/machinery/door/airlock/external{
+ name = "Construction Zone"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base,
+/turf/open/floor/plating,
+/area/station/construction/mining/aux_base)
+"cWT" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"cXc" = (
+/obj/structure/table,
+/obj/item/food/grown/poppy/lily,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cXg" = (
/obj/machinery/recharge_station,
/obj/machinery/light/small/directional/west,
@@ -7929,6 +11300,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/office)
+<<<<<<< HEAD
"cXD" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -7940,6 +11312,24 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+"cXE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/filled/line,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"cXH" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/safety_eye_protection/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cXP" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
@@ -7975,6 +11365,35 @@
},
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
+=======
+"cYJ" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutters"
+ },
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/machinery/door/window/left/directional/north{
+ name = "Pharmacy Desk";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cYL" = (
/obj/machinery/door/poddoor/shutters{
id = "aux_base_shutters";
@@ -7990,6 +11409,15 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"cYY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cZi" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 4
@@ -8035,6 +11463,14 @@
},
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
+=======
+"daa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/records/medical/laptop,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dac" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -8149,6 +11585,7 @@
/obj/effect/turf_decal/tile/red/fourcorners,
/turf/open/floor/iron/white,
/area/station/security/prison/safe)
+<<<<<<< HEAD
"dcO" = (
/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw{
dir = 8
@@ -8162,6 +11599,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ddc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/iron/dark,
@@ -8218,6 +11657,7 @@
/obj/item/wrench,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+<<<<<<< HEAD
"ddR" = (
/obj/effect/turf_decal/trimline/brown/corner{
dir = 1
@@ -8234,6 +11674,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/textured_half,
/area/station/cargo/bitrunning/den)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"deb" = (
/obj/effect/turf_decal/bot,
/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
@@ -8348,6 +11790,18 @@
"dfC" = (
/turf/open/floor/iron/grimy,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
+=======
+"dfK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/cargo_technician,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dfO" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -8447,6 +11901,7 @@
},
/turf/open/space,
/area/space/nearstation)
+<<<<<<< HEAD
"dgy" = (
/obj/structure/table,
/obj/item/stack/sheet/iron/fifty,
@@ -8471,6 +11926,8 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dgz" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -8507,6 +11964,7 @@
"dhp" = (
/obj/machinery/modular_computer/preset/engineering,
/obj/effect/turf_decal/tile/blue/half/contrasted{
+<<<<<<< HEAD
dir = 1
},
/turf/open/floor/iron/dark,
@@ -8978,6 +12436,539 @@
/turf/open/water,
/area/station/service/hydroponics/garden)
"dsb" = (
+=======
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"dhs" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"dhu" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"dhw" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dhz" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"dhN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/range)
+"dhU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dhW" = (
+/obj/structure/table/reinforced,
+/obj/item/kitchen/fork/plastic,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"dhX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"dia" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Chemistry West";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dim" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/color/blue{
+ desc = "An old pair of nitrile gloves, with no sterile properties.";
+ name = "old nitrile gloves"
+ },
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/reagent_containers/cup/rag,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"diq" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/left/directional/west{
+ name = "Containment Pen #5";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"dit" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"diC" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Atmospherics Maintenance"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"diE" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"diJ" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"diX" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"dji" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning/electric_shock/directional/south,
+/turf/open/space/basic,
+/area/space/nearstation)
+"djn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"dkx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dkC" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"dkL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"dkO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"dkW" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"dkX" = (
+/obj/structure/cable,
+/obj/machinery/light/cold/directional/north,
+/obj/machinery/computer/security/telescreen/isolation/directional/north,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"dla" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"dlb" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"dlc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/break_room)
+"dlr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dlG" = (
+/obj/structure/cable,
+/obj/item/radio/intercom/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"dlH" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dlL" = (
+/obj/structure/sign/warning/vacuum/external/directional/west,
+/obj/structure/closet/emcloset/anchored,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"dme" = (
+/obj/effect/turf_decal/arrows{
+ dir = 1
+ },
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/spawner/directional/west,
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"dmJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"dmK" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/command)
+"dmO" = (
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"dmP" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"dno" = (
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"dnH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Doors"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/storage_shared)
+"dnJ" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"dnW" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "N2O to Pure"
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dox" = (
+/obj/structure/rack,
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/hand_labeler,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"doD" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/firecloset,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"doI" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"doM" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/light/small/directional/north,
+/obj/structure/rack,
+/obj/item/storage/toolbox/electrical,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"dpg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "roboticsprivacy2";
+ name = "Robotics Shutters"
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/window/left/directional/north{
+ name = "Robotics Desk";
+ req_access = list("robotics")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"dpl" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_x = 2;
+ pixel_y = 9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_y = 3
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dpn" = (
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"dps" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central";
+ location = "14.8-Dorms-Lockers"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"dpx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"dpI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dpN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"dpU" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics - Central Aft"
+ },
+/obj/machinery/light/no_nightlight/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"dqc" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "N2O Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/port/fore)
+"dqo" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Disposal Exit";
+ name = "Disposal Exit Vent"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"dqu" = (
+/obj/item/book/manual/wiki/security_space_law{
+ name = "space law";
+ pixel_y = 2
+ },
+/obj/item/toy/gun,
+/obj/item/restraints/handcuffs,
+/obj/structure/table/wood,
+/obj/item/clothing/head/collectable/hos{
+ name = "novelty HoS hat"
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"dqx" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"dqy" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/porta_turret/ai,
+/obj/machinery/computer/security/telescreen/minisat/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"dqE" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/item/lightreplacer{
+ pixel_y = 7
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/storage_shared)
+"dqI" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"dqM" = (
+/obj/item/wrench,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"dqN" = (
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dqX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"drm" = (
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"drq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"drw" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"drA" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"drE" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/effect/landmark/start/medical_doctor,
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"dsb" = (
/obj/effect/turf_decal/plaque{
icon_state = "L13"
},
@@ -9061,6 +13052,11798 @@
},
/turf/open/floor/iron,
/area/station/commons/dorms)
+"dtB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dtE" = (
+/obj/structure/table/reinforced,
+/obj/item/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/item/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/pen/red{
+ pixel_y = 10
+ },
+/obj/item/dest_tagger{
+ pixel_x = 9;
+ pixel_y = 10
+ },
+/obj/item/pen/screwdriver{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"dtY" = (
+/obj/machinery/meter/monitored/waste_loop,
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"duc" = (
+/obj/effect/turf_decal/siding/thinplating_new/dark/corner{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/cargo/bitrunning/den)
+"duk" = (
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"duu" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/medical/medbay/central)
+"duw" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"duF" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"duG" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"duI" = (
+/turf/closed/wall,
+/area/station/command/bridge)
+"duW" = (
+/obj/machinery/computer/security,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/requests_console/directional/north{
+ department = "Quartermaster's Desk";
+ name = "Security Requests Console"
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"dve" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dvn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"dvJ" = (
+/obj/structure/tank_dispenser,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"dvP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"dvT" = (
+/obj/structure/sign/warning/vacuum/external/directional/south,
+/obj/machinery/power/solar_control{
+ dir = 4;
+ id = "aftport";
+ name = "Port Quarter Solar Control"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"dvV" = (
+/obj/machinery/nuclearbomb/beer{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"dvZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=11-Command-Port";
+ location = "10.2-Aft-Port-Corner"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dwf" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dwk" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Morgue";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"dwm" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/clothing/costume,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dwz" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/engineering/atmos)
+"dwH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dwI" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/delivery_chute{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/north,
+/obj/structure/window/spawner/directional/west,
+/obj/machinery/door/window/right/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"dwJ" = (
+/obj/structure/lattice,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/space,
+/area/space/nearstation)
+"dwZ" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutters"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"dxe" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"dxk" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"dxo" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"dxq" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"dxK" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/marker_beacon/purple,
+/turf/open/space/basic,
+/area/space/nearstation)
+"dyd" = (
+/obj/machinery/vending/assist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dye" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"dyq" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/status_display/evac/directional/west,
+/obj/machinery/digital_clock/directional/south,
+/obj/item/surgery_tray/full,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"dyr" = (
+/obj/machinery/status_display/door_timer{
+ id = "Cell 3";
+ name = "Cell 3";
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"dyw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rndlab2";
+ name = "Secondary Research and Development Shutter"
+ },
+/turf/open/floor/plating,
+/area/station/science/lab)
+"dzw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"dzX" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"dzY" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"dAc" = (
+/obj/structure/closet/crate/trashcart/laundry,
+/obj/effect/spawner/random/contraband/prison,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner/skirt,
+/obj/item/clothing/under/rank/prisoner/skirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison)
+"dAk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"dBb" = (
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/research)
+"dBE" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"dBV" = (
+/obj/docking_port/stationary/escape_pod{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space)
+"dBZ" = (
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/machinery/light_switch/directional/west,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"dCm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"dCo" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"dCx" = (
+/obj/machinery/computer/shuttle/mining{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"dDe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"dDo" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"dDq" = (
+/obj/effect/landmark/start/bartender,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"dDx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"dDE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Locker Room"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"dDH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock{
+ name = "Bar Storage"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"dDP" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating/airless,
+/area/station/solars/starboard/fore)
+"dDZ" = (
+/obj/machinery/door/airlock/external{
+ name = "Common Mining Dock"
+ },
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/plating,
+/area/station/hallway/primary/port)
+"dEi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"dEx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"dEF" = (
+/obj/machinery/atmospherics/components/binary/pump/on,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"dEH" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"dEV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"dEX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/grunge{
+ name = "Quiet Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/library)
+"dFg" = (
+/obj/structure/cable,
+/turf/open/floor/carpet/orange,
+/area/station/command/heads_quarters/qm)
+"dFi" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"dFo" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/closet/l3closet/scientist,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"dFz" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "Court Cell";
+ req_access = list("brig")
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"dFH" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"dFW" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Brig - Hallway - Entrance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"dGa" = (
+/obj/structure/flora/bush/pale/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/grass,
+/area/station/science/research)
+"dGq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/stairs/left{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"dGu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Gateway Atrium"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/command/gateway,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"dGv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"dGC" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/obj/effect/turf_decal/trimline/brown/filled/end{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"dGD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dGQ" = (
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"dGW" = (
+/obj/machinery/holopad,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/filled/line,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"dHc" = (
+/turf/closed/wall,
+/area/station/hallway/primary/port)
+"dHg" = (
+/obj/machinery/computer/atmos_alert,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"dHi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/mining{
+ name = "Cargo Bay"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/obj/effect/landmark/navigate_destination,
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"dHz" = (
+/obj/effect/turf_decal/trimline/brown/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"dHG" = (
+/obj/machinery/atmospherics/components/binary/crystallizer{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dHM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"dHN" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#EFB341"
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"dHY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/medical/patient_stretcher,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"dIm" = (
+/obj/machinery/modular_computer/preset/id,
+/obj/machinery/requests_console/directional/north{
+ department = "Chief Engineer's Desk";
+ name = "Chief Engineer's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"dIy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"dIK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dIO" = (
+/turf/closed/wall,
+/area/station/commons/toilet/restrooms)
+"dIP" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"dIS" = (
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"dIV" = (
+/obj/machinery/door/window/right/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"dIW" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airalarm/mixingchamber_access,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/link{
+ chamber_id = "ordnancefreezer"
+ },
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"dJk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/chem_master,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"dJo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"dJK" = (
+/turf/open/floor/iron/stairs/right{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"dJN" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space/basic,
+/area/space/nearstation)
+"dJP" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/paper/monitorkey,
+/obj/item/computer_disk/engineering,
+/obj/item/computer_disk/engineering,
+/obj/item/computer_disk/engineering,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"dJT" = (
+/obj/item/reagent_containers/cup/rag,
+/obj/structure/table/wood,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"dJX" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"dKl" = (
+/obj/structure/sign/warning/pods,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/engine)
+"dKm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"dKC" = (
+/turf/closed/wall,
+/area/station/maintenance/aft/lesser)
+"dKE" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dKG" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"dKK" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"dKO" = (
+/obj/structure/urinal/directional/north,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"dKY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"dLc" = (
+/obj/machinery/gravity_generator/main,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"dLh" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/obj/structure/dresser,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"dLl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Hypertorus Fusion Reactor"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"dLm" = (
+/obj/machinery/sparker/directional/north{
+ id = "Xenobio"
+ },
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"dLn" = (
+/obj/structure/rack,
+/obj/item/wrench/medical,
+/obj/effect/turf_decal/siding/white,
+/obj/item/food/popsicle/creamsicle_orange,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/turf/open/floor/iron/kitchen_coldroom,
+/area/station/medical/coldroom)
+"dLq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/theater,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"dLu" = (
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"dLy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"dLC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"dLN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"dLQ" = (
+/obj/item/clothing/suit/hazardvest,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"dLT" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"dLU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"dMb" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/healthanalyzer,
+/obj/machinery/camera/directional/south{
+ c_tag = "Technical Storage"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"dMk" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"dMv" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dMz" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"dMH" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"dMN" = (
+/obj/effect/landmark/start/paramedic,
+/obj/effect/turf_decal/loading_area/white{
+ color = "#52B4E9";
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"dMO" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"dMY" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"dNw" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"dNz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"dNB" = (
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dNC" = (
+/obj/structure/sink/directional/south,
+/obj/machinery/light/small/dim/directional/west,
+/mob/living/basic/mouse/brown/tom,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"dNX" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"dOg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"dOs" = (
+/obj/structure/sign/warning/no_smoking,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter/room)
+"dOw" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"dOx" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dOA" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"dON" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"dOO" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"dOQ" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson/engine,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"dOY" = (
+/obj/effect/spawner/random/engineering/tank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dPh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"dPm" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"dPy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"dPF" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/stripes/red/line,
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"dPJ" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dPL" = (
+/obj/structure/filingcabinet/security{
+ pixel_x = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"dPQ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"dPV" = (
+/obj/machinery/porta_turret/ai,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"dPY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/central)
+"dQy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/random/directional/east,
+/obj/machinery/light/cold/directional/east,
+/obj/machinery/modular_computer/preset/cargochat/service{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"dQA" = (
+/obj/machinery/computer/rdservercontrol{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"dQE" = (
+/obj/structure/table/glass,
+/obj/structure/cable,
+/obj/item/modular_computer/laptop/preset/civilian{
+ pixel_y = 3
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"dQG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/girder,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"dQH" = (
+/obj/machinery/telecomms/processor/preset_three,
+/obj/machinery/camera/directional/north{
+ c_tag = "Telecomms - Server Room - Fore-Starboard";
+ network = list("ss13","tcomms")
+ },
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+"dQL" = (
+/obj/machinery/light_switch/directional/west{
+ pixel_x = -20
+ },
+/obj/machinery/computer/records/medical{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/computer/security/telescreen/med_sec/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"dQO" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"dQP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"dQT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"dRj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"dRp" = (
+/obj/machinery/holopad,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"dRx" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"dRA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/yellow,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"dRE" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"dRF" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dRH" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"dRN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"dRR" = (
+/obj/structure/sign/warning/vacuum/external/directional/east,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"dRX" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/effect/spawner/random/armory/riot_shield,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"dRY" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/service/library)
+"dRZ" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L4"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dSB" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Cell 3"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"dSE" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/spawner/random/entertainment/lighter,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"dSF" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/trimline/dark_red,
+/turf/open/floor/iron/white/textured_large,
+/area/station/commons/fitness)
+"dSG" = (
+/obj/structure/closet/wardrobe/miner,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"dSH" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/shipping{
+ pixel_x = -6;
+ pixel_y = 15
+ },
+/obj/item/multitool{
+ pixel_x = -3;
+ pixel_y = -4
+ },
+/obj/item/storage/box/lights/mixed{
+ pixel_x = 8;
+ pixel_y = 11
+ },
+/obj/item/flashlight/lamp{
+ pixel_x = -7;
+ pixel_y = 5
+ },
+/obj/item/storage/box/shipping{
+ pixel_x = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"dSJ" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"dTi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Holodeck Door"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "holodeck"
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"dTp" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"dTq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Antechamber"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"dTr" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"dTv" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/misc/assistantformal,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"dTN" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"dTQ" = (
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"dTS" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"dTV" = (
+/obj/item/folder/red{
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/obj/item/folder/red{
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"dTX" = (
+/obj/effect/landmark/start/chemist,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dUd" = (
+/obj/structure/noticeboard/qm,
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/station/command/heads_quarters/qm)
+"dUj" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"dUo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"dUB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"dVb" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"dVc" = (
+/obj/machinery/shieldgen,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering - Secure Storage"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"dVm" = (
+/obj/effect/landmark/start/cook,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"dVp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"dVt" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"dVv" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"dVN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dVT" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Pure to Fuel Pipe"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"dVX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/closet/crate/secure{
+ desc = "A secure crate containing various materials for building a customised test-site.";
+ name = "Test Site Materials Crate";
+ req_access = list("ordnance")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"dWd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"dWf" = (
+/obj/structure/sign/plaques/kiddie{
+ pixel_y = 32
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "AI Upload Chamber - Fore";
+ network = list("aiupload")
+ },
+/obj/structure/table/wood/fancy/green,
+/obj/effect/spawner/random/aimodule/harmless,
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"dWg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/food/pie/cream,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"dWA" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"dWG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"dWI" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dWN" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"dXe" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"dXg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"dXj" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"dXl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "PermaLockdown";
+ name = "Lockdown Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating,
+/area/station/security/prison)
+"dXs" = (
+/obj/structure/secure_safe/directional/north{
+ name = "armory safe A"
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"dXA" = (
+/obj/structure/closet/crate/trashcart,
+/obj/effect/spawner/random/contraband/prison,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/spawner/random/trash/garbage,
+/obj/effect/spawner/random/trash/garbage,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"dXH" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/assistant,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"dXQ" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"dXR" = (
+/obj/structure/sink/kitchen/directional/south{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"dXU" = (
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"dYa" = (
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dYb" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"dYg" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Central Primary Hallway - Starboard - Kitchen"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dYh" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"dYi" = (
+/obj/structure/table,
+/obj/item/stock_parts/micro_laser{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 2
+ },
+/obj/item/stock_parts/micro_laser{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"dYl" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"dYG" = (
+/obj/structure/sign/poster/official/anniversary_vintage_reprint/directional/north,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"dYK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"dYT" = (
+/obj/machinery/rnd/destructive_analyzer,
+/obj/effect/turf_decal/siding{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/lab)
+"dZb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/folder{
+ pixel_x = -6
+ },
+/obj/item/pen{
+ pixel_x = -5
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "roboticsprivacy";
+ name = "Robotics Shutters"
+ },
+/obj/structure/desk_bell{
+ pixel_x = 6
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Robotics Desk";
+ req_access = list("robotics")
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"dZm" = (
+/turf/closed/wall,
+/area/station/commons/storage/tools)
+"dZy" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/beakers{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/box/bodybags,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"dZB" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "Supply Dock Loading Door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"eaa" = (
+/obj/structure/sign/painting/library{
+ pixel_y = -32
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"eau" = (
+/obj/effect/turf_decal/trimline/neutral/filled/corner{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"eaA" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"eaF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"eaN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eaP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"eaQ" = (
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"ebd" = (
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"ebg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ebr" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=0-SecurityDesk";
+ location = "16-Fore"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ebx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"ebC" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/obj/structure/noticeboard/directional/north,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ebG" = (
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ebK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"ebM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ebV" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "roboticsprivacy";
+ name = "Robotics Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"ebY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"ecm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ location = "Disposals"
+ },
+/obj/structure/plasticflaps,
+/obj/machinery/door/window/right/directional/south{
+ name = "Delivery Door";
+ req_access = list("cargo")
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"ecp" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"ecq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/medbay/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ecz" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/port/aft)
+"ecA" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"ecB" = (
+/obj/machinery/atmospherics/components/binary/volume_pump{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"ecD" = (
+/obj/item/bot_assembly/floorbot{
+ created_name = "FloorDiffBot";
+ desc = "Why won't it work?";
+ name = "FloorDiffBot"
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ecO" = (
+/turf/open/floor/carpet,
+/area/station/service/library)
+"edl" = (
+/obj/docking_port/stationary/escape_pod,
+/turf/open/space/basic,
+/area/space)
+"edq" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"edr" = (
+/obj/item/flashlight/flare/candle{
+ pixel_x = 1;
+ pixel_y = 10
+ },
+/obj/machinery/light_switch/directional/north,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"edu" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/starboard/aft)
+"edC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"edH" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/machinery/computer/records/medical/laptop{
+ dir = 8;
+ pixel_y = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"edN" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"edQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"eeg" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/station/hallway/secondary/entry)
+"eek" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"eem" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"eeq" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"eew" = (
+/obj/structure/rack,
+/obj/item/gun/energy/ionrifle,
+/obj/item/gun/energy/temperature/security,
+/obj/item/clothing/suit/hooded/ablative,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"eey" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/rack,
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/storage/briefcase/secure{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"eeT" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"efa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"efd" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/pumproom)
+"eft" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"efC" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"efN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/button/door/directional/east{
+ id = "atmoshfr";
+ name = "Radiation Shutters Control";
+ req_access = list("atmospherics")
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/machinery/light/no_nightlight/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"efY" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/depsec/engineering,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"efZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"egb" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ege" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"egg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"egk" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"egn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"egp" = (
+/obj/item/storage/briefcase/secure,
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/storage/briefcase/secure,
+/obj/item/assembly/flash/handheld,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"egs" = (
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"egF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"egP" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/bluespace_sender,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"egR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"egS" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ehg" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ehn" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ehs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ehv" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ehB" = (
+/obj/machinery/door/poddoor{
+ id = "SecJusticeChamber";
+ name = "Justice Vent"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/security/execution/education)
+"ehE" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"ehG" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/mess,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"ehH" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Chapel - Port"
+ },
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"ehX" = (
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"ehY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/server)
+"ehZ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "prison release";
+ name = "Prisoner Processing Blast Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/button/door/directional/west{
+ id = "prison release";
+ name = "Labor Camp Shuttle Lockdown";
+ req_access = list("brig")
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"eiO" = (
+/obj/structure/table,
+/obj/item/storage/backpack/duffelbag/sec{
+ pixel_y = 7
+ },
+/obj/item/storage/backpack/duffelbag/sec,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"eje" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ejg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/storage)
+"ejl" = (
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"ejp" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"ejF" = (
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 5
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ejH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Space Bridge"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno_blastdoor";
+ name = "Biohazard Containment Door"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ejL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/structure/cable,
+/obj/item/kirbyplants/random,
+/obj/machinery/camera/directional/east{
+ c_tag = "Science Server Room";
+ name = "science camera";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"ejP" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ejR" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"ejX" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"ekb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"ekh" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ekk" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"eks" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"eky" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"ekB" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"ekG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/lesser)
+"ekI" = (
+/obj/structure/broken_flooring/singular/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ekP" = (
+/obj/machinery/door/window/brigdoor/security/cell/left/directional/south{
+ id = "Cell 2";
+ name = "Cell 2"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"ekQ" = (
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/item/kirbyplants/random/dead/research_director,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"ekR" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"ekV" = (
+/obj/machinery/mass_driver/ordnance,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"elb" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"elc" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"eli" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ name = "Cargo Deliveries"
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/red{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"elm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"ely" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/folder/yellow{
+ pixel_x = 4
+ },
+/obj/machinery/requests_console/directional/west{
+ department = "Engineering";
+ name = "Engineering Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"elz" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/exoscanner{
+ pixel_y = 3
+ },
+/obj/item/circuitboard/machine/exoscanner,
+/obj/item/circuitboard/machine/exoscanner{
+ pixel_y = -3
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"elJ" = (
+/turf/closed/wall/r_wall,
+/area/station/science/server)
+"elV" = (
+/obj/machinery/airalarm/directional/north,
+/obj/item/clothing/under/misc/assistantformal,
+/obj/effect/landmark/start/hangover,
+/obj/effect/spawner/random/structure/closet_private,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"eme" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"emf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"emh" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/purple/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"eml" = (
+/obj/machinery/light/directional/south,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"emN" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"emU" = (
+/obj/structure/cable,
+/obj/machinery/netpod,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/cargo/bitrunning/den)
+"emY" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"enf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"enF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/structure/cable,
+/obj/machinery/camera/directional/east{
+ c_tag = "Security Post - Research Division";
+ network = list("ss13","rd")
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"enG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"enK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"enO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"enS" = (
+/obj/structure/table,
+/obj/structure/cable,
+/obj/item/controller,
+/obj/item/compact_remote,
+/obj/item/compact_remote,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"eoj" = (
+/obj/machinery/meter{
+ name = "Mixed Air Tank Out"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"eol" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"eoo" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"eov" = (
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eoC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"eoD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"eoU" = (
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"eoZ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"epF" = (
+/obj/machinery/chem_master/condimaster{
+ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments.";
+ name = "SapMaster XP"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera/directional/north{
+ c_tag = "Hydroponics - Fore"
+ },
+/obj/machinery/button/door/directional/north{
+ id = "hydro_service";
+ name = "Service Shutter Control";
+ req_access = list("hydroponics")
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"epH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/assistant,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"epM" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space/basic,
+/area/space/nearstation)
+"epO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"eqc" = (
+/obj/structure/disposalpipe/junction/yjunction,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/station/medical/medbay/central)
+"eqf" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space/basic,
+/area/station/solars/port/fore)
+"eqn" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"eqt" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eqS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/mob/living/basic/spider/giant/sgt_araneus,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"eqU" = (
+/obj/machinery/light/small/directional/north,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"erh" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eru" = (
+/obj/structure/rack,
+/obj/item/stack/cable_coil{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/item/wrench,
+/obj/item/flashlight/seclite,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"erx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"erF" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Virology Access"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"erP" = (
+/obj/structure/transit_tube/curved{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"erS" = (
+/obj/structure/table/wood,
+/obj/item/camera_film{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/camera_film{
+ pixel_y = 9
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"esd" = (
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/obj/structure/light_construct/small/directional/north,
+/obj/machinery/newscaster/directional/north,
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass,
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ese" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"esk" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/storage/tcomms)
+"esH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/cigbutt{
+ pixel_y = 7
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"esK" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"esR" = (
+/obj/machinery/button/flasher{
+ id = "secentranceflasher";
+ name = "Brig Entrance Flasher";
+ pixel_x = -6;
+ pixel_y = -38;
+ req_access = list("security")
+ },
+/obj/machinery/button/flasher{
+ id = "holdingflash";
+ name = "Holding Cell Flasher";
+ pixel_x = 6;
+ pixel_y = -38;
+ req_access = list("security")
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"esT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"etn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"ets" = (
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"ett" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/acidic_buffer{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/basic_buffer{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/formaldehyde{
+ pixel_x = 1
+ },
+/obj/structure/sign/warning/chem_diamond/directional/north,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"etv" = (
+/obj/item/kirbyplants/random,
+/obj/structure/light_construct/small/directional/east,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"etA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"etK" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"etV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/chem_heater/withbuffer,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"euj" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"euo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"eup" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/warning{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"eur" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"eut" = (
+/turf/closed/wall,
+/area/station/science/robotics/lab)
+"euw" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/camera/directional/north{
+ c_tag = "Science Mechbay";
+ network = list("ss13","rd")
+ },
+/obj/machinery/button/door/directional/north{
+ id = "mechbay";
+ name = "Mech Bay Shutters Control";
+ req_access = list("robotics")
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"euQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"euT" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"euX" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"evf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"evD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"evE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"evI" = (
+/obj/machinery/computer/teleporter,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+"evY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/medical,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"ewc" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin{
+ name = "Jim Norton's Quebecois Coffee disposal unit"
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"ewf" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"ewh" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/wrench,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"ewj" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"ewk" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"ewB" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ewC" = (
+/obj/machinery/camera{
+ c_tag = "Warden's Office";
+ dir = 10
+ },
+/obj/structure/table,
+/obj/machinery/button/door{
+ desc = "Controls the shutters over the cell windows.";
+ id = "Secure Gate";
+ name = "Cell Window Control";
+ pixel_x = -6;
+ pixel_y = 7;
+ req_access = list("security");
+ specialfunctions = 4
+ },
+/obj/machinery/button/door{
+ desc = "Controls the shutters over the brig windows.";
+ id = "briglockdown";
+ name = "Brig Lockdown Control";
+ pixel_x = 6;
+ pixel_y = 7;
+ req_access = list("security")
+ },
+/obj/machinery/button/door{
+ desc = "Controls the blast doors in front of the prison wing.";
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_y = -3;
+ req_access = list("brig")
+ },
+/obj/item/key/security,
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"ewR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"ewT" = (
+/obj/machinery/door/airlock{
+ name = "Prison Showers"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/turf/open/floor/iron/freezer,
+/area/station/security/prison/shower)
+"exC" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L3"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"exN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"exQ" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"eyd" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"eyl" = (
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"eyD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/machinery/power/energy_accumulator/tesla_coil/anchored,
+/obj/structure/window/reinforced/plasma/spawner/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"eyX" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"ezg" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"ezw" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/item/kirbyplants/random{
+ pixel_x = -7
+ },
+/obj/machinery/camera/directional/north,
+/obj/machinery/digital_clock/directional/east,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/item/poster/traitor,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"ezT" = (
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"eAe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"eAi" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/bar)
+"eAq" = (
+/obj/structure/closet/wardrobe/white,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"eAr" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/mob/living/basic/pet/dog/corgi/puppy/void{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/station/science/research)
+"eAL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"eBn" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eBw" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eBz" = (
+/obj/structure/table/wood,
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/flashlight/lamp,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"eBO" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/item/surgery_tray/full,
+/obj/item/clothing/gloves/latex,
+/obj/item/clothing/suit/apron/surgical,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"eBU" = (
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"eCg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"eCn" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"eCB" = (
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/command/captain,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/captain/private)
+"eCK" = (
+/obj/machinery/computer/arcade/orion_trail{
+ desc = "For gamers only. Casuals need not apply.";
+ icon_screen = "library";
+ icon_state = "oldcomp";
+ name = "Gamer Computer"
+ },
+/obj/structure/sign/poster/contraband/lusty_xenomorph/directional/west,
+/obj/item/toy/katana{
+ desc = "As seen in your favourite Japanese cartoon.";
+ name = "anime katana"
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eCS" = (
+/obj/machinery/door/airlock/external{
+ name = "Space Shack"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut)
+"eDc" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Hypertorus Fusion Reactor"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"eDC" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"eDL" = (
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/station/command/heads_quarters/captain/private)
+"eDX" = (
+/obj/structure/sign/departments/science/directional/east,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"eEa" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/smartfridge/drying,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 9
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"eEf" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Bar - Backroom"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mirror/directional/north,
+/obj/structure/sink/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"eEn" = (
+/obj/structure/closet/crate/coffin,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/service/chapel/funeral)
+"eEx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"eED" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/spawner/random/structure/crate,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"eEG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/morgue)
+"eEH" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"eEP" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"eER" = (
+/obj/structure/rack,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/bodybags,
+/obj/item/healthanalyzer,
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/spawner/directional/west,
+/obj/structure/window/spawner/directional/north,
+/obj/item/tank/internals/anesthetic,
+/obj/item/clothing/mask/breath/medical,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"eFC" = (
+/obj/machinery/bluespace_vendor/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"eFG" = (
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/medkit/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/medkit/fire,
+/obj/item/storage/medkit/fire{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/obj/structure/window/spawner/directional/south,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"eFJ" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/item/kirbyplants/organic/plant3,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"eFR" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"eFX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"eGd" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "MiniSat Walkway Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"eGm" = (
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Aft Primary Hallway - Middle"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"eGC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"eGJ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"eGV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"eHf" = (
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"eHR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/contraband/random/directional/north,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eHS" = (
+/obj/structure/chair/stool/bar/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"eIc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/warning/directional/south,
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"eIy" = (
+/obj/structure/cable,
+/obj/machinery/photocopier,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"eIO" = (
+/turf/closed/wall,
+/area/station/maintenance/department/medical/central)
+"eIV" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/purple/line,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"eJd" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/prison/directional/north,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/book/manual/wiki/security_space_law,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"eJh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eJo" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/table/wood,
+/obj/item/camera_film{
+ pixel_x = 6;
+ pixel_y = 7
+ },
+/obj/item/camera_film{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"eJp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"eJy" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/science/research)
+"eJM" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics Tank - CO2"
+ },
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"eJZ" = (
+/obj/effect/spawner/random/structure/chair_comfy{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eKv" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"eKw" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/modular_computer/preset/civilian{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random/directional/east,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/storage_shared)
+"eKA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"eKD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"eKG" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"eKP" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/freezerchamber)
+"eLa" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase/secure{
+ desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides.";
+ name = "\improper Nanotrasen-brand secure briefcase exhibit";
+ pixel_y = 2
+ },
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"eLh" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"eLk" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"eLr" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "MiniSat Walkway Access"
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"eLv" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"eLI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"eLX" = (
+/obj/structure/chair,
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"eLY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"eMa" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Command Hallway - Port"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"eMb" = (
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/station/hallway/secondary/command)
+"eMf" = (
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/window/spawner/directional/west,
+/obj/machinery/light/small/directional/south,
+/obj/structure/window/spawner/directional/east,
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"eMG" = (
+/obj/structure/closet/lasertag/blue,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"eMH" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"eMI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"eMK" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"eMW" = (
+/obj/structure/flora/bush/pale/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/window/spawner/directional/north,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/grass,
+/area/station/science/research)
+"eMY" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"eNb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"eNh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"eNk" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"eNl" = (
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/vending/wardrobe/coroner_wardrobe,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"eNR" = (
+/turf/closed/wall,
+/area/station/ai_monitored/aisat/exterior)
+"eNV" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"eOb" = (
+/obj/machinery/vending/wardrobe/cargo_wardrobe,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"eOl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/obj/machinery/door/airlock/maintenance{
+ name = "Quartermaster Maintenance"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"eOm" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"eOo" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/button/door/directional/east{
+ id = "rdgene";
+ name = "Primary Genetics Shutters Control";
+ pixel_y = 6;
+ req_access = list("science")
+ },
+/obj/machinery/button/door/directional/east{
+ id = "rdgene2";
+ name = "Secondary Genetics Shutters Control";
+ pixel_y = -6;
+ req_access = list("science")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"eOs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "perma-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"eOJ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"eOP" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Containment Pen #6";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"eOQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{
+ dir = 1
+ },
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"ePg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"ePj" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/suit_storage_unit/industrial/loader,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"ePu" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/science/robotics/mechbay)
+"ePA" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/button/door/directional/south{
+ id = "FitnessShower";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/fitness/recreation)
+"ePN" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"ePT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/window/left/directional/south{
+ name = "Cytology Pen";
+ req_access = list("research")
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"ePX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyer";
+ name = "Medbay"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"eQe" = (
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"eQg" = (
+/obj/machinery/flasher/directional/south{
+ id = "AI"
+ },
+/obj/machinery/porta_turret/ai{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"eQr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"eQs" = (
+/obj/machinery/air_sensor/air_tank,
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"eQE" = (
+/turf/closed/wall,
+/area/station/service/bar/backroom)
+"eQJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/meter,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"eQL" = (
+/obj/machinery/camera/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"eQO" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"eQT" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"eQY" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eRb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"eRc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"eRd" = (
+/obj/machinery/light/directional/north,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/delivery_chute{
+ dir = 4;
+ name = "Crate Returns"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/spawner/directional/south,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"eRn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"eRR" = (
+/obj/structure/table,
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/wirecutters,
+/obj/item/multitool,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"eRX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/office)
+"eSa" = (
+/obj/item/wrench,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eSb" = (
+/obj/machinery/power/shieldwallgen/xenobiologyaccess,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/box,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"eSl" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"eSr" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"eSy" = (
+/obj/machinery/computer/station_alert{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"eSC" = (
+/obj/structure/window/spawner/directional/west,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/obj/structure/table/wood,
+/obj/effect/spawner/random/entertainment/musical_instrument,
+/obj/item/clothing/glasses/regular/hipster{
+ name = "Hipster Glasses"
+ },
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"eSR" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"eTn" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"eTt" = (
+/obj/structure/cable,
+/obj/structure/table/wood/fancy/black,
+/obj/item/storage/fancy/cigarettes/cigars/cohiba{
+ pixel_x = 3;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/cup/glass/bottle/champagne{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/north{
+ pixel_x = -5
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"eTI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"eTU" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"eUe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"eUu" = (
+/obj/structure/transit_tube/crossing/horizontal,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"eUA" = (
+/obj/structure/table/glass,
+/obj/machinery/light/small/directional/north,
+/obj/item/folder/white{
+ pixel_y = 4
+ },
+/obj/item/pen/red,
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Isolation A";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"eUN" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/treatment_center)
+"eUW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"eVa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/right/directional/south{
+ name = "Reception Window"
+ },
+/obj/item/paper,
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briglockdown";
+ name = "Warden Desk Shutters"
+ },
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Brig Control Desk";
+ req_access = list("armory")
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/security/warden)
+"eVi" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"eVm" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"eVy" = (
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/cake_ingredients,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"eVz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"eVX" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"eWn" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eWo" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "teleshutter";
+ name = "Teleporter Access Shutter"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/button/door/directional/east{
+ id = "teleshutter";
+ name = "Teleporter Shutter Control";
+ pixel_y = 5;
+ req_access = list("teleporter")
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"eWp" = (
+/obj/machinery/suit_storage_unit/cmo,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/vending/wallmed/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"eWq" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"eWu" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Air to External Air Ports"
+ },
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"eWy" = (
+/obj/item/reagent_containers/cup/bucket,
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"eWA" = (
+/obj/structure/toilet/greyscale{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"eWB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"eWO" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"eWW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eXj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"eXx" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"eXy" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/effect/spawner/random/trash/garbage{
+ spawn_loot_count = 3;
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"eXA" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/wood,
+/area/station/service/library)
+"eXT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Office Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"eYe" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"eYj" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"eYu" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/caution/red,
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"eYw" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Air to Distro"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"eYz" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"eYE" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"eYT" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"eZe" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/restaurant_portal/bar,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"eZf" = (
+/obj/machinery/libraryscanner,
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"eZo" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"eZz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/research{
+ name = "Genetics Lab"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/genetics,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/white,
+/area/station/science/genetics)
+"eZI" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_y = 7
+ },
+/obj/machinery/light/small/directional/south,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"eZN" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"eZR" = (
+/obj/structure/displaycase/labcage,
+/turf/open/floor/engine,
+/area/station/command/heads_quarters/rd)
+"fad" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"fag" = (
+/obj/item/food/cracker,
+/obj/item/food/cracker{
+ pixel_x = 9;
+ pixel_y = 9
+ },
+/obj/item/trash/boritos{
+ desc = "Why does it look like boritos? Nobody would feed unhealthy snacks to pets, right?";
+ name = "cracker bag";
+ pixel_x = -14
+ },
+/turf/open/floor/grass,
+/area/station/science/research)
+"fak" = (
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/science/lobby)
+"faD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"faL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/medical/patient_stretcher,
+/obj/item/food/pizzaslice/moldy/bacteria,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"faW" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/table,
+/obj/structure/cable,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official{
+ pixel_y = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"fbf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"fbg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"fbl" = (
+/mob/living/basic/pet/penguin/baby/permanent{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/station/science/research)
+"fbs" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"fbE" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/structure/table{
+ name = "Jim Norton's Quebecois Coffee table"
+ },
+/obj/item/reagent_containers/cup/glass/coffee{
+ pixel_x = -3;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/cup/glass/coffee{
+ pixel_x = 5;
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/item/modular_computer/laptop/preset/civilian,
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"fbI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"fbP" = (
+/obj/structure/cable,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"fbX" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"fck" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fcq" = (
+/turf/closed/wall,
+/area/station/maintenance/port/greater)
+"fcA" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/structure/sign/warning/secure_area/directional/west{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fcJ" = (
+/obj/structure/lattice,
+/obj/item/shard,
+/turf/open/space/basic,
+/area/space/nearstation)
+"fcM" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"fdl" = (
+/obj/effect/decal/cleanable/food/flour,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"fdH" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"fdQ" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/spawner/random/armory/disablers,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/requests_console/directional/west{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"fdX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fdZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"fea" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/effect/landmark/start/depsec/supply,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"fec" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"fee" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/grille/broken,
+/turf/open/space/basic,
+/area/space/nearstation)
+"fev" = (
+/obj/effect/turf_decal/bot_red,
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"feF" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos)
+"feY" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"ffd" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"fff" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"ffj" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"ffH" = (
+/turf/closed/wall,
+/area/station/hallway/primary/fore)
+"ffL" = (
+/obj/structure/table,
+/obj/item/kitchen/rollingpin,
+/obj/effect/turf_decal/trimline/brown/warning,
+/obj/item/reagent_containers/cup/rag,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/aquarium_kit,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"ffP" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating/foam{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/space/nearstation)
+"ffU" = (
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/camera/directional/south{
+ c_tag = "Science Ordnance Mix Lab";
+ network = list("ss13","rd")
+ },
+/obj/machinery/computer/atmos_control/ordnancemix{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"fgl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"fgn" = (
+/mob/living/simple_animal/hostile/retaliate/goose/vomit,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"fgu" = (
+/obj/machinery/light/directional/south,
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"fgA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"fgH" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"fgJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"fgN" = (
+/obj/structure/chair/stool/directional/east,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"fgS" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/flasher/directional/east{
+ id = "hopflash";
+ pixel_y = -26
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"fgY" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/security/general,
+/turf/open/floor/iron,
+/area/station/security/office)
+"fhe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"fhi" = (
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"fhl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fhn" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/effect/decal/cleanable/blood/gibs/down,
+/mob/living/simple_animal/bot/mulebot{
+ name = "Leaping Rabbit"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fhp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fhv" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/item/extinguisher,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fhA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"fhB" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"fhD" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"fhG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fhI" = (
+/obj/structure/light_construct/directional/west,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fhP" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Prison Common Room";
+ network = list("ss13","prison")
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"fhQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"fhU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/computer/security/telescreen/ordnance/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"fia" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Access"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/poddoor/preopen{
+ id = "transitlockdown"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"fii" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/office)
+"fip" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"fix" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"fiA" = (
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"fiE" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port Mix to North Ports"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fiH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"fiK" = (
+/obj/structure/table/glass,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"fiS" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"fiX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fjb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"fjd" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"fje" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fjn" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"fjq" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/aft)
+"fjv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/light/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fjw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/poster/official/random/directional/west,
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageExternal"
+ },
+/obj/machinery/door/window/left/directional/north{
+ req_access = list("shipping")
+ },
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"fjD" = (
+/turf/closed/wall,
+/area/station/commons/toilet/auxiliary)
+"fkb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/pumproom)
+"fkd" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/effect/spawner/random/bureaucracy/pen,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"fke" = (
+/obj/effect/turf_decal/trimline/purple/line,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"fkk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/trimline/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"fkl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"fkr" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fky" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"fkD" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"fkP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"fkT" = (
+/obj/effect/landmark/start/chaplain,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"fkW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"flb" = (
+/obj/structure/railing,
+/turf/open/space/basic,
+/area/space/nearstation)
+"flk" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Cell 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"flm" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fln" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering - Fore"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"flu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"flx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"flB" = (
+/obj/machinery/computer/holodeck{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"flE" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/red/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"flG" = (
+/obj/structure/window/spawner/directional/west,
+/obj/structure/window/spawner/directional/east,
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"flN" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"flQ" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/service/library)
+"flS" = (
+/obj/item/storage/toolbox/emergency,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"flX" = (
+/obj/structure/disposaloutlet{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot_white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 4
+ },
+/area/station/medical/morgue)
+"fma" = (
+/turf/closed/wall/r_wall,
+/area/station/science/robotics/lab)
+"fmn" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"fmo" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"fms" = (
+/obj/effect/decal/cleanable/food/flour,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fmw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"fmx" = (
+/obj/structure/noticeboard/directional/north{
+ desc = "A memorial wall for pinning mementos upon.";
+ name = "memorial board"
+ },
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/service/chapel/funeral)
+"fmG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Dock Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den,
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fmJ" = (
+/obj/structure/rack,
+/obj/item/circuitboard/machine/telecomms/bus,
+/obj/item/circuitboard/machine/telecomms/broadcaster,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tcomms)
+"fmM" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"fmS" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/station/medical/medbay/lobby)
+"fmX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fnc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"fnf" = (
+/obj/machinery/telecomms/message_server/preset,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"fnh" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"fnE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"fnJ" = (
+/obj/effect/spawner/random/structure/closet_empty/crate,
+/obj/item/clothing/gloves/color/fyellow,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fnN" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"fnO" = (
+/obj/structure/rack,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/spawner/random/armory/e_gun,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"fnT" = (
+/obj/structure/table,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/obj/item/storage/box{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/storage/box,
+/obj/machinery/requests_console/directional/west{
+ department = "Atmospherics";
+ name = "Atmospherics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"fod" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"foB" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/light_switch/directional/west,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"foP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/storage)
+"fpd" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "MiniSat Airlock Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"fpg" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/status_display/evac/directional/west,
+/obj/item/surgery_tray/full,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"fpj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"fpn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fpy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Library"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/station/service/library)
+"fpA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"fpD" = (
+/obj/machinery/vatgrower,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"fpE" = (
+/obj/structure/rack,
+/obj/item/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"fpV" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"fqe" = (
+/obj/machinery/door/poddoor/shutters{
+ name = "Warehouse Shutters";
+ id = "warehouse"
+ },
+/turf/open/floor/catwalk_floor,
+/area/station/cargo/warehouse)
+"fqB" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"fqD" = (
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"fqR" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fqV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"frm" = (
+/obj/structure/bodycontainer/crematorium{
+ dir = 1;
+ id = "crematoriumChapel"
+ },
+/obj/effect/turf_decal/trimline/dark_red/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/service/chapel/office)
+"frs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"fru" = (
+/turf/closed/wall,
+/area/station/cargo/drone_bay)
+"frw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/rack,
+/obj/item/tank/internals/anesthetic,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"frE" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"frZ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "External Gas to Loop"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"fsb" = (
+/obj/item/kirbyplants/organic/plant18,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"fsh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"fsm" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"fsN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fsQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ftb" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/space,
+/area/space/nearstation)
+"ftd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ftj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"ftK" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance/four,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ftM" = (
+/obj/structure/sign/warning/pods,
+/turf/closed/wall,
+/area/station/commons/locker)
+"ftQ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/water,
+/area/station/service/hydroponics/garden)
+"fuc" = (
+/obj/structure/frame/machine{
+ anchored = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/circuit/green/off,
+/area/station/science/research)
+"fur" = (
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"fuu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmospherics_engine)
+"fuA" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fvE" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/medical/central)
+"fvK" = (
+/obj/structure/table,
+/obj/item/transfer_valve{
+ pixel_x = 5
+ },
+/obj/item/transfer_valve,
+/obj/item/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/transfer_valve{
+ pixel_x = 5
+ },
+/obj/item/transfer_valve,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"fwb" = (
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"fwd" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"fwz" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"fwD" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/chaplain,
+/obj/item/radio/intercom/chapel/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"fwG" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fwP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fxa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"fxj" = (
+/obj/machinery/door/airlock/security{
+ name = "Court Cell"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark,
+/area/station/security/holding_cell)
+"fxr" = (
+/obj/structure/lattice/catwalk,
+/obj/item/instrument/musicalmoth{
+ name = "Syl Labee"
+ },
+/obj/structure/marker_beacon/olive,
+/turf/open/space/basic,
+/area/space/nearstation)
+"fxI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"fxQ" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"fxT" = (
+/obj/machinery/door/airlock/wood{
+ doorClose = 'sound/effects/doorcreaky.ogg';
+ doorOpen = 'sound/effects/doorcreaky.ogg';
+ name = "The Gobetting Barmaid"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fxW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fym" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fyz" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"fyJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"fyK" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"fyY" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "N2 to Airmix"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"fzd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"fzi" = (
+/obj/effect/turf_decal/trimline/neutral/filled/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"fzl" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/station/solars/port/fore)
+"fzr" = (
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/west,
+/obj/structure/water_source/puddle,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"fzE" = (
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fzM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fAe" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Engineering Security Post"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"fAt" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"fAA" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/airalarm/directional/east,
+/obj/item/stock_parts/power_store/cell/high,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"fAE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"fAI" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"fAL" = (
+/turf/closed/wall,
+/area/station/security/detectives_office)
+"fBc" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/effect/turf_decal/trimline/yellow/warning,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fBo" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Magboot Storage";
+ pixel_x = -1;
+ req_access = list("eva")
+ },
+/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/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"fBz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fBJ" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"fBY" = (
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/security/prison)
+"fCn" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Firing Range"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"fCt" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fDc" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fDk" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fDC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"fDL" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/computer/apc_control,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"fEg" = (
+/obj/machinery/door/airlock{
+ name = "Service Hall"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/general,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"fEn" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"fEC" = (
+/obj/structure/table/wood,
+/obj/item/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/item/reagent_containers/cup/glass/mug{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"fEK" = (
+/turf/closed/wall,
+/area/station/medical/medbay/central)
+"fEL" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/yellow,
+/obj/item/stamp/head/ce,
+/obj/item/reagent_containers/pill/patch/aiuri,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"fEO" = (
+/obj/structure/cable,
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"fEW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"fEX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"fFa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fFi" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/white,
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+"fFo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"fFq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"fFu" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"fFA" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"fFC" = (
+/obj/structure/table,
+/obj/item/storage/bag/construction,
+/obj/item/storage/bag/construction,
+/obj/item/storage/bag/construction,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/structure/sign/poster/official/build/directional/east,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"fGp" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fGs" = (
+/obj/machinery/pdapainter{
+ pixel_y = 2
+ },
+/obj/machinery/requests_console/directional/north{
+ department = "Head of Personnel's Desk";
+ name = "Head of Personnel's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"fGv" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/scientist,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"fGy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"fGC" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Detective Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/detective,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"fGH" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"fGM" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"fGN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"fGP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"fGR" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics Tank - N2"
+ },
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"fGS" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ location = "Engineering"
+ },
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/fore)
+"fGW" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"fHd" = (
+/obj/machinery/power/shieldwallgen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"fHy" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"fHC" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"fHD" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/dna_infuser,
+/obj/item/infuser_book,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"fHU" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"fHV" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/effect/spawner/random/bureaucracy/folder{
+ spawn_random_offset = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"fIo" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"fIE" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"fIR" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/turf/open/space/basic,
+/area/space/nearstation)
+"fIS" = (
+/obj/machinery/airalarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fIZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"fJc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"fJp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"fJt" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"fJy" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/engine)
+"fJC" = (
+/obj/machinery/door/airlock/engineering/glass/critical{
+ heat_proof = 1;
+ name = "Supermatter Chamber"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"fJP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"fJW" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"fKf" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+"fKg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"fKv" = (
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/light/no_nightlight/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"fKG" = (
+/obj/effect/landmark/blobstart,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"fKL" = (
+/obj/machinery/door/airlock/security{
+ name = "Customs Desk"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"fKP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fKZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/depsec/engineering,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"fLd" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"fLe" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fLp" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"fLq" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Inner Pipe Access";
+ req_access = list("atmospherics")
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"fLr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/camera/directional/north{
+ c_tag = "Science Lobby";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/destructive_scanner,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"fLz" = (
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"fLI" = (
+/obj/structure/chair{
+ name = "Bailiff"
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"fLJ" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/plating/airless,
+/area/station/solars/starboard/fore)
+"fMf" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"fMm" = (
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"fMn" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"fMp" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fMy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"fMN" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"fMT" = (
+/obj/structure/table,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/computer/monitor{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"fNa" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"fNh" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Prison Gate";
+ name = "Security Blast Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"fNz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/maintenance,
+/obj/item/reagent_containers/cup/soda_cans/pwr_game,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"fNI" = (
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"fNR" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"fNS" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"fOf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"fOu" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"fOw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"fOB" = (
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/obj/machinery/door/airlock/maintenance{
+ name = "Brig Maintenance"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fOS" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/item/food/grown/banana,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"fPh" = (
+/obj/machinery/gateway/centerstation,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"fPw" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"fPD" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"fQj" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 11;
+ height = 24;
+ name = "SS13: Auxiliary Dock, Station-Port";
+ shuttle_id = "whiteship_home";
+ width = 35
+ },
+/turf/open/space/basic,
+/area/space)
+"fQo" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"fQr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"fQD" = (
+/obj/structure/chair/stool/directional/north,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"fQW" = (
+/obj/machinery/door/airlock/mining/glass{
+ name = "Mining Dock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"fQZ" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"fRe" = (
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"fRg" = (
+/obj/item/food/snowcones/clown,
+/turf/open/floor/fake_snow,
+/area/station/maintenance/port/aft)
+"fRl" = (
+/obj/structure/table,
+/obj/item/storage/crayons,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"fRr" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"fRu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"fRG" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"fRS" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fRU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fRW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"fSd" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"fSz" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"fSY" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/item/folder/red{
+ pixel_x = -7
+ },
+/obj/item/folder/red{
+ pixel_x = -7;
+ pixel_y = 6
+ },
+/obj/item/stamp/head/hos,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"fTn" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"fTE" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"fTL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"fTT" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fUg" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering - Storage"
+ },
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"fUj" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"fUr" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"fUx" = (
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/structure/cable,
+/obj/machinery/smartfridge/organ,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"fVa" = (
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"fVc" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"fVt" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"fVA" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"fVC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"fVF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"fVJ" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fVU" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"fVY" = (
+/obj/structure/closet/secure_closet/chemical,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"fWc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"fWl" = (
+/obj/machinery/restaurant_portal/restaurant,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"fWm" = (
+/obj/item/toy/plush/beeplushie{
+ desc = "Maybe hugging this will make you feel better about yourself.";
+ name = "Therabee"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"fWn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/closet/crate,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"fWw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"fWA" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/greater)
+"fWK" = (
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/window/left/directional/north{
+ name = "MuleBot Access";
+ req_access = list("shipping")
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ location = "Research"
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/lesser)
+"fWW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"fXb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"fXd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/robotics,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"fXi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Mix to Gas"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"fXj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/structure/railing/corner,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"fXK" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"fXZ" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/oil/streak,
+/obj/effect/turf_decal/trimline/brown/filled/arrow_cw,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"fYb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/security/office)
+"fYc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Medical Freezer Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"fYg" = (
+/obj/machinery/computer/mechpad{
+ dir = 8
+ },
+/turf/open/floor/circuit/green,
+/area/station/science/robotics/mechbay)
+"fYm" = (
+/obj/structure/table,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/fax{
+ fax_name = "Security Office";
+ name = "Security Office Fax Machine"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"fYq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"fYx" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"fYC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"fYJ" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"fYX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"fZa" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/service/library)
+"fZw" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/latex,
+/obj/item/clothing/gloves/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/mask/surgical,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = -10;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"fZL" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Room"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/construction,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"fZV" = (
+/obj/structure/chair/stool/bar/directional/south,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"gae" = (
+/obj/effect/spawner/xmastree,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"gag" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/library,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"gal" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"gaG" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gaN" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gaU" = (
+/obj/machinery/button/door/directional/west{
+ id = "hop";
+ name = "Privacy Shutters Control";
+ req_access = list("hop")
+ },
+/obj/effect/mapping_helpers/ianbirthday,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"gaV" = (
+/obj/structure/sign/directions/evac,
+/obj/structure/sign/directions/medical{
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/station/security/courtroom)
+"gbf" = (
+/obj/machinery/duct,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"gbn" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_x = 6
+ },
+/obj/machinery/button/door/directional/south{
+ id = "cmoprivacy";
+ name = "CMO Privacy Shutters";
+ pixel_x = -8;
+ req_access = list("cmo")
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/cmo/directional/west,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"gbG" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/item/storage/box/lights/mixed,
+/obj/effect/spawner/random/maintenance/two,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gbJ" = (
+/obj/structure/broken_flooring/singular/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gbS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"gbY" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/station/science/research)
+"gcA" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=5-Customs";
+ location = "4-Customs"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"gcL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable,
+/obj/machinery/button/door/directional/east{
+ name = "Security Mech Garage Door Controls";
+ id = "secmechbay";
+ req_access = list("security")
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"gcU" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"gcV" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/station/science/research)
+"gda" = (
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"gdb" = (
+/turf/closed/wall/r_wall,
+/area/station/security/range)
+"gdp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_half,
+/area/station/medical/cryo)
+"gdF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"gdL" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/storage/box/masks,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"gdZ" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/white,
+/area/station/security/prison/visit)
+"gem" = (
+/obj/structure/table,
+/obj/item/storage/briefcase/secure{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"gev" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"gey" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "MiniSat Walkway Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"geD" = (
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"geE" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"geR" = (
+/obj/structure/table,
+/obj/item/papercutter{
+ pixel_x = 9;
+ pixel_y = 4
+ },
+/obj/item/stamp/denied{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/obj/item/stamp/granted{
+ pixel_x = -7
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"geV" = (
+/obj/structure/sink/directional/east,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"gfa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gfe" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/table,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gfk" = (
+/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/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"gfD" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gfU" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/aisat/exterior)
+"gfZ" = (
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ggj" = (
+/turf/closed/wall,
+/area/station/security/evidence)
+"ggq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ggH" = (
+/obj/effect/spawner/random/structure/chair_maintenance,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/aft/lesser)
+"ggM" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"ggO" = (
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"ggU" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ggZ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"ghc" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"ghk" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/lobby)
+"ghl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ghK" = (
+/obj/structure/rack,
+/obj/item/tank/internals/oxygen,
+/obj/item/tank/internals/oxygen,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"ghL" = (
+/turf/closed/wall/r_wall,
+/area/space/nearstation)
+"gil" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/obj/machinery/airlock_sensor/incinerator_ordmix{
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"giA" = (
+/turf/closed/wall/r_wall,
+/area/station/tcommsat/computer)
+"giH" = (
+/obj/machinery/vending/engivend,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"giT" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"gja" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/spawner/random/bureaucracy/briefcase,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"gjk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/steam_vent,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gjr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"gjv" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Maximum Security Test Chamber";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"gjF" = (
+/obj/machinery/vending/wardrobe/jani_wardrobe,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"gjZ" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/prison/visit)
+"gkc" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/doppler_array,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"gkn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"gkx" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"gkC" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio7";
+ name = "Xenobio Pen 7 Blast Doors";
+ pixel_y = 4;
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"gkD" = (
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/obj/item/restraints/handcuffs{
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"gkM" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"gkU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gle" = (
+/obj/structure/table/glass,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"gll" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/port/aft)
+"glv" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"glz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"glP" = (
+/obj/machinery/light/small/directional/east,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/theater)
+"gma" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"gmi" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"gmk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gms" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"gmt" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"gmH" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/command/bridge)
+"gmI" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gmN" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"gmS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gmT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"gmX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"gnc" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"gnh" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/space,
+/area/space/nearstation)
+"gnk" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gnm" = (
+/obj/effect/landmark/start/warden,
+/obj/structure/chair/office,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_red/filled/line,
+/turf/open/floor/iron,
+/area/station/security/warden)
+"gnt" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"gnA" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/easel,
+/obj/item/canvas/twentythree_twentythree,
+/turf/open/space/basic,
+/area/space/nearstation)
+"gnB" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"gnL" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"gnS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gog" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"gon" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"goW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/closet,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"goX" = (
+/obj/machinery/status_display/evac/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"goZ" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"gpc" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=1-BrigCells";
+ location = "0-SecurityDesk"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gpf" = (
+/obj/structure/chair/wood/wings,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"gpk" = (
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/storage/bag/plants/portaseeder,
+/obj/item/crowbar,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/item/cultivator,
+/obj/item/hatchet,
+/obj/item/plant_analyzer,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"gpv" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/service/janitor,
+/obj/effect/landmark/navigate_destination/janitor,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"gpB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/science/lab)
+"gpF" = (
+/obj/structure/window/spawner/directional/west,
+/obj/effect/turf_decal/trimline/dark_red/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/arrows/red{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_edge{
+ dir = 4
+ },
+/area/station/commons/fitness)
+"gpQ" = (
+/turf/open/floor/iron/stairs/medium{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"gpS" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Captain's Office"
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"gqa" = (
+/obj/structure/frame/machine{
+ anchored = 1
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/circuit/green/off,
+/area/station/science/research)
+"gqj" = (
+/obj/structure/sink/directional/west,
+/obj/machinery/light_switch/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gqm" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "rdgene";
+ name = "Genetics Lab Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/science/genetics)
+"gqA" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/button/door/directional/south{
+ id = "evashutter";
+ name = "E.V.A. Storage Shutter Control";
+ req_access = list("command")
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"gqI" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/virology)
+"gqP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"gqV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gqX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"grb" = (
+/obj/item/tank/internals/oxygen/red{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/tank/internals/oxygen/red{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/item/tank/internals/anesthetic{
+ pixel_x = 2
+ },
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/structure/closet/crate/preopen,
+/obj/item/wrench,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"grl" = (
+/obj/item/tank/internals/oxygen,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"grm" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/cryo)
+"grw" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"grZ" = (
+/obj/structure/chair,
+/obj/machinery/camera/directional/north{
+ c_tag = "Arrivals - Fore Arm - Far"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"gsn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gso" = (
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"gsr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"gsO" = (
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/station/service/library)
+"gsP" = (
+/obj/structure/closet/secure_closet/freezer/meat,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Kitchen - Cold Room"
+ },
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"gsW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyer";
+ name = "Medbay Clinic"
+ },
+/obj/effect/landmark/navigate_destination,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"gtb" = (
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"gtk" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"gto" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"gtR" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"gtU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gtV" = (
+/obj/machinery/computer/mecha{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"gub" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"guo" = (
+/obj/machinery/door/poddoor/incinerator_atmos_main,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"guC" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/sink/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"guD" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"guG" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"guI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/reagent_containers/cup/bucket{
+ pixel_x = -6;
+ pixel_y = 27
+ },
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"guO" = (
+/obj/structure/table/wood,
+/obj/machinery/light_switch/directional/west,
+/obj/item/storage/briefcase/secure{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/storage/lockbox/medal,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"guR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction/yjunction{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"guS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/sign/warning/vacuum/external/directional/west,
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"guU" = (
+/obj/machinery/button/flasher{
+ id = "visitorflash";
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/button/door/directional/north{
+ id = "visitation";
+ name = "Visitation Shutters";
+ pixel_x = 6;
+ req_access = list("brig")
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"guV" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"guX" = (
+/turf/closed/wall,
+/area/station/commons/storage/primary)
+"gva" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"gvg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "abandoned_kitchen"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gvl" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/bed/dogbed/ian,
+/mob/living/basic/pet/dog/corgi/ian,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"gvm" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"gvA" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gvC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"gvG" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gvH" = (
+/obj/structure/lattice/catwalk,
+/obj/item/barcodescanner,
+/turf/open/space/basic,
+/area/space/nearstation)
+"gvI" = (
+/obj/structure/sign/warning/vacuum/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"gvJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"gvS" = (
+/obj/machinery/bci_implanter,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/science/explab)
+"gwc" = (
+/obj/structure/chair/stool/bar/directional/south,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"gwd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"gwf" = (
+/turf/open/floor/glass/reinforced,
+/area/station/science/research)
+"gwK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/engineering/tank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gwS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"gwZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"gxb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gxu" = (
+/obj/machinery/button/door/directional/south{
+ id = "warehouse";
+ name = "Warehouse Shutters Control"
+ },
+/obj/effect/turf_decal/trimline/red/filled/warning/corner{
+ dir = 8
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo Bay - Aft";
+ pixel_x = 14
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gxx" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Atmospherics Monitoring"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/checker,
+/area/station/engineering/atmos/storage/gas)
+"gxM" = (
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/table,
+/obj/item/stack/package_wrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/dest_tagger{
+ pixel_x = -9;
+ pixel_y = 12
+ },
+/obj/item/hand_labeler_refill{
+ pixel_x = -11;
+ pixel_y = -3
+ },
+/obj/item/stack/wrapping_paper,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"gya" = (
+/obj/structure/table,
+/obj/item/storage/box/hug{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/razor{
+ pixel_x = -8;
+ pixel_y = 3
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"gyg" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"gyG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/security/glass{
+ name = "Gear Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"gyH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gyI" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Door"
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen #8";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"gyJ" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics - Crystallizer"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/light/no_nightlight/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gyK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"gyO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"gyQ" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance)
+"gzi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"gzm" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access = list("chapel_office")
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"gzs" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gzO" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"gzW" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/obj/effect/landmark/start/depsec/medical,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"gAd" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"gAe" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"gAf" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gAk" = (
+/obj/machinery/recharger{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/secure_safe/directional/east,
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = -12;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"gAt" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gAu" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space,
+/area/space/nearstation)
+"gAw" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"gAx" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"gAB" = (
+/obj/structure/table/glass,
+/obj/item/hand_labeler,
+/obj/item/radio/headset/headset_med,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gAH" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"gAT" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"gAU" = (
+/obj/structure/table,
+/obj/item/aicard,
+/obj/item/ai_module/reset,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"gBe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"gBx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"gBD" = (
+/turf/closed/wall/r_wall,
+/area/station/command/teleporter)
+"gBY" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/plating,
+/area/station/commons/fitness/recreation)
+"gCy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"gCA" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"gCD" = (
+/obj/machinery/computer/warrant{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gCE" = (
+/obj/structure/table,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Prison Hallway Port";
+ network = list("ss13","prison")
+ },
+/obj/machinery/light/directional/south,
+/obj/item/storage/box/prisoner{
+ pixel_y = 8
+ },
+/obj/item/storage/box/prisoner,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"gCT" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gCW" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"gDh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"gDq" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/effect/spawner/random/structure/closet_empty/crate,
+/obj/item/circuitboard/machine/thermomachine,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"gDv" = (
+/obj/item/kirbyplants,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gDT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"gDZ" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"gEe" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"gEg" = (
+/turf/closed/wall,
+/area/station/security/execution/education)
+"gEk" = (
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"gEl" = (
+/obj/structure/bed,
+/obj/item/bedsheet/red,
+/obj/effect/landmark/start/prisoner,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"gEv" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4,
+/obj/structure/cable/multilayer/connected,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"gEx" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"gEF" = (
+/obj/structure/rack,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/structure/sink/kitchen/directional/south{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gEN" = (
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"gES" = (
+/obj/machinery/computer/shuttle/labor{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"gEX" = (
+/obj/structure/sign/plaques/kiddie/badger{
+ pixel_y = 32
+ },
+/obj/item/food/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/food/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/food/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/food/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/food/grown/poppy{
+ pixel_y = 2
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/service/chapel/funeral)
+"gFd" = (
+/obj/machinery/power/terminal,
+/obj/machinery/light/small/directional/east,
+/obj/item/radio/intercom/directional/east,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"gFi" = (
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gFy" = (
+/obj/machinery/rnd/production/protolathe/department/science,
+/turf/open/floor/iron/dark,
+/area/station/science/lab)
+"gFL" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"gFO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"gFQ" = (
+/turf/closed/wall/r_wall,
+/area/station/science/research)
+"gFR" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"gGa" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L5"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gGf" = (
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"gGh" = (
+/obj/structure/closet/crate/coffin,
+/turf/open/floor/plating,
+/area/station/service/chapel/funeral)
+"gGo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gGy" = (
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"gGK" = (
+/obj/machinery/computer/operating,
+/obj/machinery/camera/directional/west{
+ c_tag = "Medbay Primary Surgery";
+ name = "medical camera";
+ network = list("ss13","medical")
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"gHo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"gHw" = (
+/obj/machinery/atmospherics/components/tank,
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"gHA" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/spawner/random/armory/shotgun,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"gHE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gHI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"gHY" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"gIc" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"gIe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"gIi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/science/lab)
+"gIm" = (
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"gIB" = (
+/obj/structure/light_construct/directional/north,
+/obj/effect/decal/cleanable/greenglow,
+/obj/structure/showcase/machinery/cloning_pod{
+ desc = "An old prototype cloning pod, permanently decommissioned following the incident.";
+ name = "decommissioned cloner"
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"gIC" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gIK" = (
+/obj/structure/closet/bombcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"gIM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/hydroponics,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"gIO" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"gIS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"gJi" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "PermaLockdown";
+ name = "Lockdown Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "permaouter";
+ name = "Permabrig Transfer"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"gJl" = (
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"gJm" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"gJu" = (
+/obj/structure/rack,
+/obj/item/stack/rods{
+ amount = 23
+ },
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gJD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/noticeboard/directional/north,
+/obj/item/paper/guides/jobs/medical/morgue{
+ pixel_y = 31
+ },
+/obj/structure/bed/medical/emergency,
+/obj/machinery/iv_drip,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"gJM" = (
+/obj/structure/cable,
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"gJV" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gKc" = (
+/obj/effect/spawner/random/structure/chair_maintenance{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gKe" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gKw" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gKD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Lab - Central East";
+ network = list("ss13","rd","xeno")
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"gKH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/office)
+"gKK" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"gKO" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"gKS" = (
+/obj/machinery/gibber,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"gLb" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark/corner,
+/area/station/security/prison)
+"gLe" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"gLi" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"gLm" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/spawner/random/engineering/tank,
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"gLo" = (
+/obj/machinery/power/terminal,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gLr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"gLI" = (
+/obj/machinery/door/poddoor/massdriver_ordnance,
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"gLJ" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/vending/medical,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"gLK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gLU" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding{
+ dir = 9
+ },
+/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/item/flatpack{
+ board = /obj/item/circuitboard/machine/flatpacker
+ },
+/obj/item/multitool,
+/turf/open/floor/iron,
+/area/station/science/lab)
+"gLY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/emergency_bed,
+/obj/item/emergency_bed,
+/obj/item/toy/figure/md,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"gMt" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gMy" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"gMB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"gMG" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Engineering - Power Monitoring"
+ },
+/obj/machinery/computer/station_alert,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"gMQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"gMZ" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/fore)
+"gNh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"gNl" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"gNy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "bridge-right"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"gNC" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"gNP" = (
+/obj/machinery/light/small/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "MiniSat Exterior - Fore Starboard";
+ network = list("minisat")
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"gNT" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"gNW" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"gOa" = (
+/obj/structure/table,
+/obj/item/book/manual/hydroponics_pod_people,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/sign/poster/random/directional/east,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"gOp" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gOr" = (
+/obj/machinery/airalarm/directional/north,
+/obj/item/kirbyplants/organic/applebush,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gOv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"gOy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/power/energy_accumulator/grounding_rod/anchored,
+/obj/structure/window/reinforced/plasma/spawner/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"gOB" = (
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"gOS" = (
+/obj/structure/cable,
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/beaker,
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/dropper,
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Isolation B";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"gOT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/mechbay)
+"gOY" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"gPh" = (
+/obj/item/clothing/head/fedora,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"gPl" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/requests_console/directional/west{
+ department = "Morgue";
+ name = "Morgue Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"gPA" = (
+/obj/structure/table/wood,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"gPN" = (
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"gPY" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"gQa" = (
+/obj/effect/turf_decal/siding/thinplating_new/corner,
+/obj/effect/turf_decal/trimline/brown/filled/corner,
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating_new/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gQf" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"gQg" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"gQw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/white/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison)
+"gQG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"gQK" = (
+/obj/effect/spawner/random/decoration/statue,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"gQQ" = (
+/turf/closed/wall,
+/area/station/engineering/break_room)
+"gRb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"gRp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"gSn" = (
+/obj/item/wrench,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gSu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"gSH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/machinery/rnd/server/master,
+/turf/open/floor/circuit/telecomms/server,
+/area/station/science/server)
+"gSW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"gTh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/gravity_generator)
+"gTk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"gTn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"gTo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"gTt" = (
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"gTC" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/item/crowbar,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gTP" = (
+/obj/machinery/light/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gTS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"gTU" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"gUf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"gUt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"gUx" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"gUH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/obj/structure/fake_stairs/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"gUP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"gUS" = (
+/turf/closed/wall,
+/area/station/science/xenobiology/hallway)
+"gUY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/chair/stool/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"gVj" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"gVl" = (
+/obj/machinery/recharge_station,
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"gVn" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+"gVx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"gVE" = (
+/obj/structure/table/glass,
+/obj/machinery/cell_charger,
+/obj/item/stack/cable_coil,
+/obj/item/assembly/igniter,
+/obj/item/stock_parts/power_store/cell,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"gVO" = (
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/airalarm/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"gWc" = (
+/obj/machinery/computer/prisoner/gulag_teleporter_computer{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"gWl" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"gWn" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"gWv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"gWz" = (
+/mob/living/simple_animal/bot/mulebot,
+/obj/structure/cable,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ location = "QM #2"
+ },
+/turf/open/floor/catwalk_floor,
+/area/station/cargo/storage)
+"gWH" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"gWL" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"gWT" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/bed/medical/emergency,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"gXd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/service/janitor)
+"gXe" = (
+/obj/structure/mirror/directional/west,
+/obj/item/lipstick/black,
+/obj/item/lipstick/jade{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/lipstick/purple{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"gXl" = (
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"gXp" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/station/solars/port/aft)
+"gXs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"gXu" = (
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"gXw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/circuit/telecomms,
+/area/station/science/xenobiology)
+"gXz" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"gXF" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"gXW" = (
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/pipedispenser/disposal,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/no_nightlight/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"gYe" = (
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+"gYi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"gYl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/insectguts,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"gYw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{
+ dir = 1
+ },
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"gYA" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"gYC" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"gYE" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/effect/spawner/random/trash/garbage{
+ spawn_loot_count = 3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"gYO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"gYU" = (
+/turf/closed/wall,
+/area/station/service/chapel/funeral)
+"gYV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/broken_bottle{
+ pixel_x = 9;
+ pixel_y = -4
+ },
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/kitchen,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"gZu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"gZG" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"gZM" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/space,
+/area/space/nearstation)
+"gZV" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"haa" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hav" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/medical/pharmacy,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"haA" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/newscaster/directional/west,
+/obj/item/pen/invisible,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"haE" = (
+/obj/structure/mirror/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/commons/toilet/auxiliary)
+"haP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"haR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hbv" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/coldroom)
+"hbK" = (
+/turf/closed/wall,
+/area/station/maintenance/department/science/xenobiology)
+"hbM" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hbO" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hbQ" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"hbR" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"hcc" = (
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hcl" = (
+/obj/item/target,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"hcm" = (
+/obj/structure/plasticflaps/opaque{
+ name = "Service Deliveries"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ location = "Service"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"hcv" = (
+/obj/effect/landmark/observer_start,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/obj/structure/cable,
+<<<<<<< HEAD
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"dsk" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/item/gun/energy/laser,
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"dsl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"dsq" = (
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Lab"
+=======
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hcP" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"hcR" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hcT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"hcU" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hda" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"hdg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"hdk" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hdp" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/closed/wall,
+/area/station/engineering/atmos/pumproom)
+"hdy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Xenolab";
+ name = "Test Chamber Blast Door"
+ },
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"hdI" = (
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hdM" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"hdZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hed" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hei" = (
+/obj/item/stack/sheet/cardboard{
+ amount = 14
+ },
+/obj/item/stack/package_wrap,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"hep" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hey" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"heE" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/decoration/ornament,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"heF" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L14"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"heL" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"heR" = (
+/obj/structure/cable,
+/turf/closed/wall,
+/area/station/command/heads_quarters/qm)
+"heS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/mop_bucket/janitorialcart,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"heV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Fuel Pipe to Filter"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hfa" = (
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"hfi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hft" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"hfA" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Cell 1"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"hfH" = (
+/obj/structure/table/reinforced,
+/obj/machinery/microwave/engineering/cell_included,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/checker,
+/area/station/engineering/storage_shared)
+"hgt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"hgu" = (
+/obj/machinery/defibrillator_mount/directional/south,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/light/cold/directional/south,
+/obj/structure/bed/medical,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hgA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"hgB" = (
+/obj/machinery/vending/wardrobe/chem_wardrobe,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hgE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/bridge_pipe/orange/hidden,
+/turf/open/floor/iron/stairs/right{
+ dir = 8
+ },
+/area/station/engineering/atmos)
+"hhl" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"hhp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Shutters"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/plating,
+<<<<<<< HEAD
+/area/station/science/ordnance/storage)
+"dss" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/machinery/computer/atmos_control/nocontrol/master{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"dsI" = (
+/obj/machinery/airalarm/directional/south,
+=======
+/area/station/security/brig)
+"hht" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/storage/tech)
+"hhN" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"hhR" = (
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hif" = (
+/obj/structure/mannequin/skeleton,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"hio" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hip" = (
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"hiu" = (
+/obj/machinery/computer/records/security,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"hiy" = (
+/obj/machinery/igniter/incinerator_atmos,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"hiB" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"hiM" = (
+/obj/machinery/food_cart,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"hiZ" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"hjp" = (
+/obj/item/clothing/mask/gas,
+/obj/effect/spawner/random/structure/table_or_rack,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hjt" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"hjw" = (
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/cytology{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/biopsy_tool{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"hjx" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hjG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Morgue Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/morgue,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"hjH" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"hjS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hkj" = (
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"hko" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"hkE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/red{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/science,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"hkG" = (
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"hkH" = (
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"hkJ" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Auxiliary Base Construction"
+ },
+/obj/machinery/button/door/directional/south{
+ id = "aux_base_shutters";
+ name = "Public Shutters Control";
+ req_access = list("aux_base")
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"hkV" = (
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"hld" = (
+/obj/machinery/disposal/delivery_chute{
+ dir = 1;
+ name = "Science Deliveries"
+ },
+/obj/structure/plasticflaps{
+ name = "Science Deliveries"
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/departments/science/directional/south{
+ color = "#D381C9"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"hlj" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/machinery/button/door/directional/north{
+ id = "detective_shutters";
+ name = "detective's office shutters control";
+ req_access = list("detective")
+ },
+/obj/structure/detectiveboard/directional/east,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"hlq" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hlu" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"hlx" = (
+/turf/closed/wall,
+/area/station/security/interrogation)
+"hlz" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"hlB" = (
+/obj/machinery/flasher/directional/north{
+ id = "AI"
+ },
+/obj/effect/spawner/random/aimodule/harmful,
+/obj/structure/table/wood/fancy/red,
+/obj/machinery/door/window/brigdoor/left/directional/west{
+ name = "High-Risk Modules";
+ req_access = list("captain")
+ },
+/obj/item/ai_module/reset/purge{
+ pixel_y = 11
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"hlD" = (
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"hlE" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mining"
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"hlF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"hlN" = (
+/obj/structure/frame/machine{
+ anchored = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/space/nearstation)
+"hmf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"hml" = (
+/obj/effect/turf_decal/box/red,
+/obj/effect/turf_decal/arrows/red{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/multilayer/connected,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hmq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"hmu" = (
+/obj/machinery/modular_computer/preset/cargochat/security{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/end{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"hmy" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "Permabrig Kitchen"
+ },
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"hnn" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "CO2 to Pure"
+ },
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hnp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"hnr" = (
+/obj/structure/chair/stool/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"hns" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"hnv" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/mecha_wreckage/ripley,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"hnG" = (
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "Secure Storage"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"hnV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/trimline/brown/filled/line,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"hor" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Warehouse Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/warehouse)
+"hoE" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hoN" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/right/directional/east{
+ name = "Pharmacy Desk";
+ req_access = list("pharmacy")
+ },
+/obj/machinery/door/window/right/directional/west{
+ name = "Pharmacy Desk";
+ req_access = list("medical")
+ },
+/obj/item/reagent_containers/cup/bottle/morphine,
+/obj/item/reagent_containers/cup/bottle/toxin{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = 8
+ },
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = -5
+ },
+/obj/item/reagent_containers/syringe/epinephrine,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hoY" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"hpi" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L2"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hpj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/generic,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"hpv" = (
+/obj/item/storage/bag/plants/portaseeder,
+/obj/item/plant_analyzer,
+/obj/item/cultivator,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/structure/rack,
+/obj/item/vending_refill/hydroseeds,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"hpB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"hqb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"hqr" = (
+/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/pumproom)
+"hqD" = (
+/obj/machinery/door/airlock/mining{
+ name = "Quartermaster's Office"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/qm,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/diagonal_edge,
+/obj/effect/turf_decal/tile/brown/diagonal_centre,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/diagonal,
+/area/station/command/heads_quarters/qm)
+"hqE" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"hqL" = (
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/shower/directional/west{
+ name = "emergency shower"
+ },
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hqM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"hqT" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"hrh" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2,
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"hrC" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/supply)
+"hrG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"hrM" = (
+/obj/machinery/vending/boozeomat,
+/obj/structure/sign/picture_frame/portrait/bar{
+ pixel_y = -28
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"hse" = (
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/trimline/dark_red/end{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_red/mid_joiner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/mid_joiner{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/service/chapel/office)
+"hsx" = (
+/obj/machinery/door/airlock/mining{
+ name = "Drone Bay"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/effect/landmark/navigate_destination,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"hsF" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet3";
+ name = "Unit 3"
+ },
+/turf/open/floor/plating,
+/area/station/commons/toilet/auxiliary)
+"hsN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"hsZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"hta" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"htb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"htd" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"htk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/white/side{
+ dir = 5
+ },
+/area/station/commons/fitness)
+"htn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"hto" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"htr" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"htD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"htE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/primary/port)
+"htG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"htO" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/start/librarian,
+/turf/open/floor/wood,
+/area/station/service/library)
+"htP" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"htS" = (
+/obj/structure/fluff/iced_abductor,
+/turf/open/misc/asteroid/basalt/airless,
+/area/space/nearstation)
+"htY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"huj" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"hum" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/greater)
+"huq" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"hux" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/command/teleporter)
+"huy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"huF" = (
+/obj/item/clothing/suit/costume/snowman,
+/obj/item/clothing/head/costume/snowman,
+/turf/open/floor/fake_snow,
+/area/station/maintenance/port/aft)
+"huG" = (
+/turf/closed/wall,
+/area/station/service/kitchen/coldroom)
+"huZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"hve" = (
+/obj/structure/cable,
+/obj/machinery/computer/shuttle/mining/common,
+/obj/machinery/door/firedoor,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/customs)
+"hvk" = (
+/obj/effect/spawner/random/bureaucracy/birthday_wrap,
+/obj/item/stack/package_wrap{
+ pixel_y = 5
+ },
+/obj/item/stack/package_wrap{
+ pixel_y = 2
+ },
+/obj/item/stack/package_wrap,
+/obj/machinery/light/directional/south,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"hvo" = (
+/obj/structure/filingcabinet,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"hvr" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Central Primary Hallway - Fore - Courtroom"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hvs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"hvB" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/trimline/brown/filled/warning,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"hvI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/structure/plaque/static_plaque/golden/commission/meta,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"hvJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hvO" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"hvR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"hwe" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/right/directional/west{
+ name = "First Aid Supplies";
+ req_access = list("medical")
+ },
+/obj/item/mod/module/plasma_stabilizer,
+/obj/item/mod/module/thermal_regulator,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"hwg" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"hwo" = (
+/obj/structure/rack,
+/obj/item/clothing/under/misc/mailman,
+/obj/item/clothing/under/misc/vice_officer,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hwt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hwz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"hwF" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hwZ" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"hxd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/end{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"hxe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"hxo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"hxq" = (
+/obj/machinery/chem_mass_spec,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hxt" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small/directional/north,
+/obj/item/clothing/under/misc/assistantformal,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"hxu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"hxw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+<<<<<<< HEAD
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"dsQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/bridge)
+"dsV" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Distro Staging to Filter"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"dtg" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Recreation Area"
+ },
+/obj/structure/cable,
+=======
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hxz" = (
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/spray/plantbgone{
+ pixel_x = 13;
+ pixel_y = 5
+ },
+/obj/item/watertank,
+/obj/item/grenade/chem_grenade/antiweed,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hxB" = (
+/obj/item/kirbyplants/organic/plant21,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"hxD" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"hxV" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"hxW" = (
+/obj/machinery/door/window/right/directional/north{
+ name = "Gas Ports"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "justice gas pump"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"hxY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"hye" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hyh" = (
+/obj/machinery/shower/directional/south{
+ name = "emergency shower"
+ },
+/obj/effect/turf_decal/trimline/blue/end,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hyn" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/spawner/random/vending/snackvend,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"hyD" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Inner Pipe Access";
+ req_access = list("atmospherics")
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/structure/window/spawner/directional/east,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"hyN" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/command/storage/eva)
+"hyT" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"hyW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"hyX" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"hyZ" = (
+/obj/machinery/flasher/directional/east{
+ id = "AI";
+ pixel_y = 26
+ },
+/obj/machinery/holopad/secure,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ name = "Tertiary AI Core Access";
+ req_access = list("ai_upload");
+ pixel_x = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"hza" = (
+/obj/vehicle/sealed/mecha/ripley/paddy/preset,
+/turf/open/floor/iron/recharge_floor,
+/area/station/security/mechbay)
+"hzb" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/directional/north,
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"hzt" = (
+/obj/structure/transit_tube/curved/flipped,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hzw" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"hzJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"hzL" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"hAk" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"hAq" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"hAu" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hAF" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "MiniSat Exterior Access";
+ network = list("minisat")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hAL" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "visitation";
+ name = "Visitation Shutters"
+ },
+/obj/machinery/door/window/right/directional/east,
+/obj/structure/table,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"hAN" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"hAW" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Research Director's Office - Observation Cage";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/engine,
+/area/station/command/heads_quarters/rd)
+"hBm" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hBo" = (
+/mob/living/simple_animal/bot/mulebot,
+/obj/structure/cable,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ location = "QM #1"
+ },
+/turf/open/floor/catwalk_floor,
+/area/station/cargo/storage)
+"hBr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+<<<<<<< HEAD
+/area/station/commons/dorms)
"dtt" = (
/obj/machinery/mech_bay_recharge_port{
dir = 1
@@ -9186,10 +24969,2053 @@
network = list("ss13","medbay")
},
/obj/machinery/status_display/ai/directional/south,
+=======
+/area/station/hallway/primary/central)
+"hBB" = (
+/obj/machinery/computer/rdconsole{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"hBC" = (
+/obj/structure/kitchenspike_frame,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hBD" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"hBH" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/space/basic,
+/area/space/nearstation)
+"hBI" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera/directional/west{
+ c_tag = "Science Ordnance Test Lab"
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_y = 2
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 9;
+ pixel_y = -2
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/assembly/prox_sensor{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/machinery/requests_console/directional/west{
+ department = "Ordnance Test Range";
+ name = "Test Range Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"hBY" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hCl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"hCn" = (
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hCt" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hCy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/cryo_cell,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"hCG" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Port Primary Hallway - Mining Shuttle"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"hCK" = (
+/obj/effect/decal/cleanable/oil/slippery,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"hCT" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/box/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"hDa" = (
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hDe" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"hDp" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"hDE" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"hDX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/supply)
+"hEc" = (
+/obj/effect/spawner/structure/window,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "pharmacy_shutters";
+ name = "Pharmacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/pharmacy)
+"hEq" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/machinery/mining_weather_monitor/directional/east,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"hEr" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hEw" = (
+/obj/effect/turf_decal/trimline/purple/filled/line,
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hEA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"hET" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"hEV" = (
+/obj/effect/decal/cleanable/garbage,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"hEX" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"hFz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"hFD" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hFM" = (
+/obj/effect/spawner/random/structure/closet_empty/crate,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/spawner/random/maintenance/two,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hGi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hGk" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"hGl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"hGF" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hGL" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"hHd" = (
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"hHt" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"hHK" = (
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"hHO" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"hHR" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/misc/assistantformal,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"hIm" = (
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Lab"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"hIp" = (
+/obj/structure/fake_stairs/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hIu" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"hIx" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/medical_doctor,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/surgery/aft)
+"hIJ" = (
+/obj/structure/cable,
+/obj/machinery/chem_heater/withbuffer,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"hIQ" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/iron,
+/area/station/security/office)
+"hIZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/grille,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"hJi" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Engineering Supermatter Aft";
+ network = list("ss13","engine")
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hJv" = (
+/obj/structure/chair/stool/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"hJF" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/button/door/directional/south{
+ id = "mechbay";
+ name = "Mech Bay Shutters Control";
+ req_access = list("robotics")
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"hJH" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"hJI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"hJJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/tcommsat/server)
+"hJO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hKg" = (
+/turf/closed/wall,
+/area/station/cargo/miningoffice)
+"hKi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"hKp" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"hKv" = (
+/obj/structure/chair/pew/left,
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"hKB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"hKG" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"hKQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/arrows/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hKV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"hLs" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"hLv" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 8;
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"hLB" = (
+/obj/structure/rack,
+/obj/item/crowbar/red,
+/obj/item/restraints/handcuffs,
+/obj/item/wrench,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hLJ" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/red/box,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"hLL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hLZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hMn" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"hMo" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Vacant Office Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/construction,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"hMq" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"hMv" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door"
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Containment Pen #1";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"hMy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/security/warden)
+"hME" = (
+/obj/structure/table/wood,
+/obj/item/taperecorder{
+ pixel_x = 3
+ },
+/obj/item/storage/box/evidence,
+/obj/item/flashlight/seclite,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"hMQ" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Holodeck Control"
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"hNb" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/security/office)
+"hNn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"hNz" = (
+/obj/structure/chair,
+/obj/effect/landmark/start/depsec/science,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"hNA" = (
+/obj/structure/table,
+/obj/machinery/camera/directional/south{
+ c_tag = "Science Toxins Launch";
+ network = list("ss13","rd")
+ },
+/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver{
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"hND" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"hOh" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/obj/effect/turf_decal/trimline/brown/filled/warning,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"hOp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hOR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/trash/soap{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/iron/freezer,
+/area/station/security/prison/shower)
+"hPk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hPu" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{
+ dir = 5
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"hPv" = (
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/structure/table/wood,
+/obj/structure/noticeboard/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"hPK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"hPM" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hQc" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/machinery/fax{
+ fax_name = "Quartermaster";
+ name = "Quartermaster's Fax Machine"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8
+ },
+/obj/machinery/requests_console/directional/north{
+ department = "Quartermaster's Desk";
+ name = "Quartermaster's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"hQu" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hQv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "bridge-right"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"hQy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/engineering{
+ name = "Port Bow Solar Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"hQB" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hQE" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/chair/pew/left,
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"hQY" = (
+/obj/machinery/door/window/right/directional/north{
+ name = "Petting Zoo"
+ },
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/turf/open/floor/iron,
+/area/station/science/research)
+"hRf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"hRl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"hRq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"hRv" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"hRQ" = (
+/obj/machinery/disposal/bin{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/machinery/light_switch/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"hRU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"hRW" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"hSe" = (
+/obj/machinery/light/small/directional/east,
+/obj/item/radio/intercom/directional/north,
+/obj/structure/table/wood,
+/obj/item/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"hSf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/stack/cable_coil,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"hSg" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"hSi" = (
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/electronics/airlock,
+/obj/item/electronics/airlock,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/obj/item/gps,
+/obj/structure/closet/crate/engineering,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"hSl" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/sign/poster/official/moth_piping/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"hSr" = (
+/obj/machinery/holopad/secure,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"hSt" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"hSG" = (
+/obj/structure/closet/lasertag/red,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"hSH" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"hSO" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hSQ" = (
+/obj/structure/bodycontainer/morgue/beeper_off{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/warning,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 4
+ },
+/area/station/medical/morgue)
+"hTb" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"hTq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"hTE" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/bluespace_vendor/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"hTG" = (
+/obj/structure/cable,
+/obj/machinery/power/terminal,
+/obj/machinery/light/small/directional/east,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"hTM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"hTV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Foyer"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"hUd" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"hUn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"hUu" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"hUB" = (
+/obj/machinery/suit_storage_unit/hos,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hos)
+"hUN" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut)
+"hUO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"hVn" = (
+/obj/machinery/door/window/right/directional/east{
+ name = "Containment Pen #8";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"hVE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"hVN" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ id_tag = "virology_airlock_exterior";
+ name = "Virology Exterior Airlock"
+ },
+/obj/machinery/door_buttons/access_button{
+ dir = 1;
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_y = -24;
+ req_access = list("virology")
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/machinery/door/firedoor,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"hVX" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small/directional/west,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/west{
+ id = "Toilet2";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_x = -32;
+ spawn_loot_chance = 50
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"hVY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hWa" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"hWj" = (
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"hWx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"hWy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/teleporter)
+"hWC" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/obj/structure/fake_stairs/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"hWD" = (
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"hWF" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"hWK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/start/depsec/supply,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"hWW" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"hXd" = (
+/obj/effect/turf_decal/trimline/blue/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"hXh" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"hXn" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"hXC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"hXJ" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"hXQ" = (
+/obj/machinery/vending/cola/red,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"hYd" = (
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"hYl" = (
+/obj/structure/sink{
+ dir = 8;
+ pixel_x = 14
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"hYr" = (
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/medical/medbay/lobby)
+"hYs" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"hYx" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"hYA" = (
+/obj/item/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/obj/item/storage/pill_bottle/epinephrine{
+ pixel_x = 8;
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"hYE" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"hYG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"hZg" = (
+/obj/structure/closet/crate,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/spawner/random/engineering/flashlight,
+/obj/effect/spawner/random/engineering/flashlight,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"hZn" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"hZy" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/dark/smooth_half{
dir = 8
},
/area/station/medical/morgue)
+"hZA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/morgue)
+"hZO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"hZQ" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/port/fore)
+"hZV" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/morgue)
+"hZZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iam" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"iar" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"ias" = (
+/obj/machinery/seed_extractor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"iaK" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"iaQ" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iaS" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"iaT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iaZ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=16-Fore";
+ location = "15-Court"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"ibw" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"ibz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ibH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ name = "justice injector"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"ibX" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ica" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"icb" = (
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ name = "Justice Chamber";
+ req_access = list("armory")
+ },
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Justice Chamber";
+ req_access = list("armory")
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"ich" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/turf/closed/wall,
+/area/station/engineering/atmos)
+"icj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"icC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"icR" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"icS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"idr" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/commons/fitness/recreation)
+"idA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"idL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"idR" = (
+/obj/structure/table,
+/obj/item/food/dough,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"ied" = (
+/obj/structure/table,
+/obj/item/paper/fluff/holodeck/disclaimer,
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"iem" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"iep" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"iev" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/station/cargo/sorting)
+"ieH" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"ieI" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/pumproom)
+"ieV" = (
+/turf/closed/wall/r_wall,
+/area/station/security/holding_cell)
+"ifh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ifn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"ifE" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"ifF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"ifJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ifM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"ifP" = (
+/obj/item/stack/sheet/cardboard,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ifQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"igh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"igi" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"ign" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/space_hut)
+"igy" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/machinery/requests_console/directional/east{
+ department = "Atmospherics";
+ name = "Atmospherics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"igz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"igP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"igS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "PermaLockdown";
+ name = "Lockdown Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plating,
+/area/station/security/prison)
+"igV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"igZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/command/teleporter,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"ihb" = (
+/turf/closed/wall,
+/area/station/security/prison/shower)
+"ihq" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/central)
+"ihv" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"ihx" = (
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"ihN" = (
+/obj/machinery/computer/security/telescreen/prison/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/office)
+"ihW" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"ihX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"iio" = (
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Office"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/rd,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"iit" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Central Primary Hallway - Fore - Port Corner"
+ },
+/obj/machinery/computer/piratepad_control/civilian{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iix" = (
+/obj/item/flashlight/lamp,
+/obj/machinery/newscaster/directional/west,
+/obj/structure/table/wood,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"iiE" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/table/wood,
+/obj/machinery/fax{
+ fax_name = "Head of Personnel's Office";
+ name = "Head of Personnel's Fax Machine"
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"iiL" = (
+/obj/machinery/air_sensor/mix_tank,
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"iiN" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ije" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"iji" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ijv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"ijZ" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"ikb" = (
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"iki" = (
+/obj/structure/table,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/obj/item/clothing/mask/balaclava,
+/obj/item/storage/backpack/duffelbag/sec/surgery{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"ikr" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera/directional/south{
+ c_tag = "Science Entry";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/thinplating/dark{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/checker,
+/area/station/science/research)
+"iks" = (
+/obj/effect/landmark/start/clown,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"ikw" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/bot,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"ikC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/command/minisat,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"ikL" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"ikO" = (
+/obj/machinery/newscaster/directional/north,
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/dropper,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/execution/transfer)
+"ikR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ikS" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 5;
+ pixel_y = 14
+ },
+/obj/item/folder/white{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/paper_bin/carbon{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/obj/item/pen{
+ pixel_x = -5
+ },
+/turf/open/floor/carpet,
+/area/station/medical/psychology)
+"ikY" = (
+/obj/structure/sign/warning/secure_area/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"ikZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/range)
+"ilg" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"ilh" = (
+/turf/closed/wall,
+/area/station/maintenance/fore)
+"ili" = (
+/obj/effect/turf_decal/trimline/purple/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ilq" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/storage/toolbox/emergency,
+/obj/structure/cable,
+/obj/effect/spawner/random/engineering/flashlight,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"ilx" = (
+/obj/structure/closet/emcloset,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"ilC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/grunge{
+ name = "Quiet Room"
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"ilJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"ilQ" = (
+/obj/structure/closet/crate/bin,
+/obj/item/knife/kitchen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/broken/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"ilR" = (
+/obj/machinery/holopad/secure,
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"ilT" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Shared Engineering Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/construction,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/general,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"imt" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 9
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+<<<<<<< HEAD
"dwm" = (
/obj/structure/rack,
/obj/effect/spawner/random/maintenance,
@@ -9402,6 +27228,450 @@
/area/station/maintenance/port/fore)
"dBV" = (
/obj/docking_port/stationary/escape_pod{
+=======
+"imw" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Containment Pen #3";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"imU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ina" = (
+/obj/machinery/stasis{
+ dir = 4
+ },
+/obj/machinery/defibrillator_mount/directional/north,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/light/cold/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"inw" = (
+/obj/machinery/disposal/bin{
+ desc = "A pneumatic waste disposal unit. This one leads into space!";
+ name = "deathsposal unit"
+ },
+/obj/structure/sign/warning/deathsposal/directional/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"inB" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"inH" = (
+/obj/structure/table/wood,
+/obj/item/pai_card,
+/turf/open/floor/wood,
+/area/station/service/library)
+"inL" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"inQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"inX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "corporate_privacy";
+ name = "Showroom Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/corporate_showroom)
+"ioc" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iom" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/door/window/right/directional/east{
+ name = "Infirmary"
+ },
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"iov" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"iox" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"ioy" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"ioZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"ipy" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"ipz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"ipG" = (
+/obj/structure/table,
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ipM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"ipR" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"ipX" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Brig - Labor Shuttle Dock"
+ },
+/obj/machinery/gulag_item_reclaimer{
+ pixel_y = 24
+ },
+/obj/machinery/flasher/directional/east{
+ id = "PRelease";
+ pixel_y = 20
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"iqc" = (
+/obj/structure/reflector/single/anchored{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"iqo" = (
+/obj/effect/landmark/start/quartermaster,
+/turf/open/floor/carpet/orange,
+/area/station/command/heads_quarters/qm)
+"iqq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"iqt" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"iqx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"iqz" = (
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"iqB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"iqN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Council Chamber"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"iqU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/warning,
+/obj/effect/turf_decal/trimline/brown/warning,
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"irm" = (
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ location = "Kitchen"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/maintenance/starboard/greater)
+"irz" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Inner Pipe Access";
+ req_access = list("atmospherics")
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "N2 to Pure"
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"irL" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"irQ" = (
+/obj/structure/mop_bucket,
+/obj/item/mop,
+/obj/effect/landmark/blobstart,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"irY" = (
+/obj/machinery/power/emitter/welded,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"isc" = (
+/obj/docking_port/stationary/random{
+ name = "lavaland";
+ shuttle_id = "pod_2_lavaland"
+ },
+/turf/open/space,
+/area/space)
+"ise" = (
+/obj/effect/turf_decal/bot,
+/obj/item/robot_suit,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"isk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"isl" = (
+/obj/machinery/light/small/broken/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"isn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"isr" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "atmoshfr"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/atmospherics_engine)
+"isu" = (
+/obj/effect/landmark/start/paramedic,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"isA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"isI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/iron/checker,
+/area/station/maintenance/aft/lesser)
+"isO" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/machinery/door/window/left/directional/north{
+ name = "Danger: Conveyor Access";
+ req_access = list("maint_tunnels")
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"isV" = (
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"isX" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/left/directional/east{
+ name = "Engineering Desk";
+ req_access = list("engineering")
+ },
+/obj/item/folder/yellow{
+ pixel_x = 4
+ },
+/obj/item/pen{
+ pixel_x = 5
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"itg" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"itn" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"itp" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"itr" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"itC" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"itW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"itY" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Doors"
+ },
+/obj/effect/turf_decal/caution/stand_clear,
+/turf/open/floor/iron/dark,
+/area/station/engineering/break_room)
+"iug" = (
+/obj/machinery/mechpad,
+/turf/open/floor/circuit/green,
+/area/station/science/robotics/mechbay)
+"iui" = (
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/textured,
+/area/station/engineering/atmos)
+"iun" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 4
},
/turf/open/space/basic,
@@ -9957,6 +28227,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+<<<<<<< HEAD
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood/large,
@@ -10475,10 +28746,2645 @@
/area/station/medical/chemistry)
"dUj" = (
/obj/structure/chair/office{
+=======
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iuB" = (
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iuE" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/glass/drinkingglass,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"iva" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"ivb" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/camera/directional/east{
+ c_tag = "Garden"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/wideplating_new,
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"ivc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"ivu" = (
+/obj/structure/table/reinforced,
+/obj/machinery/camera/directional/west{
+ c_tag = "Prison Cafeteria";
+ network = list("ss13","prison")
+ },
+/obj/item/food/energybar,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"ivx" = (
+/obj/effect/spawner/random/structure/chair_maintenance{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"ivy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"ivB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"ivC" = (
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/structure/closet/crate,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"ivM" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/station/service/library)
+"ivR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"iwj" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"iwt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall,
+/area/station/engineering/atmos)
+"iwA" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/obj/item/book/manual/wiki/robotics_cyborgs,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool,
+/obj/item/clothing/head/utility/welding,
+/obj/item/clothing/glasses/welding,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"iwL" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"iwO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ixd" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ixm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Wing"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "perma-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"ixr" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"ixv" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"ixw" = (
+/obj/machinery/holopad,
+/obj/machinery/camera/directional/south{
+ c_tag = "MiniSat Exterior - Aft";
+ network = list("minisat")
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"ixP" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ixT" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/structure/closet/crate/silvercrate,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"ixV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ixY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"iyc" = (
+/obj/machinery/portable_atmospherics/canister/plasma,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"iym" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"iyy" = (
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/blood{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"iyC" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door_buttons/airlock_controller{
+ idExterior = "virology_airlock_exterior";
+ idInterior = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access = list("virology")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"iyV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=11.1-Command-Starboard";
+ location = "11-Command-Port"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"izd" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/commons/fitness/recreation)
+"ize" = (
+/obj/structure/rack,
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/spawner/random/techstorage/medical_all,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"izl" = (
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"izp" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"izr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/grunge{
+ name = "Courtroom"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"izv" = (
+/obj/item/flashlight/lantern{
+ pixel_y = 7
+ },
+/obj/structure/table/wood,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"izA" = (
+/obj/structure/sink/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/yellow,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"izD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/medical,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"izG" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"izI" = (
+/obj/machinery/newscaster/directional/south,
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/machinery/camera/directional/south,
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"izZ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"iAj" = (
+/obj/structure/rack,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/timer,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"iAk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/item/stack/cable_coil,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"iAp" = (
+/obj/machinery/atmospherics/components/binary/valve/digital,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"iAq" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"iAs" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"iAu" = (
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"iAA" = (
+/obj/item/toy/beach_ball/branded{
+ pixel_y = 7
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"iAN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"iAR" = (
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/servingdish,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"iBf" = (
+/obj/structure/closet,
+/obj/item/stack/sheet/iron{
+ amount = 34
+ },
+/obj/item/extinguisher/mini,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iBm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"iBp" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Departure Lounge Airlock"
+ },
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iBq" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/fore/lesser)
+"iBt" = (
+/obj/structure/cable,
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"iBL" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"iCj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/airlock_controller/incinerator_atmos{
+ pixel_x = 40;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"iCr" = (
+/obj/structure/rack,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/effect/spawner/random/armory/riot_helmet,
+/obj/effect/spawner/random/armory/bulletproof_helmet,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"iCJ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"iCN" = (
+/obj/effect/turf_decal/arrows/white,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"iCV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"iCX" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iDh" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"iDq" = (
+/obj/effect/turf_decal/box,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/security_officer,
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"iDG" = (
+/obj/structure/table,
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -5;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = -5
+ },
+/obj/item/stock_parts/scanning_module{
+ pixel_x = 5
+ },
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"iDN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"iDP" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/station/security/office)
+"iEj" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"iEm" = (
+/obj/structure/reagent_dispensers/plumbed,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iEv" = (
+/obj/structure/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/aft)
+"iEE" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"iEK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"iEZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"iFh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"iFi" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"iFz" = (
+/turf/open/floor/iron,
+/area/station/security/prison)
+"iFC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"iFF" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"iFI" = (
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"iFR" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"iFX" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"iGj" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"iGq" = (
+/obj/structure/lattice,
+/obj/item/broken_bottle,
+/turf/open/space/basic,
+/area/space/nearstation)
+"iGr" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port to Filter"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iGA" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"iGB" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/byteforge,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/cargo/bitrunning/den)
+"iHc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/commons/fitness)
+"iHn" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"iHp" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"iHu" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"iHv" = (
+/obj/effect/spawner/random/trash/grille_or_waste,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iHy" = (
+/obj/machinery/rnd/production/circuit_imprinter,
+/obj/effect/turf_decal/bot,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/storage_shared)
+"iHD" = (
+/turf/closed/wall/r_wall,
+/area/station/security/courtroom)
+"iHH" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"iHS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Post - Cargo"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"iId" = (
+/obj/machinery/conveyor{
+ id = "mining"
+ },
+/obj/machinery/brm,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"iIf" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Locker Room Entrance"
+ },
+/obj/structure/cable,
+/obj/structure/sign/departments/lawyer/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"iIq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"iIE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"iIP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"iIQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"iJj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"iJl" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/command)
+"iJC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"iJD" = (
+/obj/item/instrument/guitar,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"iJK" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/plumbed{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"iKj" = (
+/obj/machinery/photocopier{
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"iKL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iKT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iKV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/left/directional/south{
+ name = "Atmospherics Desk";
+ req_access = list("atmospherics")
+ },
+/obj/item/folder/yellow{
+ pixel_x = 5
+ },
+/obj/item/pen{
+ pixel_x = 5
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden,
+/obj/structure/desk_bell{
+ pixel_x = -8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"iLe" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space,
+/area/space/nearstation)
+"iLk" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L12"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iLq" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding,
+/turf/open/floor/iron,
+/area/station/science/lab)
+"iLw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"iLH" = (
+/obj/machinery/flasher/directional/west{
+ id = "Cell 1"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"iLT" = (
+/obj/effect/turf_decal/siding/thinplating_new/dark,
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/bitrunner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/cargo/bitrunning/den)
+"iMd" = (
+/obj/structure/bed/medical/emergency{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"iMi" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"iMk" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"iMo" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/security/detectives_office,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"iMr" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "chem_lockdown";
+ name = "Chemistry Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"iMs" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"iMv" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"iMF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/disposal/bin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Custodial Closet"
+ },
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/requests_console/directional/north{
+ department = "Janitorial";
+ name = "Janitorial Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"iMG" = (
+/obj/structure/chair/stool/directional/south,
+/obj/structure/disposalpipe/junction/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"iMQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/mob/living/basic/lizard/wags_his_tail,
+/turf/open/floor/plating,
+/area/station/service/janitor)
+"iMR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"iMS" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"iNc" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"iNi" = (
+/obj/item/shard,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"iNo" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay Psychology Office";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"iNB" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/table/glass,
+/obj/item/papercutter,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"iNC" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"iNH" = (
+/obj/structure/lattice/catwalk,
+/obj/item/banner/cargo,
+/turf/open/space/basic,
+/area/space/nearstation)
+"iNK" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio2";
+ name = "Xenobio Pen 2 Blast Doors";
+ pixel_y = 1;
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"iNQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"iOc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"iOm" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"iOp" = (
+/obj/machinery/door/airlock/command{
+ name = "Command Desk"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"iOr" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/garden)
+"iOt" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"iOD" = (
+/obj/machinery/atmospherics/components/binary/tank_compressor{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"iOJ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"iOS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"iPb" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/visit)
+"iPe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 8
+ },
+/area/station/science/lab)
+"iPp" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/light/small/directional/west,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/spawner/random/bureaucracy/pen,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"iPx" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iPy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/medical/virology)
+"iPB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"iPE" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"iPM" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"iPT" = (
+/obj/machinery/light/floor,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"iPX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 locker"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"iQd" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"iQg" = (
+/obj/structure/chair,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"iQi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"iQj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/medbay/cmo_office,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"iQr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"iQy" = (
+/obj/structure/sign/warning/pods{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"iQF" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"iQI" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"iQO" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/sink/directional/east,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iQP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/west,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"iRc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"iRg" = (
+/obj/structure/chair/stool/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"iRh" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/external{
+ name = "MiniSat Space Access Airlock"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "transitlockdown"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"iRr" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Arrivals - Middle Arm"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"iRy" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"iRW" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"iRY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Foyer"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+"iSh" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"iSk" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"iSl" = (
+/obj/structure/sink/kitchen/directional/south,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"iSt" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/rag{
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/cup/glass/waterbottle{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/soda_cans/monkey_energy{
+ pixel_x = -7;
+ pixel_y = 7
+ },
+/turf/open/floor/iron/white/smooth_half,
+/area/station/commons/fitness)
+"iSI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"iSU" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/rcl/pre_loaded,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+"iTc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"iTC" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iTH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"iTO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/landmark/start/depsec/science,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"iTQ" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Doors";
+ pixel_y = 1;
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"iTX" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iTZ" = (
+/turf/closed/wall/r_wall,
+/area/station/security/lockers)
+"iUe" = (
+/obj/structure/table/wood,
+/obj/item/lipstick{
+ pixel_y = 5
+ },
+/obj/effect/spawner/random/entertainment/musical_instrument,
+/obj/structure/sign/poster/random/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"iUf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+"iUm" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iUs" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iUv" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison)
+"iUE" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"iUJ" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"iVi" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin6";
+ name = "Cabin 2"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"iVs" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"iVt" = (
+/obj/effect/decal/remains/human{
+ desc = "They look like human remains. The bones are charred and burned.";
+ name = "charred remains"
+ },
+/turf/open/floor/engine/vacuum,
+/area/space/nearstation)
+"iVA" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"iVE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"iVJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"iVN" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/commons/dorms)
+"iVO" = (
+/obj/structure/closet/masks,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"iWc" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"iWj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"iWk" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = 8
+ },
+/obj/machinery/button/door/directional/south{
+ id = "chapel_shutters_space";
+ name = "chapel shutters control";
+ pixel_x = -6
+ },
+/turf/open/floor/iron/chapel{
+ dir = 4
+ },
+/area/station/service/chapel)
+"iWy" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"iWB" = (
+/obj/item/storage/fancy/candle_box,
+/obj/machinery/light/small/directional/east,
+/obj/structure/rack/skeletal,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"iWD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"iWJ" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iWT" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 6
+ },
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/holosign_creator/atmos,
+/obj/item/holosign_creator/atmos,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"iWU" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/break_room)
+"iWZ" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"iXb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iXp" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/effect/turf_decal/siding/purple{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"iXt" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"iXC" = (
+/obj/item/tank/internals/oxygen,
+/obj/item/tank/internals/oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"iXT" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock{
+ id_tag = "commissarydoor";
+ name = "Commissary"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"iYc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/bluespace_vendor/directional/south,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"iYA" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Bridge - Starboard"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"iYD" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"iYE" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/siding/purple{
+ dir = 6
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/mixingchamber_access,
+/obj/effect/mapping_helpers/airalarm/link{
+ chamber_id = "ordnanceburn"
+ },
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"iYG" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"iYO" = (
+/obj/structure/table,
+/obj/item/circular_saw,
+/obj/item/scalpel{
+ pixel_y = 16
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"iYP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"iYU" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/construction/mining/aux_base)
+"iYW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"iZd" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/window/left/directional/east{
+ name = "Kitchen Delivery";
+ req_access = list("kitchen")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/tlv_cold_room,
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"iZi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"iZm" = (
+/obj/machinery/shower/directional/south{
+ name = "emergency shower"
+ },
+/obj/effect/turf_decal/trimline/blue/end,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"iZn" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes{
+ pixel_y = 4
+ },
+/obj/item/storage/box/syringes,
+/obj/item/gun/syringe,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"iZC" = (
+/obj/structure/closet/crate,
+/obj/machinery/light/small/directional/east,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/spawner/random/entertainment/dice,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"iZF" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"iZS" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/anesthetic_mix,
+/turf/open/floor/iron/dark,
+/area/station/medical/cryo)
+"jaj" = (
+/obj/structure/chair,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/station/security/office)
+"jaq" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jau" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/flasher/directional/east{
+ id = "secentranceflasher"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"jay" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jaO" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"jaY" = (
+/obj/effect/turf_decal/box/red,
+/obj/machinery/atmospherics/components/unary/outlet_injector{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"jbd" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"jbg" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"jbk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Central South";
+ dir = 9;
+ network = list("ss13","rd","xeno")
+ },
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"jbF" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/shard,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jcc" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/spawner/random/armory/laser_gun,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"jcw" = (
+/obj/machinery/atmospherics/components/tank,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"jcy" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jcI" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/structure/closet/secure_closet/psychology,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"jcJ" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Doors"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron/dark,
+/area/station/engineering/break_room)
+"jcR" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"jdg" = (
+/obj/structure/flora/bush/ferny/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/obj/structure/window/fulltile,
+/turf/open/floor/grass,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jdv" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"jdH" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/effect/turf_decal/siding/white,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Cold Storage";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/turf/open/floor/iron/kitchen_coldroom,
+/area/station/medical/coldroom)
+"jdR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jdX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/science/server)
+"jdZ" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ name = "lavaland";
+ shuttle_id = "pod_3_lavaland"
+ },
+/turf/open/space,
+/area/space)
+"jef" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jei" = (
+/obj/machinery/light/cold/directional/south,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/vending/wardrobe/medi_wardrobe,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"jej" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jew" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"jeI" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"jeL" = (
+/obj/structure/table/glass,
+/obj/item/book/manual/wiki/medicine,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/wrench/medical,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/dark,
+/area/station/medical/cryo)
+"jfa" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/vending/games,
+/turf/open/floor/wood,
+/area/station/service/library)
+"jff" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"jfg" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"jfn" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Primary Treatment Centre"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"jfr" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"jfv" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"jfB" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Dock Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/miningoffice)
+"jfC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"jfG" = (
+/turf/closed/wall,
+/area/station/maintenance/disposal)
+"jfN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jfO" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/treatment_center)
+"jfS" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/structure/sign/warning/electric_shock,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "Xenobio Pen 1 Blast Door"
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"jfU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"jfX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/assistant,
+/obj/effect/turf_decal/trimline/green/line,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"jgk" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jgt" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Distro Staging"
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jgy" = (
+/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/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/table/wood,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/grimy,
+/area/station/security/interrogation)
+"jgE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jgK" = (
+/obj/structure/sign/poster/random/directional/south,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"jgT" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#EFB341"
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"jgW" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bucket,
+/obj/item/mop,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"jhd" = (
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/station/solars/starboard/fore)
+"jhk" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jhn" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"jhp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"jhv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"jhD" = (
+/obj/structure/closet/radiation,
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"jhS" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"jhY" = (
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"jie" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"jis" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"jiI" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Bridge - Port"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"jjj" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"jjm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"jjn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jjs" = (
+/obj/effect/spawner/random/engineering/tank,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"jjv" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"jjy" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"jjC" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/item/food/grown/banana,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"jjF" = (
+/obj/structure/table/reinforced,
+/obj/item/holosign_creator/robot_seat/bar,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"jjG" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Recreation Area - Fore"
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"jjM" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"jjN" = (
+/obj/structure/chair/stool/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"jjS" = (
+/obj/item/kirbyplants/organic/plant6,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"jkj" = (
+/obj/effect/turf_decal/trimline/red/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"jku" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jkG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/transit_tube/station/dispenser{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"jkT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"jkX" = (
+/obj/machinery/door_buttons/access_button{
+ idDoor = "xeno_airlock_interior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Button";
+ pixel_x = 29;
+ pixel_y = -8;
+ req_access = list("xenobiology")
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/item/soap,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"jle" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/item/folder/yellow{
+ pixel_x = 8;
+ pixel_y = -1
+ },
+/obj/item/ammo_casing/rocket{
+ pixel_x = -2;
+ pixel_y = 19;
+ name = "Dud Rocket";
+ desc = "An 84mm High Explosive rocket. This one's a dud. Pretty sure."
+ },
+/obj/item/computer_disk/quartermaster{
+ pixel_x = 9;
+ pixel_y = 13
+ },
+/obj/effect/spawner/random/entertainment/lighter{
+ pixel_x = -7;
+ pixel_y = -4
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"jln" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"jlA" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jlJ" = (
+/obj/effect/spawner/random/entertainment/arcade,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"jlM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jlU" = (
+/turf/closed/wall/r_wall,
+/area/station/science/xenobiology)
+"jlY" = (
+/obj/structure/urinal/directional/north,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"jmc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"jml" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/sink/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"jmq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"jmr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/starboard/lesser)
+"jms" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jmv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison)
+"jmJ" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"jmR" = (
+/obj/structure/closet/secure_closet/security/cargo,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"jmT" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jmU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"jmY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Gateway Chamber"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/command/gateway,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"jnl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "bridge-left"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 1
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
"dUo" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -10687,10 +31593,207 @@
c_tag = "Central Primary Hallway - Starboard - Kitchen"
},
/obj/structure/disposalpipe/segment,
+=======
+"jnt" = (
+/obj/structure/bookcase,
+/turf/open/floor/wood,
+/area/station/command/bridge)
+"jnA" = (
+/obj/machinery/newscaster/directional/west,
+/obj/structure/easel,
+/obj/item/canvas/nineteen_nineteen,
+/obj/item/canvas/twentythree_nineteen,
+/obj/item/canvas/twentythree_twentythree,
+/turf/open/floor/wood,
+/area/station/service/library)
+"jnI" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Teleporter Room"
+ },
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"jnQ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics - Central Fore"
+ },
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+"joj" = (
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"joo" = (
+/obj/effect/landmark/start/station_engineer,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"joq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jox" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"joP" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"jpj" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"jpr" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/command_all,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"jpw" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"jpx" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/rnd_all,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"jpA" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut)
+"jpG" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/camera/directional/north{
+ c_tag = "Mining Dock"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"jpO" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jpU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"jpX" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/holding_cell)
+"jqa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jqd" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"jql" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet2";
+ name = "Unit 2"
+ },
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"jqp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"jqr" = (
+/obj/machinery/computer/security/mining{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"jqQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"jrb" = (
+/obj/machinery/computer/scan_consolenew{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"jrk" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/effect/turf_decal/loading_area,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"jrL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
/turf/open/floor/iron,
+<<<<<<< HEAD
/area/station/hallway/primary/central)
"dYh" = (
/obj/machinery/holopad,
@@ -10813,17 +31916,1852 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/decal/cleanable/dirt,
+=======
+/area/station/commons/locker)
+"jrY" = (
+/obj/machinery/door/airlock/external{
+ name = "Transport Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"jsh" = (
+/obj/structure/table/glass,
+/obj/item/folder/white{
+ pixel_y = 2
+ },
+/obj/item/screwdriver{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/radio/headset/headset_med,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/firealarm/directional/south,
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"jsi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"jsj" = (
+/obj/machinery/shower/directional/west,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron/white/textured,
+/area/station/medical/surgery/theatre)
+"jso" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"jsq" = (
+/obj/structure/sink/directional/west,
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/structure/light_construct/small/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"jsr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"jsH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"jsL" = (
+/obj/structure/rack,
+/obj/item/extinguisher,
+/obj/item/storage/belt/utility,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"jsP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jtf" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Ports"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jtl" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jtp" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"jtA" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/siding/white{
+ dir = 4
+ },
+/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,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/medical/treatment_center)
+"jtI" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"jtS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/circuitboard/mecha/ripley/main,
+/obj/item/circuitboard/mecha/ripley/peripherals,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"juf" = (
+/obj/machinery/telecomms/bus/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"juj" = (
+/obj/structure/closet/secure_closet/brig,
+/turf/open/floor/iron/dark,
+/area/station/security/holding_cell)
+"juC" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "O2 to Airmix"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"juH" = (
+/obj/machinery/firealarm/directional/west{
+ pixel_y = -9
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/vending/cytopro,
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"juJ" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"juV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"jvf" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/maintenance/port/aft)
+"jvj" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jvm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"jvo" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"jvr" = (
+/obj/structure/table/glass,
+/obj/item/folder/blue,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/clothing/glasses/hud/health,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"jvu" = (
+/obj/machinery/newscaster/directional/west,
+/obj/structure/filingcabinet,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"jvv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"jvB" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"jvL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"jvO" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/mob/living/simple_animal/bot/secbot/pingsky,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"jvQ" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Petting Zoo"
+ },
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/turf/open/floor/iron,
+/area/station/science/research)
+"jvX" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/shower/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"jwj" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"jwp" = (
+/obj/structure/table/glass,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/beaker/cryoxadone{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/storage/pill_bottle/mannitol,
+/obj/item/reagent_containers/dropper{
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"jws" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"jwv" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/landmark/start/assistant,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/east{
+ id = "AuxToilet1";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"jwy" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Recreation Area"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"jwE" = (
+/obj/structure/cable,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"jwP" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"jwW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "showroom"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"jxc" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/medical/treatment_center)
+"jxf" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2,
+/obj/machinery/air_sensor/ordnance_freezer_chamber,
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"jxm" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/construction/plumbing,
+/obj/item/construction/plumbing,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jxv" = (
+/obj/structure/table/wood,
+/obj/machinery/fax{
+ fax_name = "Captain's Office";
+ name = "Captain's Fax Machine"
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"jxH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"jxM" = (
+/obj/item/radio/intercom/directional/west{
+ pixel_y = -10
+ },
+/obj/machinery/light_switch/directional/west{
+ pixel_y = 6
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/fax{
+ fax_name = "Engineering Lobby";
+ name = "Engineering Lobby Fax Machine"
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"jxS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison)
+"jxV" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"jxW" = (
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/grass,
+/area/station/science/genetics)
+"jye" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"jyq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/newscaster/directional/east,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
/obj/effect/turf_decal/tile/bar,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"eaN" = (
+=======
+"jyr" = (
+/obj/effect/landmark/start/depsec/science,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"jyt" = (
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jyF" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"jyH" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start/security_officer,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"jyQ" = (
+/obj/machinery/computer/records/medical{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"jzp" = (
+/turf/closed/wall,
+/area/station/commons/vacant_room/office)
+"jzw" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"jzC" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Animal Pen A"
+ },
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"jzD" = (
+/obj/machinery/holopad/secure,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"jzE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"jzN" = (
+/turf/closed/wall/r_wall,
+/area/station/command/corporate_showroom)
+"jzT" = (
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"jAd" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jAl" = (
+/obj/machinery/computer/records/security,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"jAm" = (
+/obj/effect/spawner/xmastree,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"jAs" = (
+/obj/structure/window/spawner/directional/east,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"jAt" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"jAN" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/office)
+"jAO" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"jAP" = (
+/obj/structure/cable,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"jAV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jBk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"jBl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"jBp" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin{
+ name = "Jim Norton's Quebecois Coffee disposal unit"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"jBu" = (
+/obj/effect/landmark/start/cargo_technician,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jBy" = (
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort2";
+ name = "Sort and Deliver";
+ pixel_x = -2;
+ pixel_y = 12
+ },
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "packageExternal";
+ name = "Crate Returns";
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/corner,
+/obj/effect/turf_decal/trimline/white/corner,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"jBC" = (
+/obj/structure/table,
+/obj/item/clothing/head/soft/grey{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"jBF" = (
+/obj/structure/water_source/puddle,
+/obj/structure/flora/bush/large/style_random{
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"jBO" = (
+/obj/item/dice/d20,
+/obj/item/dice,
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/dice,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/light_construct/small/directional/south,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jBU" = (
+/obj/structure/chair/office/tactical{
+ dir = 1
+ },
+/obj/effect/landmark/start/coroner,
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"jBY" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"jCj" = (
+/obj/item/toy/basketball,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jCk" = (
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"jCn" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"jCw" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jCx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/tank/plasma{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jCM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"jCO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"jDf" = (
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/item/storage/box/bandages{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/obj/item/storage/medkit/regular,
+/obj/item/reagent_containers/cup/bottle/multiver,
+/obj/item/reagent_containers/cup/bottle/epinephrine,
+/obj/item/reagent_containers/syringe,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"jDB" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"jEa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"jEc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jEr" = (
+/obj/machinery/holopad/secure,
+/obj/machinery/flasher/directional/west{
+ id = "AI";
+ pixel_y = -26
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/window/brigdoor/left/directional/west{
+ name = "Secondary AI Core Access";
+ req_access = list("ai_upload");
+ pixel_x = -4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"jEI" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"jER" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"jFr" = (
+/obj/structure/sign/poster/party_game,
+/turf/closed/wall,
+/area/space/nearstation)
+"jFy" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"jFB" = (
+/obj/machinery/iv_drip,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"jFK" = (
+/obj/machinery/washing_machine,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison)
+"jFO" = (
+/obj/structure/closet/firecloset,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"jFZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jGa" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"jGb" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"jGl" = (
+/obj/effect/landmark/secequipment,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"jGo" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"jGr" = (
+/turf/closed/wall/r_wall,
+/area/station/tcommsat/server)
+"jGt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jGv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"jGw" = (
+/obj/structure/table/glass,
+/obj/machinery/computer/records/medical/laptop,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"jGA" = (
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"jGG" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/treatment_center)
+"jGN" = (
+/obj/machinery/computer/station_alert{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/computer/security/telescreen/minisat/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"jGO" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/cultivator,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"jHg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"jHm" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"jHw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"jHA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"jHB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"jHQ" = (
+/obj/structure/chair/sofa/corp/left{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"jHW" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/effect/turf_decal/trimline/brown/filled/warning,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"jHX" = (
/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"jIg" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/multitool,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"jIk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"jIl" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den,
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"jIz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"jIR" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut)
+"jIV" = (
+/obj/effect/spawner/random/structure/chair_maintenance,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"jIW" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jIY" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/obj/machinery/camera/autoname/directional/west,
+/obj/structure/displaycase/trophy,
+/turf/open/floor/wood,
+/area/station/service/library)
+"jJd" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/obj/effect/landmark/start/depsec/medical,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"jJi" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"jJk" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/spawner/random/maintenance/three,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"jJl" = (
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/servingdish,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"jJm" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"jJp" = (
+/obj/machinery/button/flasher{
+ id = "IsolationFlash";
+ pixel_x = -23;
+ pixel_y = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"jJC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/space,
+/area/space/nearstation)
+"jJR" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"jJY" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/beakers{
+ pixel_y = 7
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/chem_storage)
+"jKa" = (
+/obj/machinery/door/airlock/research{
+ name = "Testing Labs"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/science/research,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"jKc" = (
+/obj/effect/turf_decal/trimline/brown/filled/shrink_cw{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jKi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Bar"
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"jKq" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Two";
+ space_dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"jKz" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"jKA" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"jKG" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/effect/turf_decal/trimline/yellow/warning,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jKS" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"jLg" = (
+/obj/structure/cable,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14-Starboard-Central";
+ location = "13.3-Engineering-Central"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"jLo" = (
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"jLw" = (
+/obj/structure/marker_beacon/burgundy,
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/space/nearstation)
+"jLy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"jLD" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jLG" = (
+/obj/structure/railing/corner,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"jLQ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/right/directional/north{
+ name = "Head of Personnel's Desk";
+ req_access = list("hop")
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/south{
+ name = "Reception Window"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hop";
+ name = "Privacy Shutters"
+ },
+/obj/structure/cable,
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+"jMb" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/statue/gold/qm,
+/obj/machinery/status_display/supply{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/brown/diagonal_centre,
+/obj/effect/turf_decal/tile/yellow/diagonal_edge,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 10
+ },
+/turf/open/floor/iron/diagonal,
+/area/station/cargo/storage)
+"jMo" = (
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"jMx" = (
+/obj/structure/closet/crate,
+/obj/item/food/breadslice/plain,
+/obj/item/food/breadslice/plain,
+/obj/item/food/breadslice/plain,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/onion,
+/obj/item/food/grown/onion,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"jMy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "detective_shutters";
+ name = "Detective's Office Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/detectives_office)
+"jMJ" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/syringe,
+/obj/item/reagent_containers/cup/bottle/morphine{
+ pixel_y = 6
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Prison Sanitarium";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/machinery/light/cold/directional/north,
+/turf/open/floor/iron/white,
+/area/station/security/execution/transfer)
+"jML" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"jMY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "bridge-left"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"jMZ" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod One";
+ space_dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"jNl" = (
+/obj/structure/table,
+/obj/item/storage/medkit/regular{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/storage/medkit/regular,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/light/cold/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jNo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"jNp" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"jNN" = (
+/obj/item/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"jNP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Aft Primary Hallway"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jNR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/cargo_technician,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"jNZ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Telecomms - Server Room - Aft-Port";
+ network = list("ss13","tcomms")
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"jOb" = (
+/obj/docking_port/stationary/mining_home/common{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/station/hallway/primary/port)
+"jOv" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/screwdriver,
+/obj/machinery/camera/directional/east{
+ c_tag = "Vacant Commissary"
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"jOw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jOG" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L10"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jON" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"jOR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"jPe" = (
+/obj/structure/table,
+/obj/item/airlock_painter,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"jPf" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Starboard Primary Hallway - Engineering"
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"jPm" = (
+/obj/machinery/atmospherics/components/tank/air,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"jPE" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"jPH" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/checker,
+/area/station/engineering/atmos/storage/gas)
+"jPJ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/space/basic,
+/area/space/nearstation)
+"jPU" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=3-Central-Port";
+ location = "2.1-Leaving-Storage"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jQa" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jQr" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"jQz" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8
+ },
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"jQM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Council Chamber"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"jRb" = (
+/obj/structure/table/reinforced,
+/obj/effect/spawner/random/trash/food_packaging,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/storage_shared)
+"jRc" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"jRg" = (
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"jRo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/table,
+/obj/item/hand_labeler_refill{
+ pixel_x = 12;
+ pixel_y = -3
+ },
+/obj/effect/spawner/random/bureaucracy/birthday_wrap{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/stack/package_wrap{
+ pixel_x = -6;
+ pixel_y = 18
+ },
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"jRz" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jRD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jRO" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/camera/directional/north{
+ c_tag = "Science Research Office";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning,
+/turf/open/floor/iron,
+/area/station/science/lab)
+"jRZ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"jSb" = (
+/obj/machinery/light_switch/directional/west,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"jSf" = (
+/obj/structure/chair/stool/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"jSj" = (
+/obj/machinery/door/airlock/research{
+ glass = 1;
+ name = "Slime Euthanization Chamber";
+ opacity = 0
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"jSk" = (
+/turf/open/floor/engine,
+/area/station/science/explab)
+"jSq" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Garden"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"jSA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"jTi" = (
+/obj/machinery/hydroponics/soil,
+/obj/machinery/camera/directional/west{
+ c_tag = "Prison Forestry";
+ network = list("ss13","prison")
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"jTl" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"jTs" = (
+/obj/item/kirbyplants/potty,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"jTy" = (
+/obj/structure/table/wood,
+/obj/item/book/granter/action/spell/smoke/lesser{
+ name = "mysterious old book of cloud-chasing"
+ },
+/obj/item/reagent_containers/cup/glass/bottle/holywater{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/nullrod{
+ pixel_x = 4
+ },
+/obj/item/organ/internal/heart,
+/obj/item/soulstone/anybody/chaplain,
+/turf/open/floor/cult,
+/area/station/service/chapel/office)
+"jTH" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/pdapainter/security,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hos)
+"jTM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/wood/wings{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"jTN" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Science Ordnance Storage";
+ network = list("ss13","rd")
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"jTR" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"jTS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics - Hypertorus Fusion Reactor Chamber Aft"
+ },
+/obj/structure/closet/radiation,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"jTZ" = (
+/turf/closed/wall,
+/area/station/security/execution/transfer)
+"jUb" = (
+/turf/closed/wall,
+/area/station/maintenance/port/aft)
+"jUh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side,
+/area/station/science/lobby)
+"jUi" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/airlock_sensor/incinerator_atmos{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"jUj" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Chapel - Funeral Parlour"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{
+ pixel_x = 24
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"jUm" = (
+/obj/structure/closet/secure_closet/bar/all_access{
+ pixel_x = -3;
+ pixel_y = -1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"jUq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"jUs" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"jUu" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+<<<<<<< HEAD
dir = 8
},
/turf/open/floor/iron,
@@ -15878,9 +38816,385 @@
/area/station/maintenance/starboard/aft)
"fQh" = (
/obj/machinery/chem_dispenser/drinks/beer{
+=======
dir = 1
},
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jUx" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"jUA" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/office/light,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"jUH" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Fitness Ring"
+ },
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"jUP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"jUT" = (
/obj/structure/table,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"jUW" = (
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"jVb" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"jVl" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"jVv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"jVy" = (
+/obj/machinery/portable_atmospherics/pump/lil_pump,
+/obj/effect/turf_decal/siding/purple{
+ dir = 5
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/button/door/directional/north{
+ id = "rdordnance";
+ name = "Ordnance Containment Control";
+ req_access = list("rd")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"jVG" = (
+/obj/structure/table,
+/obj/item/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"jVZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/right/directional/west{
+ name = "Outer Window"
+ },
+/obj/machinery/door/window/brigdoor/left/directional/east{
+ name = "Security Desk";
+ req_access = list("security")
+ },
+/obj/item/folder/red,
+/obj/item/pen,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"jWg" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jWE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/power/energy_accumulator/tesla_coil/anchored,
+/obj/structure/window/reinforced/plasma/spawner/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"jWR" = (
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/structure/chair/stool{
+ name = "Jim Norton's Quebecois Coffee stool"
+ },
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+"jXe" = (
+/obj/structure/lattice,
+/obj/item/wirecutters,
+/turf/open/space/basic,
+/area/space/nearstation)
+"jXq" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"jXu" = (
+/turf/closed/wall,
+/area/station/maintenance/port/fore)
+"jXw" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"jXy" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"jXz" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"jXE" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"jXK" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/research,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"jXM" = (
+/obj/structure/closet/secure_closet/brig,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"jXO" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"jXQ" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"jYr" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"jYu" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 9
+ },
+/turf/open/water,
+/area/station/service/hydroponics/garden)
+"jYv" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"jYy" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"jYD" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"jYI" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"jYL" = (
+/obj/machinery/recharger,
+/obj/item/restraints/handcuffs,
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"jZz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"jZC" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/space,
+/area/space/nearstation)
+"jZP" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 5
+ },
+/obj/machinery/vending/wardrobe/gene_wardrobe,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"jZR" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"jZW" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"jZZ" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Bridge - Council Chamber"
+ },
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"kag" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"kat" = (
+/obj/structure/sign/warning/vacuum/external,
+/turf/closed/wall,
+/area/station/cargo/miningoffice)
+"kaC" = (
+/obj/machinery/light_switch/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"kaF" = (
+/obj/effect/turf_decal/trimline/purple/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kaS" = (
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos)
+"kaU" = (
+/obj/structure/closet{
+ name = "evidence closet 3"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/poster/traitor,
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"kbo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kbz" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"kbB" = (
+/obj/structure/chair/sofa/corp/right,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"kbN" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/box/mousetraps{
+ pixel_x = -5;
+ pixel_y = 14
+ },
+/obj/structure/table,
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/bar/opposingcorners,
/obj/machinery/light/small/directional/south,
/obj/machinery/digital_clock/directional/south,
@@ -17490,12 +40804,188 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/disposalpipe/junction/yjunction{
dir = 8
+=======
+/obj/item/storage/box/mousetraps{
+ pixel_x = 12;
+ pixel_y = 15
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/item/grenade/chem_grenade/cleaner{
+ pixel_x = -7;
+ pixel_y = 6
+ },
+/obj/item/grenade/chem_grenade/cleaner{
+ pixel_x = -1;
+ pixel_y = 3
+ },
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"kbR" = (
+/obj/structure/sign/poster/official/cleanliness/directional/east,
+/obj/machinery/door/window/right/directional/north{
+ name = "Hydroponics Delivery";
+ req_access = list("hydroponics")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"kbU" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/closet/crate/solarpanel_small,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"kcg" = (
+/obj/structure/chair/wood{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"kch" = (
+/obj/structure/table,
+/obj/item/clothing/under/suit/black_really,
+/obj/machinery/light/small/directional/north,
+/obj/item/radio/intercom/directional/north,
+/obj/item/clothing/accessory/waistcoat,
+/obj/item/clothing/suit/toggle/lawyer/black,
+/obj/item/clothing/under/suit/red,
+/obj/item/clothing/neck/tie/black,
+/obj/item/clothing/under/costume/buttondown/slacks/service,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms)
+"kcn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"kcu" = (
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"kcF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"kcU" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/space,
+/area/space/nearstation)
+"kcV" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Cooling Loop Bypass"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"kcZ" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/item/clothing/gloves/latex/nitrile,
+/obj/item/wrench/medical,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Storage";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"kdx" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape";
+ location = "8-Central-to-Aft"
+ },
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kdy" = (
+/obj/structure/frame/computer{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/mechbay)
+"kdL" = (
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kdN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"kdO" = (
+/obj/machinery/door/airlock/security{
+ name = "Court Cell"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"kdX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"ken" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"keK" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"keL" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"keR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"guS" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -18835,6 +42325,327 @@
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
"gSk" = (
+=======
+"keX" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kfp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"kfA" = (
+/obj/effect/landmark/start/head_of_personnel,
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"kfC" = (
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"kfL" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/station/commons/fitness/recreation)
+"kfT" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kgg" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"kgr" = (
+/obj/effect/turf_decal/bot_white,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"kgx" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"kgy" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/office)
+"kgz" = (
+/obj/machinery/smartfridge/chemistry/virology/preloaded,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"kgC" = (
+/obj/machinery/door/poddoor/incinerator_ordmix,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"kgV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kgW" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/crowbar/red,
+/obj/machinery/light_switch/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"kha" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/machinery/pdapainter/medbay,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"khm" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/mob/living/simple_animal/bot/secbot/beepsky/officer,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"kho" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Mass Driver";
+ req_access = list("chapel_office")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"khu" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/engineering)
+"khD" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Crematorium Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/crematorium,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"khZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/hallway/primary/central)
+"kif" = (
+/obj/item/emptysandbag,
+/obj/item/emptysandbag,
+/obj/item/emptysandbag,
+/obj/item/emptysandbag{
+ pixel_x = 8
+ },
+/obj/item/emptysandbag{
+ pixel_x = -9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"kir" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/mail_sorting/service/library,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"kiy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"kiz" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"kiE" = (
+/obj/item/book/manual/nuclear,
+/turf/open/floor/plating/foam{
+ initial_gas_mix = "TEMP=2.7"
+ },
+/area/space/nearstation)
+"kiH" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"kiJ" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kiW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"kjG" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/rd_office,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kjO" = (
+/obj/structure/table,
+/obj/item/restraints/handcuffs/cable/white,
+/obj/item/toy/plush/pkplush{
+ name = "C.H.E.R.U.B."
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kka" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"kkk" = (
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/button/door/directional/west{
+ id = "QMLoaddoor";
+ name = "Loading Doors";
+ pixel_y = -8;
+ req_access = list("cargo")
+ },
+/obj/machinery/button/door/directional/west{
+ id = "QMLoaddoor2";
+ name = "Loading Doors";
+ pixel_y = 8;
+ req_access = list("cargo")
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kkr" = (
+/obj/structure/plasticflaps/opaque,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ name = "Atmospherics Blast Door"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ location = "Atmospherics"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/storage/gas)
+"kkB" = (
+/obj/machinery/mineral/ore_redemption{
+ dir = 4;
+ input_dir = 8;
+ output_dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/east{
+ name = "Ore Redemption Window"
+ },
+/obj/machinery/door/window/left/directional/west{
+ req_access = list("cargo");
+ name = "Cargo Security Window"
+ },
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"kkU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/camera/directional/west{
+ c_tag = "Captain's Office - Emergency Escape"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"kkX" = (
+/obj/structure/table/reinforced,
+/obj/item/flashlight,
+/obj/item/analyzer{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/assembly/signaler,
+/obj/item/stack/rods{
+ amount = 25
+ },
+/obj/item/stack/cable_coil,
+/obj/item/gps,
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/gps,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"klf" = (
+/obj/item/folder,
+/obj/item/folder,
+/obj/machinery/camera/autoname/directional/south,
+/obj/structure/table/wood,
+/obj/item/taperecorder,
+/obj/item/tape,
+/turf/open/floor/wood,
+/area/station/service/library)
+"klj" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/light/small/directional/north,
/obj/structure/table,
/obj/item/reagent_containers/cup/bottle/epinephrine{
@@ -18861,6 +42672,367 @@
dir = 4
},
/obj/effect/turf_decal/tile/blue/half/contrasted{
+<<<<<<< HEAD
+=======
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"klp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"kls" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"klt" = (
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"klu" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"klw" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"klI" = (
+/obj/structure/table/wood,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"klK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"klL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"klS" = (
+/obj/machinery/griddle,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"klT" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"klZ" = (
+/obj/machinery/status_display/evac,
+/turf/closed/wall,
+/area/station/commons/lounge)
+"kmN" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kmW" = (
+/obj/machinery/door/poddoor/massdriver_trash,
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"kmZ" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/command/gateway)
+"knd" = (
+/obj/effect/landmark/start/assistant,
+/obj/structure/chair/comfy/black,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood,
+/area/station/service/library)
+"knf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"knj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/command/eva,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"knt" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"knI" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"knK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"knQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"knY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"knZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"koa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"koc" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera/directional/east{
+ c_tag = "Prison Workshop";
+ network = list("ss13","prison")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"kop" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kor" = (
+/turf/closed/wall,
+/area/station/maintenance/department/science/central)
+"kou" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"koW" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner";
+ location = "10.1-Central-from-Aft"
+ },
+/obj/effect/turf_decal/plaque{
+ icon_state = "L5"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kpi" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/status_display/ai/directional/west,
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"kpB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kpI" = (
+/obj/structure/table,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -8
+ },
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -8
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kpV" = (
+/obj/machinery/computer/operating{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"kqh" = (
+/obj/effect/turf_decal/siding/thinplating_new/dark,
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/landmark/start/bitrunner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/cargo/bitrunning/den)
+"kqm" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"kqM" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"kqZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/random/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"krc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"kre" = (
+/obj/effect/turf_decal/trimline/red/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"krt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wideplating_new{
+ dir = 4
+ },
+/obj/item/storage/toolbox/fishing,
+/obj/item/storage/toolbox/fishing,
+/obj/item/fishing_rod,
+/obj/item/fishing_rod,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"krL" = (
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"krN" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/assembly/timer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/assembly/timer{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/assembly/timer,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"ksg" = (
+/obj/effect/turf_decal/stripes/line{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 1
},
/turf/open/floor/iron/white,
@@ -18875,6 +43047,7 @@
/area/station/engineering/atmospherics_engine)
"gSz" = (
/obj/structure/cable,
+<<<<<<< HEAD
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/trimline/red/filled/warning,
@@ -33959,6 +58132,4278 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/turf/open/floor/plating,
+=======
+/turf/open/floor/iron,
+/area/station/security/range)
+"ksk" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/commons/storage/tools)
+"kso" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"ksM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ksT" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/blobstart,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"ktl" = (
+/obj/structure/sink/directional/east,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"ktw" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ktz" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"ktD" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ktG" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"ktK" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ktW" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 8;
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"kud" = (
+/obj/structure/sign/warning/vacuum/external/directional/south,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"kui" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"kuD" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 1
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"kuK" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/station/solars/port/fore)
+"kuS" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/tile/brown/anticorner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kuW" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"kvd" = (
+/obj/machinery/light/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"kvr" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"kvv" = (
+/obj/structure/chair,
+/turf/open/floor/iron/grimy,
+/area/station/security/interrogation)
+"kvK" = (
+/obj/machinery/meter,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kvN" = (
+/obj/structure/closet/crate/coffin,
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/plating,
+/area/station/service/chapel/funeral)
+"kvO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"kvV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kwb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kwh" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kwp" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/shutters/window{
+ id = "gateshutter";
+ name = "Gateway Access Shutter"
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"kww" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"kwy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kwC" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Brig - Hallway - Starboard"
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"kwF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"kwQ" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kwX" = (
+/obj/structure/table/wood,
+/obj/item/storage/crayons,
+/turf/open/floor/wood,
+/area/station/service/library)
+"kwZ" = (
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"kxa" = (
+/obj/machinery/chem_master,
+/obj/structure/noticeboard/directional/south,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"kxw" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/mapping_helpers/apc/cell_10k,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"kxz" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/general,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"kxA" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/office)
+"kxC" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/pen,
+/obj/machinery/button/door/directional/east{
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_y = 16;
+ req_access = list("engineering")
+ },
+/obj/machinery/button/door/directional/east{
+ id = "atmos";
+ name = "Atmospherics Lockdown";
+ pixel_y = 24;
+ req_access = list("atmospherics")
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/computer/security/telescreen/engine/directional/east,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"kxH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kxW" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/obj/structure/sign/poster/contraband/random/directional/east,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kyc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"kyh" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"kym" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kys" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"kyu" = (
+/obj/structure/lattice/catwalk,
+/obj/item/toy/figure/cargotech,
+/turf/open/space/basic,
+/area/space/nearstation)
+"kyQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"kyR" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"kyX" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"kyZ" = (
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/sign/departments/aisat/directional/south,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"kzg" = (
+/obj/machinery/ntnet_relay,
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+"kzj" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"kzD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Brig"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/security/court,
+/obj/effect/mapping_helpers/airlock/access/any/security/general,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"kzG" = (
+/turf/open/floor/iron/recharge_floor,
+/area/station/maintenance/port/aft)
+"kzI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"kzQ" = (
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kzZ" = (
+/obj/structure/bed/dogbed,
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"kAc" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kAp" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Disposals Chute"
+ },
+/obj/machinery/disposal/delivery_chute{
+ dir = 8;
+ name = "disposals chute";
+ pixel_x = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+"kAF" = (
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"kAI" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kAT" = (
+/obj/effect/landmark/start/head_of_security,
+/obj/structure/chair/comfy/black,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"kBg" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/clothing/under/rank/prisoner/skirt{
+ pixel_x = 9;
+ pixel_y = 5
+ },
+/obj/item/clothing/under/rank/prisoner{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/clothing/under/rank/prisoner/skirt{
+ pixel_x = -13;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"kBh" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kBl" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"kBm" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"kBu" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/obj/item/storage/box/bodybags{
+ pixel_x = -4;
+ pixel_y = 9
+ },
+/obj/item/storage/box/disks{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/clothing/gloves/latex{
+ pixel_x = 4;
+ pixel_y = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"kBQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/closet/radiation,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"kBS" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kBT" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "teleshutter";
+ name = "Teleporter Access Shutter"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"kCq" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/modular_computer/preset/engineering,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/incident_display/delam/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"kCt" = (
+/obj/machinery/status_display/door_timer{
+ id = "Cell 2";
+ name = "Cell 2";
+ pixel_y = -32
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"kCC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"kCD" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"kCN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kCZ" = (
+/turf/closed/wall,
+/area/station/service/hydroponics)
+"kDa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Medbay Main Hallway - South";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"kDk" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Permabrig Visitation"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"kDp" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"kDG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"kDS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"kDY" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage,
+/obj/effect/mapping_helpers/airlock/access/all/command/general,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"kEe" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kEm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"kEp" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"kEs" = (
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"kFa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"kFg" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"kFp" = (
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kFC" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rdrnd";
+ name = "Research and Development Shutters"
+ },
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/lab)
+"kFK" = (
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"kFM" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/service/library)
+"kFS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"kFT" = (
+/obj/item/kirbyplants/organic/plant13,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"kGc" = (
+/obj/machinery/computer/rdconsole,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"kGq" = (
+/obj/machinery/light/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kGs" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"kGv" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"kGJ" = (
+/obj/machinery/door/window/right/directional/east{
+ name = "Research Delivery";
+ req_access = list("science")
+ },
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"kGR" = (
+/obj/machinery/button/ignition{
+ id = "Xenobio";
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/machinery/button/door/directional/north{
+ id = "Xenolab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 6;
+ pixel_y = -2;
+ req_access = list("xenobiology")
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/computer/security/telescreen/test_chamber/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"kHg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"kHk" = (
+/obj/machinery/vending/wardrobe/viro_wardrobe,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"kHn" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Command Hallway - Central"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"kHt" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #2";
+ dir = 9;
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"kHN" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/engine,
+/area/station/science/explab)
+"kHO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/floor,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kHV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall,
+/area/station/maintenance/port/fore)
+"kIG" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"kIJ" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/disposalpipe/junction{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kIR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kIY" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"kJi" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"kJx" = (
+/obj/structure/chair/office,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/service/library)
+"kJO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/no_nightlight/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kKd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"kKh" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/help_others/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"kKk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Engineering Supermatter Port";
+ network = list("ss13","engine")
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/engine_access,
+/obj/effect/mapping_helpers/airalarm/link{
+ chamber_id = "engine"
+ },
+/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"kKp" = (
+/obj/structure/rack,
+/obj/item/gun/energy/laser/carbine/practice{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/gun/energy/laser/practice{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/item/gun/energy/laser/practice{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"kKq" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kKv" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/components/unary/passive_vent,
+/turf/open/space/basic,
+/area/space/nearstation)
+"kKw" = (
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kKF" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"kKO" = (
+/obj/structure/fake_stairs/directional/east,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+"kKT" = (
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/dropper,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"kKZ" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/mess)
+"kLg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"kLh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kLi" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kLp" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Inner Pipe Access";
+ req_access = list("atmospherics")
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kLC" = (
+/obj/machinery/door_buttons/access_button{
+ idDoor = "xeno_airlock_exterior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Button";
+ pixel_y = -24;
+ req_access = list("xenobiology")
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1449;
+ id_tag = "xeno_airlock_exterior";
+ name = "Xenobiology Lab External Airlock"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"kMd" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/obj/effect/spawner/random/structure/closet_empty,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kMk" = (
+/obj/item/book/manual/wiki/chemistry{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/book/manual/wiki/grenades,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/item/book/manual/wiki/plumbing{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/reagent_containers/dropper,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/periodic_table/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"kMl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kMr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"kMF" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kMG" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/service/hydroponics)
+"kMX" = (
+/obj/machinery/washing_machine,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/commons/dorms)
+"kNx" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to Ports"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kNA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"kNO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/trimline/yellow/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"kNV" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Port Quarter Solar Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"kOf" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"kOh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Medbay Security Post"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"kOB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 2
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/law_office,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"kOK" = (
+/turf/open/floor/plating,
+/area/station/hallway/primary/port)
+"kON" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kOQ" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"kOY" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch/directional/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Recreation Area - Aft"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"kPw" = (
+/obj/structure/table,
+/obj/item/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/geiger_counter{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/radio/off{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"kPy" = (
+/obj/structure/table,
+/obj/item/surgical_drapes,
+/obj/item/cautery,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"kPQ" = (
+/obj/machinery/door/airlock/external{
+ name = "Space Shack"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kPU" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/o2,
+/area/station/engineering/atmos)
+"kPZ" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"kQe" = (
+/turf/closed/wall,
+/area/station/science/genetics)
+"kQm" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"kQq" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kQv" = (
+/obj/machinery/light/directional/east,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+"kQO" = (
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/mob/living/basic/sloth/citrus,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"kQP" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/qm)
+"kQT" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"kQX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Crew Quarters Access"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kRe" = (
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"kRf" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/end,
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/storage/box{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"kRi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"kRk" = (
+/obj/machinery/announcement_system,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"kRA" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"kRF" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "ordnancebridge"
+ },
+/obj/machinery/button/door{
+ id = "ordnancebridge";
+ pixel_y = 24;
+ req_one_access = list("maint_tunnels","science")
+ },
+/obj/effect/turf_decal/caution/stand_clear{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kRV" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kSo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"kSs" = (
+/obj/structure/table,
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/item/folder/red{
+ pixel_x = 3
+ },
+/obj/item/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/healthanalyzer,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"kSw" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"kSB" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/reagent_dispensers/fueltank/large,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"kSD" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Aft Primary Hallway - Aft"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/primary/aft)
+"kSE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance/departmental,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kSN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/green/line,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"kSP" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/structure/sign/departments/botany/directional/east,
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kST" = (
+/obj/machinery/shieldgen,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"kTn" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kTO" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/folder/white,
+/obj/item/hand_labeler,
+/obj/item/pen,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"kTZ" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"kUb" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"kUm" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"kUG" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"kUJ" = (
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"kUQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"kUT" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/service/hydroponics/garden)
+"kUZ" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/library)
+"kVg" = (
+/obj/machinery/computer/pandemic,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"kVq" = (
+/obj/structure/sign/warning/secure_area/directional/east,
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kVs" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kVN" = (
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"kVR" = (
+/obj/effect/spawner/random/engineering/vending_restock,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"kVU" = (
+/obj/effect/turf_decal/trimline/neutral/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"kWc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"kWd" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"kWg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"kWn" = (
+/obj/structure/cable,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+"kWE" = (
+/obj/machinery/smartfridge/organ,
+/obj/effect/turf_decal/tile/dark_blue/full,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/morgue)
+"kWL" = (
+/obj/structure/sign/directions/command{
+ dir = 4;
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/station/hallway/secondary/command)
+"kWO" = (
+/obj/structure/sign/directions/medical{
+ pixel_y = -7
+ },
+/turf/closed/wall,
+/area/station/medical/pharmacy)
+"kWP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"kWU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"kWV" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "Bridge Blast Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "bridge-left"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"kWZ" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 1
+ },
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"kXa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/urinal/directional/west,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"kXp" = (
+/obj/machinery/camera/autoname{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/landmark/start/depsec/engineering,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"kXt" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"kXx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kXA" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"kXD" = (
+/obj/structure/bed/medical/emergency,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Medbay Foyer";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"kXG" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"kXU" = (
+/obj/structure/closet/crate/necropolis{
+ desc = "Presumably placed here by top men.";
+ name = "\improper Ark of the Covenant"
+ },
+/obj/item/toy/clockwork_watch{
+ desc = "An ancient piece of machinery, made from an unknown metal by an unknown maker.";
+ name = "\improper Ancient Relic"
+ },
+/mob/living/basic/pet/dog/corgi{
+ desc = "Make sure you give him plenty of bellyrubs, or he'll melt your skin off.";
+ name = "\improper Keeper of the Ark"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kXY" = (
+/obj/effect/turf_decal/trimline/purple/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"kYd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"kYg" = (
+/turf/closed/wall,
+/area/station/security/office)
+"kYn" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"kYo" = (
+/obj/machinery/power/turbine/turbine_outlet{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"kYv" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"kYD" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"kYG" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter/room)
+"kYH" = (
+/obj/machinery/light/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"kYP" = (
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kYU" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/ordnance/office)
+"kZk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"kZn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"kZq" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"kZx" = (
+/turf/closed/wall,
+/area/station/science/lab)
+"kZF" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"kZG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"kZI" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/turf_decal/bot_white,
+/obj/structure/closet/crate,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"laa" = (
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"laf" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"lah" = (
+/obj/structure/rack,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lak" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"lav" = (
+/obj/structure/girder,
+/obj/effect/spawner/random/structure/grille,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lay" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"laE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/pumproom)
+"laI" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"laK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"laL" = (
+/obj/machinery/door/airlock{
+ name = "Maintenance Bathroom"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"laT" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden,
+/obj/machinery/door/airlock{
+ name = "Kitchen Cold Room"
+ },
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/service/kitchen,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen/coldroom)
+"lbh" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/light/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/prison/visit)
+"lbH" = (
+/mob/living/basic/chicken{
+ name = "Featherbottom";
+ real_name = "Featherbottom"
+ },
+/obj/structure/flora/bush/fullgrass,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"lbL" = (
+/obj/effect/decal/cleanable/insectguts,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"lbX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/structure/sign/poster/random/directional/north,
+/obj/effect/spawner/random/structure/musician/piano/random_piano,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"lcG" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"lcJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"ldc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"ldg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/siding/wideplating_new/corner,
+/obj/effect/turf_decal/tile/green,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"lds" = (
+/obj/structure/table,
+/obj/item/storage/fancy/egg_box,
+/obj/item/reagent_containers/condiment/flour,
+/obj/item/reagent_containers/condiment/rice,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"ldJ" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ldK" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"ldO" = (
+/obj/effect/landmark/blobstart,
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ldP" = (
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/command/storage/satellite)
+"ldQ" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"lek" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"lew" = (
+/obj/machinery/power/smes/full,
+/obj/structure/cable,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"leP" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"lfc" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"lfk" = (
+/obj/effect/turf_decal/trimline/yellow/filled/end{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron/textured,
+/area/station/medical/chem_storage)
+"lfm" = (
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron/freezer,
+/area/station/security/prison/shower)
+"lfu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"lfG" = (
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"lge" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"lgg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"lgj" = (
+/obj/structure/bed/medical{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/security/execution/transfer)
+"lgl" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"lgw" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/obj/machinery/camera/directional/east{
+ c_tag = "Medbay Main Hallway - CMO";
+ network = list("ss13","medbay")
+ },
+/obj/structure/noticeboard/cmo{
+ dir = 4;
+ pixel_x = 32
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"lgC" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"lgL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"lgS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"lgT" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"lhk" = (
+/obj/structure/table,
+/obj/item/storage/medkit/brute,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"lhD" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"lhF" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"lhT" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"lia" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"lih" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/theater)
+"liz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"liC" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"liD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"liL" = (
+/obj/structure/table,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"liO" = (
+/obj/structure/cable,
+/obj/machinery/bluespace_vendor/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"liU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/railing{
+ dir = 9
+ },
+/obj/machinery/disposal/bin/tagger,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"liX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"lje" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ljf" = (
+/obj/structure/table,
+/obj/item/wirecutters,
+/obj/item/screwdriver{
+ pixel_x = -2;
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/syndicatebomb/training,
+/turf/open/floor/iron,
+/area/station/security/office)
+"ljm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ljq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"ljD" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"ljF" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"ljH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"ljL" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"lkc" = (
+/obj/machinery/barsign,
+/turf/closed/wall,
+/area/station/commons/lounge)
+"lku" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"lkW" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"llk" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/station/solars/port/aft)
+"lln" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"lls" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/obj/effect/spawner/random/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"llC" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/glass/reinforced,
+/area/station/science/research)
+"llU" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"lma" = (
+/obj/structure/chair/stool/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"lmk" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"lmn" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"lmx" = (
+/obj/machinery/light_switch/directional/west,
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/food/grown/poppy{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/food/grown/poppy{
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/item/flashlight/flare/candle{
+ pixel_x = 12;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"lmF" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"lmL" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Abandoned Warehouse"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lmT" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"lnc" = (
+/turf/closed/wall,
+/area/station/commons/dorms)
+"lnu" = (
+/obj/structure/table,
+/obj/item/clipboard,
+/obj/item/toy/figure/scientist,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"lnH" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/primary/fore)
+"lnM" = (
+/obj/item/reagent_containers/cup/bucket,
+/obj/item/mop,
+/obj/item/reagent_containers/cup/bottle/ammonia,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"lnP" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"lnR" = (
+/obj/structure/table,
+/obj/effect/spawner/random/decoration/ornament,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"lnT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"lnX" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"loh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"loA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"loR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"loW" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/any/security/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"loY" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/obj/effect/spawner/random/armory/dragnet,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"lpo" = (
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"lpp" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible,
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"lpt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"lpA" = (
+/obj/machinery/air_sensor/nitrogen_tank,
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"lpD" = (
+/obj/machinery/biogenerator,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lpN" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "viro-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/medical/medbay/central)
+"lpR" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/item/computer_disk/ordnance,
+/obj/item/computer_disk/ordnance,
+/obj/item/computer_disk/ordnance,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"lpS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lqh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"lqL" = (
+/obj/effect/turf_decal/siding{
+ dir = 1
+ },
+/obj/machinery/computer/rdconsole,
+/turf/open/floor/iron/dark,
+/area/station/science/lab)
+"lqQ" = (
+/turf/closed/wall,
+/area/station/service/hydroponics/garden)
+"lqT" = (
+/obj/structure/table,
+/obj/item/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"lqW" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/cold/directional/east,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"lrh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/security/prison)
+"lro" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 4;
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"lrp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"lrK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"lrL" = (
+/obj/item/taperecorder,
+/obj/item/camera,
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/south,
+/obj/structure/sign/painting/library_private{
+ pixel_x = -32;
+ pixel_y = -32
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"lrR" = (
+/obj/machinery/light/directional/south,
+/obj/structure/bed/medical/emergency,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"lrZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chem_lockdown";
+ name = "Chemistry Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"lsf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/service/hop_office,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"lsJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/side,
+/area/station/medical/medbay/central)
+"lsP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"lsU" = (
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/table,
+/obj/item/stack/package_wrap{
+ pixel_x = -2;
+ pixel_y = 1
+ },
+/obj/effect/spawner/random/bureaucracy/birthday_wrap{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/dest_tagger{
+ pixel_x = 7;
+ pixel_y = 1
+ },
+/obj/item/stack/wrapping_paper{
+ pixel_x = -4;
+ pixel_y = -7
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"lsV" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/dna_scannernew,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"lta" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/meter,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"ltb" = (
+/obj/machinery/vending/security,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"ltg" = (
+/obj/structure/chair/stool/directional/north,
+/obj/machinery/camera/directional/west{
+ c_tag = "Solar Maintenance - Fore Starboard"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"ltm" = (
+/obj/machinery/atmospherics/components/tank/oxygen{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"ltv" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"ltW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/paper,
+/obj/machinery/door/window/left/directional/south{
+ name = "Hydroponics Window";
+ req_access = list("hydroponics")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/item/pen,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "hydro_service";
+ name = "Service Shutter"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"ltX" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"lug" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"lup" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/flasher/directional/south{
+ id = "AI";
+ pixel_x = 26
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"lus" = (
+/obj/structure/closet/athletic_mixed,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"luF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"luN" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/closet/secure_closet/security/med,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"luV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/window/right/directional/west{
+ name = "Shooting Range"
+ },
+/turf/open/floor/iron,
+/area/station/security/range)
+"lvh" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/warning,
+/obj/effect/turf_decal/caution/stand_clear/red,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"lvs" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"lvu" = (
+/obj/machinery/door/window/left/directional/east{
+ name = "Infirmary"
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"lvU" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet4";
+ name = "Unit 4"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"lvY" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/vending/boozeomat/all_access,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"lvZ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/security/glass{
+ name = "Security Office"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"lwg" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"lwm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"lwt" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_y = 3
+ },
+/obj/item/radio/intercom/command/directional/north,
+/obj/item/paper/fluff/jobs/engineering/frequencies,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"lwx" = (
+/obj/structure/flora/bush/sunny/style_random,
+/obj/machinery/camera/directional/north{
+ c_tag = "Virology Test Subject Chamber";
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"lxf" = (
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/button/door/directional/west{
+ id = "Cabin5";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"lxm" = (
+/obj/machinery/atmospherics/components/trinary/mixer/airmix{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lxp" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"lxt" = (
+/obj/item/cigbutt,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lxv" = (
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Technical Storage - Secure"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"lxM" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"lyu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison)
+"lyx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/bed/medical/emergency,
+/obj/machinery/light/cold/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"lyF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/security/office)
+"lyL" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"lyN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"lzJ" = (
+/obj/structure/cable,
+/turf/open/floor/iron/solarpanel/airless,
+/area/station/solars/port/aft)
+"lzL" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"lzM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"lzU" = (
+/obj/structure/table/glass,
+/obj/machinery/light/small/directional/south,
+/obj/item/folder/white{
+ pixel_y = 4
+ },
+/obj/item/pen/red,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"lAa" = (
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/caution,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"lAe" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine,
+/area/station/command/heads_quarters/rd)
+"lAh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"lAi" = (
+/obj/machinery/disposal/delivery_chute{
+ dir = 1;
+ name = "Security Deliveries"
+ },
+/obj/structure/plasticflaps{
+ name = "Security Deliveries"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/departments/security/directional/south{
+ color = "#DE3A3A"
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"lAu" = (
+/turf/open/space/basic,
+/area/space/nearstation)
+"lAH" = (
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Research Director Observation";
+ req_access = list("rd")
+ },
+/turf/open/floor/engine,
+/area/station/command/heads_quarters/rd)
+"lAM" = (
+/turf/closed/wall/r_wall,
+/area/station/security/brig)
+"lAY" = (
+/obj/structure/closet{
+ name = "evidence closet 5"
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"lBg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/vault{
+ name = "Vault"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/landmark/navigate_destination,
+/obj/effect/mapping_helpers/airlock/access/all/supply/vault,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"lBm" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"lBA" = (
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"lBN" = (
+/obj/machinery/computer/security/telescreen/tcomms/directional/east,
+/obj/machinery/computer/telecomms/monitor{
+ dir = 8;
+ network = "tcommsat"
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"lCb" = (
+/obj/structure/cable,
+/obj/structure/sign/poster/ripped/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lCG" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"lCN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lDe" = (
+/obj/machinery/door/poddoor/shutters/window{
+ id = "armory";
+ name = "Armory Shutters"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"lDj" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/obj/structure/closet/l3closet,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"lDo" = (
+/obj/item/radio/off,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"lDA" = (
+/obj/structure/closet/wardrobe/black,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"lDP" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"lEr" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"lEu" = (
+/obj/effect/spawner/random/engineering/tank,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"lEF" = (
+/obj/structure/frame/machine,
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"lEH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"lEP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"lFo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"lFq" = (
+/obj/structure/sign/warning/biohazard,
+/turf/closed/wall/r_wall,
+/area/station/science/cytology)
+"lFs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"lFF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lFZ" = (
+/obj/structure/chair/pew/right,
+/turf/open/floor/iron/chapel{
+ dir = 4
+ },
+/area/station/service/chapel)
+"lGj" = (
+/obj/machinery/vending/wardrobe/det_wardrobe,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"lGL" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"lGR" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lGS" = (
+/obj/docking_port/stationary/public_mining_dock,
+/turf/open/floor/plating,
+/area/station/construction/mining/aux_base)
+"lGT" = (
+/obj/structure/sign/departments/science/directional/east{
+ name = "\improper ROBOTICS!"
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"lHe" = (
+/obj/machinery/reagentgrinder{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"lHh" = (
+/obj/structure/cable,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"lHk" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"lHx" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"lHK" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"lIa" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/folder,
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/station/service/library)
+"lIc" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"lIB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/entertainment/lighter,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"lIX" = (
+/obj/structure/chair/comfy/brown,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"lJh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"lJj" = (
+/obj/structure/showcase/cyborg/old{
+ pixel_y = 20
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"lJm" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small/directional/west,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/landmark/start/assistant,
+/obj/effect/landmark/start/hangover,
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_x = -32;
+ spawn_loot_chance = 50
+ },
+/obj/machinery/button/door/directional/west{
+ id = "Toilet3";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"lJn" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"lJr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"lKu" = (
+/obj/effect/landmark/carpspawn,
+/turf/open/space/basic,
+/area/space)
+"lKA" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"lKN" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"lKZ" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"lLk" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"lLq" = (
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"lLu" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"lLw" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "Shower"
+ },
+/obj/machinery/shower/directional/south,
+/obj/structure/curtain,
+/turf/open/floor/iron/freezer,
+/area/station/commons/fitness/recreation)
+"lLB" = (
+/obj/structure/table/glass,
+/obj/item/wrench,
+/obj/item/crowbar,
+/obj/item/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"lLC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"lLF" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Central Primary Hallway - Port"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"lLG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"lLR" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"lMh" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/trimline/neutral/end,
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/service/chapel/office)
+"lMq" = (
+/turf/open/misc/asteroid/basalt/airless,
+/area/space/nearstation)
+"lMC" = (
+/obj/machinery/computer/atmos_control/oxygen_tank{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lMI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Departure Lounge"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"lMJ" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"lMW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lMY" = (
+/obj/machinery/shower/directional/east,
+/obj/machinery/light/small/directional/south,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"lNb" = (
+/obj/structure/closet,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lNf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"lNh" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Prison Sanitarium"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/brig,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"lNF" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"lNH" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"lNO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"lNP" = (
+/obj/effect/turf_decal/box/white{
+ color = "#9FED58"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"lNW" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/security/office)
+"lNX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/office)
+"lNY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lOg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"lOl" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix Outlet Pump"
+ },
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/structure/window/spawner/directional/east,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lOr" = (
+/obj/effect/landmark/start/geneticist,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"lOA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics - External Airlock"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"lOK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lOU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"lOZ" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"lPa" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"lPc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"lPi" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"lPl" = (
+/obj/machinery/light/directional/west,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/office)
+"lPn" = (
+/obj/machinery/light/small/dim/directional/north,
+/obj/structure/rack,
+/obj/item/pushbroom,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp,
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"lPt" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Jetpack Storage";
+ pixel_x = -1;
+ req_access = list("eva")
+ },
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/item/tank/jetpack/carbondioxide,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"lPy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/spawner/random/structure/crate,
+/obj/machinery/light/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"lPz" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/experimentor_lab,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"lPB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/spawner/random/structure/twelve_percent_spirit_board,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"lPC" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/box/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"lPJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 6
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"lPS" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio8";
+ name = "Xenobio Pen 8 Blast Doors";
+ pixel_y = 4;
+ req_access = list("xenobiology")
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 10;
+ pixel_y = -1
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"lPZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "council blast";
+ name = "Council Blast Doors"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/bridge)
+"lQf" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"lQm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"lQp" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison/visit)
+"lQC" = (
+/obj/structure/closet/l3closet/security,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"lQI" = (
+/obj/effect/spawner/random/trash/caution_sign,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"lQW" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"lRA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"lRS" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"lRT" = (
+/obj/structure/sign/directions/evac,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/medical/central)
+"lSw" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/science/cytology)
+"lSy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"lSz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"lTi" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera/directional/south{
+ c_tag = "Xenobiology Lab - Central North";
+ network = list("ss13","rd","xeno")
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"lTj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"lTq" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"lTA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"lTB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"lTE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"lTM" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"lTR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white/side,
+/area/station/medical/treatment_center)
+"lUj" = (
+/obj/structure/table,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"lUp" = (
+/obj/structure/sink/kitchen/directional/south{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/starboard/lesser)
+"lUx" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"lUz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"lUD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/spawner/random/structure/chair_flipped,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/aft/lesser)
+"lUK" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Dormitories - Aft"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"lUS" = (
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"lUY" = (
+/obj/machinery/shower/directional/west,
+/turf/open/floor/iron/freezer,
+/area/station/security/prison/shower)
+"lVe" = (
+/obj/machinery/mass_driver/trash{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"lVl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"lVp" = (
+/turf/closed/wall,
+/area/station/cargo/lobby)
+"lVB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"lVH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ id = "commissaryshutter";
+ name = "Vacant Commissary Shutter"
+ },
+/obj/structure/noticeboard/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"lVM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"lWa" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"lWd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"lWg" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/item/folder/red,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/folder/blue,
+/obj/item/clothing/glasses/sunglasses/big,
+/obj/item/stamp/law,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"lWm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"lWq" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"lWG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"lWL" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"lWM" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Lab - Pen #6";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"lWN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/warning/vacuum/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"lXl" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"lXm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"lXr" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"lXu" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"lXA" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"lXG" = (
+/obj/machinery/door/airlock/external/glass{
+ name = "Supply Door Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/general,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"lXL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/meter,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"lXN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"lXS" = (
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"lYc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/exit/departure_lounge)
+"lYk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/science/ordnance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"lYx" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"lYG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"lYH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/starboard/lesser)
"lYL" = (
/obj/effect/turf_decal/tile/blue{
@@ -33986,6 +62431,15 @@
},
/turf/open/floor/engine,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
+=======
+"lZM" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/glass/shaker,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lZV" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -34140,6 +62594,23 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/dark,
/area/station/security/mechbay)
+<<<<<<< HEAD
+=======
+"mcF" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio4";
+ name = "Xenobio Pen 4 Blast Doors";
+ pixel_y = 4;
+ req_access = list("xenobiology");
+ sync_doors = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mcP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -34185,6 +62656,7 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
"mdv" = (
/obj/effect/landmark/blobstart,
/obj/effect/turf_decal/stripes/line{
@@ -34193,6 +62665,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mdy" = (
/obj/effect/landmark/blobstart,
/obj/structure/cable,
@@ -34208,11 +62682,14 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
"mdW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mei" = (
/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
/turf/open/floor/iron,
@@ -34286,6 +62763,18 @@
/obj/structure/cable/layer3,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
+=======
+"mgo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/gambling,
+/obj/effect/spawner/random/entertainment/gambling,
+/obj/effect/spawner/random/entertainment/gambling,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mgv" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -34327,6 +62816,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/storage)
+<<<<<<< HEAD
"mhu" = (
/obj/structure/cable,
/obj/structure/extinguisher_cabinet/directional/east,
@@ -34335,6 +62825,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mhA" = (
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/west,
@@ -34352,6 +62844,25 @@
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
+=======
+"mhM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/obj/machinery/door/window/right/directional/south{
+ name = "Cargo Desk";
+ req_access = list("shipping")
+ },
+/obj/item/newspaper{
+ pixel_x = -5
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mhR" = (
/obj/machinery/light/small/directional/south,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -34370,6 +62881,13 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/department/engine)
+<<<<<<< HEAD
+=======
+"mie" = (
+/obj/structure/flora/bush/flowers_yw,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mig" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/preopen{
@@ -34405,6 +62923,7 @@
},
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"miq" = (
/obj/effect/turf_decal/siding/wideplating_new{
dir = 4
@@ -34418,6 +62937,8 @@
/obj/machinery/button/ignition/incinerator/atmos,
/turf/closed/wall/r_wall,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mix" = (
/obj/structure/frame/machine,
/obj/item/circuitboard/machine/chem_master,
@@ -34452,6 +62973,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/surgery/aft)
+<<<<<<< HEAD
"miY" = (
/obj/structure/table,
/obj/item/papercutter{
@@ -34468,6 +62990,8 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mjd" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -34518,6 +63042,7 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"mkB" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/disposalpipe/segment{
@@ -34526,6 +63051,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mkO" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -34536,6 +63063,7 @@
/obj/effect/turf_decal/tile/yellow/fourcorners,
/turf/open/floor/iron/textured,
/area/station/medical/chem_storage)
+<<<<<<< HEAD
"mkU" = (
/obj/machinery/atmospherics/components/binary/pump/on,
/obj/machinery/light/small/directional/east,
@@ -34544,6 +63072,8 @@
},
/turf/open/floor/engine,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mlu" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -34570,6 +63100,13 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"mlH" = (
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mlK" = (
/obj/item/radio/intercom/directional/west,
/obj/effect/turf_decal/tile/red{
@@ -34577,18 +63114,29 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
"mlY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mma" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair/stool/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/service/janitor)
+<<<<<<< HEAD
+=======
+"mml" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mmm" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -34597,6 +63145,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
"mmt" = (
/obj/effect/spawner/random/structure/crate,
/obj/effect/turf_decal/bot_white,
@@ -34613,6 +63162,8 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/wood,
/area/station/maintenance/port/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mmA" = (
/obj/effect/turf_decal/trimline/red/filled/line,
/obj/machinery/camera/directional/south{
@@ -34655,12 +63206,15 @@
},
/turf/open/floor/iron/checker,
/area/station/science/research)
+<<<<<<< HEAD
"mmN" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/sign/poster/contraband/random/directional/east,
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
/area/station/maintenance/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mmR" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -34762,6 +63316,23 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
+=======
+"mnP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mnU" = (
/obj/machinery/firealarm/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -34769,6 +63340,7 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
"mor" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -34781,6 +63353,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mos" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 1
@@ -34861,6 +63435,21 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/chapel,
/area/station/service/chapel)
+<<<<<<< HEAD
+=======
+"mqn" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/button/door/directional/west{
+ id = "Disposal Exit";
+ name = "Disposal Vent Control";
+ req_access = list("maint_tunnels")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mqu" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/landmark/start/hangover,
@@ -34892,10 +63481,13 @@
},
/turf/open/floor/iron,
/area/station/security/execution/transfer)
+<<<<<<< HEAD
"mrj" = (
/obj/item/toy/beach_ball/branded,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mru" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/disposalpipe/segment{
@@ -34911,6 +63503,15 @@
/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
+=======
+"mrG" = (
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/lighter,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mrJ" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -34931,6 +63532,7 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
"mrU" = (
/obj/effect/landmark/generic_maintenance_landmark,
/obj/effect/turf_decal/stripes/line{
@@ -34951,6 +63553,8 @@
/obj/effect/mapping_helpers/mail_sorting/supply/disposals,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"msd" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
@@ -34960,11 +63564,14 @@
/obj/structure/altar_of_gods,
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+<<<<<<< HEAD
"msn" = (
/obj/structure/lattice/catwalk,
/obj/item/toy/figure/cargotech,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"msu" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
@@ -34984,11 +63591,27 @@
/obj/machinery/status_display/ai/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/surgery/aft)
+<<<<<<< HEAD
+=======
+"msJ" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/structure/cable,
+/obj/machinery/requests_console/directional/south{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"msN" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/station/maintenance/department/science/xenobiology)
+<<<<<<< HEAD
"msQ" = (
/obj/effect/spawner/random/maintenance,
/obj/structure/disposalpipe/junction{
@@ -34996,11 +63619,22 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"msR" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"msT" = (
+/obj/structure/table,
+/obj/item/food/mint,
+/obj/item/reagent_containers/cup/beaker/large,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mta" = (
/obj/machinery/camera/directional/north{
c_tag = "Starboard Primary Hallway - tech_storage"
@@ -35016,6 +63650,19 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
+=======
+"mtb" = (
+/obj/structure/table/wood,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/item/folder/blue,
+/obj/item/clothing/head/collectable/hop{
+ name = "novelty HoP hat"
+ },
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mtj" = (
/obj/machinery/medical_kiosk,
/obj/effect/turf_decal/siding/white,
@@ -35050,6 +63697,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
"mtV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -35058,6 +63706,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mtZ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -35085,6 +63735,19 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
+<<<<<<< HEAD
+=======
+"mun" = (
+/obj/structure/showcase/machinery/tv{
+ dir = 1;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mup" = (
/obj/machinery/door/airlock/maintenance{
name = "Storage Room"
@@ -35096,6 +63759,15 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"muq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mur" = (
/obj/machinery/light/directional/north,
/obj/machinery/status_display/evac/directional/north,
@@ -35129,6 +63801,20 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"muZ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Departure Lounge - Port Fore"
+ },
+/obj/item/kirbyplants/organic/plant24,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mvg" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -35137,6 +63823,7 @@
},
/turf/open/floor/carpet,
/area/station/service/library)
+<<<<<<< HEAD
"mvm" = (
/obj/structure/table,
/obj/item/stack/package_wrap,
@@ -35149,11 +63836,14 @@
/obj/machinery/light/cold/directional/west,
/turf/open/floor/iron/dark,
/area/station/command/teleporter)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mvo" = (
/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
/obj/machinery/light/floor,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"mvr" = (
/obj/structure/table/reinforced,
/obj/item/stack/sheet/plasteel{
@@ -35177,6 +63867,8 @@
/obj/structure/sign/poster/contraband/random/directional/west,
/turf/open/floor/wood,
/area/station/service/theater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mvN" = (
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line,
@@ -35196,6 +63888,7 @@
/obj/effect/turf_decal/trimline/blue/filled/line,
/turf/open/floor/iron/white,
/area/station/medical/office)
+<<<<<<< HEAD
"mwi" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access"
@@ -35216,6 +63909,43 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+"mvZ" = (
+/obj/machinery/light/directional/south,
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/wrench,
+/obj/item/multitool,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/incident_display/bridge/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"mwj" = (
+/obj/machinery/computer/records/security{
+ dir = 4
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/west,
+/obj/machinery/requests_console/directional/north{
+ department = "Head of Security's Desk";
+ name = "Head of Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/button/door/directional/north{
+ id = "hosspace";
+ name = "Space Shutters Control";
+ pixel_x = -24
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mwm" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/turf_decal/stripes/line{
@@ -35223,6 +63953,17 @@
},
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
+=======
+"mwo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mww" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -35231,6 +63972,17 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"mwP" = (
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mwY" = (
/obj/effect/spawner/random/trash/garbage,
/obj/effect/landmark/generic_maintenance_landmark,
@@ -35245,6 +63997,7 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/freezer,
/area/station/security/prison/shower)
+<<<<<<< HEAD
"mxk" = (
/obj/structure/table,
/obj/item/folder/yellow,
@@ -35259,6 +64012,8 @@
/obj/item/paper/pamphlet/gateway,
/turf/open/floor/iron,
/area/station/command/gateway)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mxn" = (
/turf/closed/wall/r_wall,
/area/station/command/heads_quarters/hos)
@@ -35279,6 +64034,16 @@
/obj/structure/window/spawner/directional/south,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"mxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mxI" = (
/obj/structure/disposalpipe/junction/flip,
/obj/structure/cable,
@@ -35321,6 +64086,19 @@
/obj/effect/turf_decal/tile/red/opposingcorners,
/turf/open/floor/iron,
/area/station/security/checkpoint/science)
+<<<<<<< HEAD
+=======
+"myG" = (
+/obj/structure/sign/directions/evac,
+/obj/structure/sign/directions/medical{
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"myH" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 1
@@ -35328,11 +64106,14 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/security/prison)
+<<<<<<< HEAD
"myS" = (
/obj/structure/sign/warning/vacuum/external/directional/north,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"myY" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -35345,12 +64126,15 @@
/obj/machinery/vending/autodrobe/all_access,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
"mzc" = (
/obj/structure/table/reinforced,
/obj/effect/spawner/random/entertainment/lighter,
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mzg" = (
/obj/structure/cable,
/obj/effect/turf_decal/siding/red,
@@ -35358,6 +64142,39 @@
/obj/effect/turf_decal/tile/red/opposingcorners,
/turf/open/floor/iron,
/area/station/security/checkpoint/science)
+<<<<<<< HEAD
+=======
+"mzj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"mzm" = (
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table.";
+ pixel_x = -8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/condiment/enzyme{
+ pixel_x = 9;
+ pixel_y = 3
+ },
+/obj/item/book/manual/chef_recipes,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mzu" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -35387,12 +64204,15 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/prison/visit)
+<<<<<<< HEAD
"mzY" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mAb" = (
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
@@ -35584,6 +64404,7 @@
/obj/structure/window/spawner/directional/south,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"mDi" = (
/obj/structure/lattice/catwalk,
/obj/item/reagent_containers/cup/glass/bottle/rum{
@@ -35603,6 +64424,8 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mDu" = (
/obj/structure/cable,
/obj/effect/landmark/start/hangover,
@@ -35621,6 +64444,22 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"mDC" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio5";
+ name = "Xenobio Pen 5 Blast Doors";
+ pixel_y = 4;
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mDL" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/delivery,
@@ -35672,6 +64511,7 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron,
/area/station/security/checkpoint/engineering)
+<<<<<<< HEAD
"mEI" = (
/obj/structure/table,
/obj/effect/spawner/random/food_or_drink/cake_ingredients,
@@ -35684,6 +64524,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/solars/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mEL" = (
/obj/effect/spawner/random/structure/closet_maintenance,
/turf/open/floor/plating,
@@ -35752,6 +64594,7 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/station/engineering/main)
+<<<<<<< HEAD
"mFq" = (
/obj/machinery/camera/directional/east{
c_tag = "Theater - Stage"
@@ -35765,6 +64608,8 @@
/obj/structure/sign/poster/random/directional/south,
/turf/open/floor/wood/large,
/area/station/service/theater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mFr" = (
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating/airless,
@@ -35880,6 +64725,7 @@
/obj/machinery/vending/modularpc,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
"mHH" = (
/obj/structure/table,
/obj/item/multitool{
@@ -35904,6 +64750,8 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/engineering/atmos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mHK" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -35967,6 +64815,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"mJf" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -35975,6 +64824,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mJk" = (
/obj/structure/cable,
/obj/machinery/holopad,
@@ -36053,6 +64904,7 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"mKh" = (
/obj/structure/sign/poster/contraband/random/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -36072,6 +64924,8 @@
/obj/effect/mapping_helpers/airlock/access/all/security/general,
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mKu" = (
/obj/machinery/light_switch/directional/west,
/obj/structure/cable,
@@ -36100,6 +64954,21 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"mLp" = (
+/obj/effect/landmark/start/quartermaster,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/diagonal_centre,
+/obj/effect/turf_decal/tile/yellow/diagonal_edge,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/diagonal,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mLu" = (
/obj/machinery/camera/directional/south{
c_tag = "Science Hallway - RD Office";
@@ -36215,6 +65084,7 @@
},
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
"mMI" = (
/obj/structure/extinguisher_cabinet/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -36227,6 +65097,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mMK" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -36265,6 +65137,7 @@
/obj/machinery/camera/directional/north,
/turf/open/floor/iron,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
"mNw" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
@@ -36279,6 +65152,8 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mNO" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/light_construct/directional/west,
@@ -36302,12 +65177,15 @@
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
"mOX" = (
/obj/structure/table,
/obj/item/food/mint,
/obj/item/reagent_containers/cup/beaker/large,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mPh" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36373,6 +65251,7 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/station/security/range)
+<<<<<<< HEAD
"mPX" = (
/obj/machinery/chem_dispenser,
/obj/machinery/button/door/directional/north{
@@ -36384,6 +65263,20 @@
/obj/effect/turf_decal/tile/yellow/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+"mQa" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Port Primary Hallway - Middle"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mQe" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
@@ -36533,6 +65426,33 @@
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"mSI" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/ai_upload";
+ icon_state = "control_stun";
+ name = "AI Upload Turret Control";
+ pixel_y = 28
+ },
+/obj/item/radio/intercom/directional/north{
+ broadcasting = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = -26
+ },
+/obj/effect/landmark/start/cyborg,
+/obj/machinery/light/small/directional/west,
+/obj/machinery/computer/security/telescreen/aiupload/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mSM" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -36640,6 +65560,7 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
/turf/open/floor/iron/dark,
/area/station/engineering/atmospherics_engine)
+<<<<<<< HEAD
"mUM" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
/obj/effect/decal/cleanable/dirt,
@@ -36654,10 +65575,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mUQ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/engineering/atmospherics_engine)
+<<<<<<< HEAD
"mVo" = (
/obj/item/cultivator,
/obj/item/crowbar,
@@ -36669,6 +65593,26 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+"mVf" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mVp" = (
/obj/machinery/power/port_gen/pacman/pre_loaded,
/obj/effect/mapping_helpers/broken_floor,
@@ -36714,6 +65658,7 @@
/obj/structure/cable,
/turf/open/floor/wood,
/area/station/service/bar/backroom)
+<<<<<<< HEAD
"mWe" = (
/obj/structure/cable,
/obj/machinery/netpod,
@@ -36721,6 +65666,14 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/cargo/bitrunning/den)
+=======
+"mWd" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mWA" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -36756,6 +65709,7 @@
/obj/structure/window/spawner/directional/west,
/turf/open/floor/iron/dark,
/area/station/medical/storage)
+<<<<<<< HEAD
"mWD" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -36766,6 +65720,8 @@
/obj/structure/fake_stairs/directional/north,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mWU" = (
/turf/open/floor/iron,
/area/station/maintenance/space_hut)
@@ -36777,6 +65733,23 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
+=======
+"mWY" = (
+/obj/item/bodypart/chest/robot{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/bodypart/head/robot{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mWZ" = (
/obj/item/folder/red,
/obj/item/pen,
@@ -36838,6 +65811,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"mXK" = (
/obj/item/food/grown/wheat,
/obj/item/food/grown/watermelon,
@@ -36853,6 +65827,21 @@
"mYa" = (
/turf/open/floor/iron/dark/textured_large,
/area/station/science/cytology)
+=======
+"mXO" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "qmroom"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/qm)
+"mYb" = (
+/obj/structure/chair,
+/obj/machinery/computer/security/telescreen/interrogation/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/security/interrogation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mYq" = (
/obj/effect/turf_decal/plaque{
icon_state = "L8"
@@ -36914,6 +65903,41 @@
},
/turf/open/floor/iron/dark,
/area/station/security/office)
+<<<<<<< HEAD
+=======
+"mZc" = (
+/obj/structure/table/wood,
+/obj/item/clothing/head/costume/sombrero/green,
+/obj/structure/sign/poster/random/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"mZz" = (
+/obj/machinery/light/directional/west,
+/obj/structure/table,
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_x = 8
+ },
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mZC" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -36988,6 +66012,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/central)
+<<<<<<< HEAD
"naI" = (
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/north,
@@ -36998,6 +66023,8 @@
},
/turf/open/floor/carpet,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"naN" = (
/obj/machinery/button/door/directional/west{
id = "transitlockdown";
@@ -37014,6 +66041,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/ce)
+<<<<<<< HEAD
+=======
+"nbd" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nbJ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -37021,6 +66057,7 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+<<<<<<< HEAD
"nbM" = (
/obj/machinery/conveyor/inverted{
dir = 10;
@@ -37032,6 +66069,8 @@
/obj/structure/railing,
/turf/open/floor/plating,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nbS" = (
/obj/structure/table,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -37101,6 +66140,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
"nco" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -37110,6 +66150,8 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ncq" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -37190,6 +66232,7 @@
/obj/structure/window/spawner/directional/south,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"ndv" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/button/door/directional/west{
@@ -37202,6 +66245,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ndI" = (
/obj/item/kirbyplants/organic/plant20,
/obj/effect/turf_decal/stripes/line{
@@ -37287,6 +66332,7 @@
},
/turf/open/floor/iron,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
"nfC" = (
/obj/structure/table,
/obj/machinery/button/door{
@@ -37300,6 +66346,8 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/iron,
/area/station/science/xenobiology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nfK" = (
/obj/structure/toilet{
pixel_y = 8
@@ -37355,12 +66403,15 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/security/prison)
+<<<<<<< HEAD
"nhe" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nhh" = (
/obj/structure/table/wood,
/obj/item/gavelblock,
@@ -37370,6 +66421,7 @@
},
/turf/open/floor/iron,
/area/station/security/courtroom)
+<<<<<<< HEAD
"nhP" = (
/turf/open/floor/circuit/green,
/area/station/ai_monitored/turret_protected/ai_upload)
@@ -37385,6 +66437,32 @@
/obj/item/circuitboard/mecha/ripley/peripherals,
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+=======
+"nhr" = (
+/obj/structure/table,
+/obj/item/folder/white,
+/obj/item/stamp/head/rd,
+/obj/item/toy/figure/rd{
+ pixel_y = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"nhP" = (
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"nhS" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/sign/poster/official/random/directional/east,
+/turf/open/floor/plating,
+/area/station/commons/toilet/auxiliary)
+"nhU" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/porta_turret/ai,
+/obj/machinery/computer/security/telescreen/research/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nib" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -37452,6 +66530,7 @@
},
/turf/open/floor/circuit/green,
/area/station/science/robotics/mechbay)
+<<<<<<< HEAD
"njh" = (
/obj/effect/turf_decal/siding/thinplating_new/dark,
/obj/effect/turf_decal/trimline/brown/line,
@@ -37467,6 +66546,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/textured_half,
/area/station/cargo/bitrunning/den)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"njr" = (
/obj/structure/sign/poster/contraband/random/directional/north,
/obj/effect/spawner/random/engineering/tank,
@@ -37564,6 +66645,7 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/station/security/office)
+<<<<<<< HEAD
"nlK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37577,6 +66659,8 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nlP" = (
/obj/structure/table,
/obj/item/stock_parts/subspace/treatment,
@@ -37584,11 +66668,14 @@
/obj/item/stock_parts/subspace/treatment,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tcomms)
+<<<<<<< HEAD
"nlS" = (
/obj/structure/table/wood/poker,
/obj/item/storage/dice,
/turf/open/floor/wood,
/area/station/commons/lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nlT" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -37600,6 +66687,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
"nlY" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -37608,6 +66696,8 @@
/obj/structure/closet/crate,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nmf" = (
/obj/machinery/smartfridge,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -37634,6 +66724,7 @@
/obj/effect/mapping_helpers/airlock/access/any/command/general,
/turf/open/floor/wood,
/area/station/command/corporate_showroom)
+<<<<<<< HEAD
"nms" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37641,10 +66732,26 @@
/obj/machinery/photocopier,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nmF" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"nmI" = (
+/obj/machinery/light/directional/south,
+/obj/structure/rack,
+/obj/item/clothing/under/color/blue,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/neck/tie/blue,
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nmN" = (
/obj/structure/table,
/obj/item/hand_labeler,
@@ -37691,6 +66798,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/closed/wall/r_wall,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
+=======
+"nnh" = (
+/obj/machinery/light_switch/directional/south,
+/obj/structure/table/wood,
+/obj/item/razor{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/cigarette/cigar,
+/obj/item/reagent_containers/cup/glass/flask/gold,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nnl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/obj/structure/disposalpipe/segment{
@@ -37708,6 +66829,24 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/science/ordnance/office)
+<<<<<<< HEAD
+=======
+"nnq" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/table,
+/obj/machinery/firealarm/directional/north,
+/obj/item/stack/sheet/iron/five,
+/obj/item/radio/intercom/directional/east{
+ pixel_y = 8
+ },
+/obj/item/stack/cable_coil/five,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nnt" = (
/obj/effect/turf_decal/bot,
/obj/structure/cable,
@@ -37719,6 +66858,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"nnL" = (
/obj/machinery/light_switch/directional/south,
/obj/machinery/conveyor_switch/oneway{
@@ -37742,6 +66882,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nnR" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -37832,6 +66974,7 @@
},
/turf/open/floor/wood,
/area/station/commons/dorms)
+<<<<<<< HEAD
"noX" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -37860,6 +67003,8 @@
},
/turf/open/floor/wood/large,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"npv" = (
/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
dir = 4
@@ -37872,6 +67017,7 @@
/obj/structure/window/spawner/directional/east,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"npy" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -37883,6 +67029,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"npY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -37920,6 +67068,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
"nqC" = (
/obj/structure/disposalpipe/segment{
dir = 6
@@ -37927,6 +67076,8 @@
/obj/structure/railing,
/turf/open/floor/iron,
/area/station/cargo/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nqD" = (
/obj/structure/closet{
name = "evidence closet 2"
@@ -37999,6 +67150,26 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"nrB" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"nrM" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nrV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
/turf/open/floor/iron/dark,
@@ -38033,6 +67204,7 @@
},
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
"nsg" = (
/obj/item/radio/intercom/directional/west,
/obj/machinery/computer/records/security{
@@ -38055,6 +67227,13 @@
/obj/item/clothing/head/utility/welding,
/turf/open/floor/iron,
/area/station/science/robotics/mechbay)
+=======
+"nsh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nsk" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -38125,6 +67304,19 @@
},
/turf/open/floor/iron,
/area/station/security/execution/transfer)
+<<<<<<< HEAD
+=======
+"nsT" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nsZ" = (
/obj/structure/disposalpipe/segment{
dir = 5
@@ -38168,6 +67360,7 @@
/obj/machinery/duct,
/turf/open/floor/iron/white,
/area/station/medical/storage)
+<<<<<<< HEAD
"ntA" = (
/obj/machinery/door/airlock/external,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
@@ -38189,6 +67382,49 @@
/obj/machinery/door/airlock/security/glass{
name = "Brig Control"
},
+=======
+"ntm" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"ntA" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ntM" = (
+/obj/machinery/power/solar_control{
+ id = "foreport";
+ name = "Port Bow Solar Control"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"ntP" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Control"
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/cable,
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
@@ -38241,6 +67477,7 @@
/obj/structure/cable,
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 9
+<<<<<<< HEAD
},
/turf/open/floor/iron/white,
/area/station/medical/office)
@@ -38271,6 +67508,22 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
},
+=======
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"nut" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"nuB" = (
+/obj/structure/secure_safe/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/commons/vacant_room/commissary)
"nuI" = (
@@ -38328,6 +67581,16 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"nwa" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/effect/landmark/start/hangover/closet,
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/dorms)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nwl" = (
/obj/machinery/door/window/right/directional/north{
name = "Medical Deliveries";
@@ -38339,6 +67602,20 @@
/obj/structure/window/spawner/directional/east,
/turf/open/floor/iron/dark,
/area/station/medical/storage)
+<<<<<<< HEAD
+=======
+"nwm" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/effect/landmark/start/quartermaster,
+/obj/item/binoculars,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nwq" = (
/obj/structure/table,
/obj/machinery/firealarm/directional/south,
@@ -38347,6 +67624,7 @@
},
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
"nwx" = (
/obj/item/storage/box/matches{
pixel_x = -2;
@@ -38371,6 +67649,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nwC" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -38381,8 +67661,4133 @@
/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
/turf/closed/wall,
/area/station/engineering/atmos/pumproom)
+<<<<<<< HEAD
"nwT" = (
/obj/structure/disposalpipe/sorting/mail/flip{
+=======
+"nwL" = (
+/obj/machinery/computer/upload/ai,
+/obj/machinery/door/window/right/directional/south{
+ name = "Upload Console Window";
+ req_access = list("ai_upload")
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"nwT" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/mail_sorting/service/chapel,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"nwU" = (
+/obj/structure/cable,
+/obj/machinery/bluespace_vendor/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"nwV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/grunge{
+ name = "Courtroom"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"nxi" = (
+/obj/machinery/conveyor_switch/oneway{
+ dir = 8;
+ id = "garbage";
+ name = "disposal conveyor"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"nxu" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"nxy" = (
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"nxz" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nxA" = (
+/obj/effect/landmark/navigate_destination/bar,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/reagent_containers/cup/rag,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"nxF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"nxG" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"nxH" = (
+/obj/machinery/door/airlock{
+ name = "Bar"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/service/bar,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"nxO" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"nxU" = (
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"nyb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nyf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"nyy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"nyF" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Arrivals - Aft Arm"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"nyV" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"nyX" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"nyZ" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L7"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nzo" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nzz" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/spawner/random/clothing/costume,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nzD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"nzN" = (
+/obj/effect/landmark/navigate_destination,
+/turf/closed/wall/r_wall,
+/area/station/engineering/storage/tech)
+"nzP" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nzQ" = (
+/obj/structure/bed/medical/anchored{
+ dir = 8
+ },
+/obj/item/bedsheet/medical{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nzS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"nAb" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nAC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"nAG" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"nAN" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Cell 4"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/prison/safe)
+"nAW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"nBa" = (
+/obj/structure/cable,
+/turf/open/floor/iron/solarpanel/airless,
+/area/station/solars/starboard/aft)
+"nBf" = (
+/obj/item/wrench,
+/obj/item/stack/sheet/glass{
+ amount = 30
+ },
+/obj/item/stack/sheet/iron{
+ amount = 30
+ },
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/structure/closet,
+/obj/item/vending_refill/cigarette,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet/directional/south,
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"nBj" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+"nBp" = (
+/obj/structure/sink/directional/east,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nBs" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"nBu" = (
+/obj/effect/turf_decal/arrows/white{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"nBy" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nBB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical/glass{
+ id_tag = "MedbayFoyer";
+ name = "Medbay Clinic"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"nBF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"nCa" = (
+/obj/machinery/meter/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Ordnance Freezer Chamber Access";
+ req_access = list("ordnance")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"nCc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/surgery/aft)
+"nCr" = (
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"nCu" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"nCw" = (
+/obj/machinery/door/airlock/external{
+ name = "Space Shack"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nCB" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/requests_console/directional/east{
+ department = "Captain's Desk";
+ name = "Captain's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"nCG" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Science Ordnance Test Lab";
+ network = list("ss13","rd")
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"nCI" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"nCL" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nCQ" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"nDk" = (
+/obj/structure/table,
+/obj/item/storage/fancy/cigarettes{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/folder/red{
+ pixel_x = -5
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"nDr" = (
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"nDw" = (
+/obj/machinery/atmospherics/components/tank,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"nDG" = (
+/obj/item/radio/intercom/directional/south,
+/turf/closed/wall,
+/area/station/cargo/lobby)
+"nDO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"nDP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"nDT" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nDW" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"nEb" = (
+/obj/structure/table,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"nEe" = (
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"nEB" = (
+/obj/structure/sign/poster/random/directional/east,
+/obj/machinery/requests_console/directional/south{
+ department = "Kitchen";
+ name = "Kitchen Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo"
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"nEC" = (
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"nEF" = (
+/obj/structure/bed/medical/anchored{
+ dir = 4
+ },
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/glasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/item/electropack,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"nET" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"nEZ" = (
+/obj/machinery/plate_press,
+/obj/effect/turf_decal/bot,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"nFa" = (
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nFe" = (
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"nFn" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"nFL" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "MiniSat Exterior - Fore";
+ network = list("minisat")
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"nGd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/central)
+"nGo" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"nGp" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/dice,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"nGq" = (
+/obj/structure/railing/corner,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nGr" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"nGz" = (
+/obj/structure/rack,
+/obj/item/radio/off{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/radio/off{
+ pixel_x = -6;
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"nGA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"nGE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/random/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"nGK" = (
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"nHB" = (
+/obj/effect/turf_decal/trimline/green/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"nHG" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple/corner,
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"nIj" = (
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"nIP" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/pai_card,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"nIR" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"nJn" = (
+/obj/machinery/chem_dispenser,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"nJo" = (
+/obj/machinery/smartfridge/organ,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "main_surgery"
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/station/medical/treatment_center)
+"nJr" = (
+/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner,
+/turf/open/floor/engine/xenobio,
+/area/station/science/xenobiology)
+"nJu" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"nJA" = (
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/airlock_controller/incinerator_ordmix{
+ pixel_x = -24
+ },
+/obj/machinery/button/ignition/incinerator/ordmix{
+ pixel_x = 24;
+ pixel_y = -6
+ },
+/obj/machinery/button/door/incinerator_vent_ordmix{
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"nJG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"nJH" = (
+/obj/effect/turf_decal/loading_area/white,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"nJJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"nJL" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/obj/machinery/atmospherics/components/tank/air,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nJM" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/rack,
+/obj/item/mod/module/plasma_stabilizer,
+/obj/item/mod/module/thermal_regulator,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/storage_shared)
+"nJW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/red/filled/corner,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"nKr" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 15;
+ name = "arrivals";
+ roundstart_template = /datum/map_template/shuttle/arrival/box;
+ shuttle_id = "arrival_stationary";
+ width = 7
+ },
+/turf/open/space/basic,
+/area/space)
+"nKu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/item/reagent_containers/cup/glass/waterbottle{
+ pixel_y = 48;
+ pixel_x = 9
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"nKE" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"nKG" = (
+/obj/item/kirbyplants/organic/plant5,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"nKI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"nKM" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"nKO" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/landmark/start/assistant,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/south{
+ id = "Toilet4";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_y = -32;
+ spawn_loot_chance = 50
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"nLq" = (
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nLx" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"nLz" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"nLG" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"nLZ" = (
+/obj/item/toy/beach_ball/branded,
+/turf/open/space/basic,
+/area/space/nearstation)
+"nMf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"nMj" = (
+/obj/structure/window/fulltile,
+/obj/structure/flora/bush/ferny/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/floor/grass,
+/area/station/maintenance/starboard/aft)
+"nMz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/machinery/button/door/directional/west{
+ id = "commissaryshutter";
+ name = "Commissary Shutter Control"
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"nMK" = (
+/obj/machinery/biogenerator,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"nMP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/dim/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"nMV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/security/range)
+"nMY" = (
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"nNe" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/floor/grass,
+/area/station/science/research)
+"nNo" = (
+/obj/machinery/biogenerator,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"nNw" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"nNB" = (
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"nNH" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/commons/vacant_room/office)
+"nNJ" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"nNL" = (
+/turf/closed/mineral/volcanic,
+/area/space/nearstation)
+"nNW" = (
+/obj/structure/disposaloutlet{
+ dir = 4;
+ name = "Cargo Deliveries"
+ },
+/obj/effect/turf_decal/siding/purple,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"nNY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nOi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"nOj" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nOp" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"nOq" = (
+/obj/machinery/holopad/secure,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"nOv" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/station/security/office)
+"nOw" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"nOK" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/research)
+"nOU" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom{
+ broadcasting = 1;
+ dir = 8;
+ listening = 0;
+ name = "Station Intercom (Court)"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"nOZ" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/decoration/ornament,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"nPf" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"nPt" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"nPu" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nPJ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nPK" = (
+/obj/effect/spawner/structure/window,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/garden)
+"nPN" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"nQz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"nQA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"nQC" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Firing Range"
+ },
+/obj/machinery/light_switch/directional/west{
+ pixel_y = -12
+ },
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/range)
+"nQQ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light/no_nightlight/directional/east,
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/pumproom)
+"nQR" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/landmark/start/assistant,
+/obj/machinery/door/window/right/directional/east{
+ name = "Crate Security Door";
+ req_access = list("shipping")
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"nQX" = (
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"nRp" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/pumproom)
+"nRr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"nRz" = (
+/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/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/stack/sheet/glass/fifty,
+/obj/structure/closet/crate/engineering/electrical,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"nRI" = (
+/obj/structure/filingcabinet{
+ pixel_x = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"nRQ" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/computer/security/telescreen/ordnance/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"nRU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"nRZ" = (
+/turf/closed/wall/r_wall,
+/area/station/security/medical)
+"nSe" = (
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"nSn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"nSs" = (
+/obj/structure/showcase/cyborg/old{
+ pixel_y = 20
+ },
+/obj/item/radio/intercom/directional/north{
+ broadcasting = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"nSB" = (
+/obj/item/toy/figure/roboticist,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"nTd" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/food_or_drink/seed,
+/obj/item/seeds/cannabis,
+/obj/item/seeds/cannabis,
+/obj/item/seeds/cannabis,
+/obj/item/food/grown/mushroom/glowshroom,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nTk" = (
+/obj/structure/flora/bush/jungle/c/style_random,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"nTn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nTA" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"nTH" = (
+/obj/structure/cable,
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/line,
+/turf/open/floor/iron,
+/area/station/security/warden)
+"nUp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"nUF" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"nVq" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nVx" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/effect/spawner/random/bureaucracy/pen,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"nVy" = (
+/obj/effect/landmark/start/lawyer,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"nVG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"nVJ" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/chem_pack{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/storage/box/rxglasses{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/stack/medical/gauze{
+ pixel_x = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/station/medical/treatment_center)
+"nVL" = (
+/obj/structure/grille/broken,
+/obj/item/bouquet/poppy,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"nWk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/prison/visit)
+"nWl" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"nWu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"nWy" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"nWS" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/space,
+/area/space/nearstation)
+"nXm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"nXG" = (
+/obj/machinery/newscaster/directional/north,
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"nXK" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ name = "lavaland";
+ shuttle_id = "pod_4_lavaland"
+ },
+/turf/open/space/basic,
+/area/space)
+"nXM" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"nYa" = (
+/obj/machinery/door/airlock/research{
+ name = "Ordnance Lab"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance_storage,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance)
+"nYl" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/machinery/ore_silo,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"nYy" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
+/obj/machinery/light/small/dim/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"nYJ" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space/basic,
+/area/space/nearstation)
+"nYL" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Xenobiology Maintenance"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"nYO" = (
+/obj/item/reagent_containers/spray/plantbgone,
+/obj/item/reagent_containers/spray/pestspray{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/bottle/nutrient/ez,
+/obj/item/reagent_containers/cup/bottle/nutrient/rh{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/spawner/random/food_or_drink/seed{
+ spawn_all_loot = 1;
+ spawn_random_offset = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"nYU" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"nZf" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/circuit/green,
+/area/station/science/robotics/mechbay)
+"nZh" = (
+/obj/machinery/vending/assist,
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"nZk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"nZm" = (
+/turf/closed/wall,
+/area/station/medical/morgue)
+"nZn" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/box,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"nZq" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nZt" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"nZz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"nZC" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/vending/wardrobe/robo_wardrobe,
+/obj/machinery/button/door/directional/north{
+ id = "roboticsprivacy";
+ name = "Robotics Privacy Control";
+ pixel_x = -24;
+ req_access = list("robotics")
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"nZH" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/wood,
+/area/station/service/library)
+"nZL" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+"oac" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"oae" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"oah" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"oaj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"oao" = (
+/obj/machinery/button/door/directional/east{
+ id = "abandoned_kitchen";
+ name = "Shutters Control"
+ },
+/obj/item/book/manual/wiki/cooking_to_serve_man{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -11;
+ pixel_y = 14
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/rag{
+ pixel_x = -10;
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oap" = (
+/obj/structure/table/reinforced,
+/obj/item/tank/internals/anesthetic{
+ pixel_x = 3
+ },
+/obj/item/tank/internals/anesthetic,
+/obj/item/tank/internals/anesthetic{
+ pixel_x = -3
+ },
+/obj/item/clothing/mask/breath/medical{
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath/medical,
+/obj/item/clothing/mask/breath/medical{
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"oar" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start/chemist,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"oaw" = (
+/obj/structure/table/reinforced,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"oaB" = (
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/status_display/evac/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/research)
+"obk" = (
+/obj/item/target/alien,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"obl" = (
+/obj/structure/rack,
+/obj/machinery/camera/directional/south{
+ c_tag = "Brig - Infirmary"
+ },
+/obj/item/clothing/under/rank/medical/scrubs/purple,
+/obj/item/storage/medkit/regular,
+/obj/item/healthanalyzer{
+ pixel_y = -2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"obw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"obF" = (
+/obj/machinery/computer/exoscanner_control{
+ dir = 1
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo Bay - Drone Launch Room";
+ pixel_x = 14
+ },
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"obG" = (
+/turf/closed/wall,
+/area/station/service/theater)
+"obN" = (
+/obj/effect/turf_decal/trimline/purple/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"obQ" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/item/taperecorder{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"ocg" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ocl" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"ocB" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"ocC" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"ocG" = (
+/obj/structure/disposaloutlet{
+ dir = 8;
+ name = "Prisoner Delivery"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/security/prison)
+"ocN" = (
+/obj/structure/rack,
+/obj/item/book/manual/wiki/infections{
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/syringe/antiviral,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"ocP" = (
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"ocQ" = (
+/obj/machinery/chem_heater/withbuffer,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/button/door/directional/south{
+ id = "pharmacy_shutters_2";
+ name = "pharmacy shutters control";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"ocS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"odh" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"odp" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/plating/airless,
+/area/station/engineering/atmos)
+"odu" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Cryogenics Bay"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"odI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Hydroponics Backroom"
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oet" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"oew" = (
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"oeR" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"ofe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cigbutt{
+ pixel_y = 7
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"ofk" = (
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/power/smes/engineering,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/main)
+"ofQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ofS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Secure Gear Storage"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"ogb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"ogk" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/light_switch/directional/south,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"ogL" = (
+/obj/structure/mirror/directional/north,
+/obj/structure/sink/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/soap{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/captain/private)
+"oha" = (
+/obj/structure/rack,
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/storage/briefcase/secure{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/taperecorder,
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"ohm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"oho" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"ohD" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "Xenobio Pen 6 Blast Door"
+ },
+/obj/machinery/door/window/right/directional/west{
+ name = "Containment Pen #6";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"ohE" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/central)
+"ohH" = (
+/obj/machinery/computer/records/security{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"ohI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/effect/turf_decal/siding/blue{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/science/server)
+"ohW" = (
+/obj/structure/rack,
+/obj/item/tank/internals/anesthetic,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/starboard/lesser)
+"ohZ" = (
+/obj/machinery/suit_storage_unit/rd,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Research Director's Office";
+ network = list("ss13","rd")
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/rd)
+"oic" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/skub{
+ name = "medicinal skub"
+ },
+/obj/item/toy/cattoy,
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"oip" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oir" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"oiI" = (
+/obj/machinery/air_sensor/nitrous_tank,
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"oiQ" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ojo" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/station/science/research)
+"ojt" = (
+/obj/item/plant_analyzer,
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"ojv" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Atmospherics Tank - Toxins"
+ },
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"ojz" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Space Bridge Access"
+ },
+/obj/machinery/button/door/directional/north{
+ id = "supplybridge";
+ name = "Shuttle Bay Space Bridge Control"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ojW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"okj" = (
+/obj/structure/cable,
+/obj/machinery/camera/motion/directional/south{
+ c_tag = "Vault";
+ network = list("vault")
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"okP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/mail_sorting/security/hos_office,
+/turf/open/floor/wood,
+/area/station/security/office)
+"okQ" = (
+/obj/effect/landmark/blobstart,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"okV" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"okX" = (
+/obj/structure/window/spawner/directional/west,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"ola" = (
+/turf/closed/wall,
+/area/station/science/robotics/mechbay)
+"oli" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/space_hut)
+"oll" = (
+/obj/effect/spawner/random/engineering/tank,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oln" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"olq" = (
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"olw" = (
+/turf/closed/wall,
+/area/station/security/courtroom)
+"olD" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"olG" = (
+/obj/item/kirbyplants/random,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/machinery/light/small/directional/east,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/siding/red,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"olN" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ name = "port bay 2";
+ shuttle_id = "ferry_home";
+ width = 5
+ },
+/turf/open/space/basic,
+/area/space)
+"olP" = (
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster/random/directional/south,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/service)
+"omd" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"ome" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"omm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"omA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"omF" = (
+/obj/machinery/teleport/station,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+"omV" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"onf" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"onv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"onD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/petridish{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/item/storage/box/petridish{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/machinery/requests_console/directional/east{
+ department = "Xenobiology";
+ name = "Xenobiology Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/machinery/button/door/directional/south{
+ id = "XenoPens";
+ name = "Xenobiology Shutters";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"onI" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"onN" = (
+/obj/structure/table/wood,
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/spawner/random/bureaucracy/paper,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"oog" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"ool" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oor" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/supply)
+"oos" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet1";
+ name = "Unit 1"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"ooz" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Lab - Airlock";
+ network = list("ss13","rd","xeno")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"ooG" = (
+/obj/structure/table,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"ooP" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"ooT" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ope" = (
+/turf/closed/wall,
+/area/station/security/mechbay)
+"oph" = (
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/obj/effect/landmark/start/mime,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"opF" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/cultivator,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"opG" = (
+/obj/structure/cable,
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"opZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{
+ dir = 1
+ },
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"oqc" = (
+/obj/effect/spawner/random/structure/table,
+/turf/open/floor/iron/checker,
+/area/station/maintenance/aft/lesser)
+"oqe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"oqi" = (
+/obj/effect/landmark/start/paramedic,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"oqk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"oqK" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oqT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"orp" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"orv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/central)
+"orx" = (
+/obj/structure/cable,
+/obj/machinery/computer/records/security{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"orT" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"orU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"osc" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"ose" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"osw" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/security/brig)
+"osz" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space,
+/area/space/nearstation)
+"osH" = (
+/obj/structure/secure_safe/hos{
+ pixel_x = 36;
+ pixel_y = 28
+ },
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"ota" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ name = "Cargo Deliveries"
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/yellow,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"ote" = (
+/obj/structure/table,
+/obj/item/computer_disk{
+ pixel_x = -8;
+ pixel_y = -3
+ },
+/obj/item/computer_disk{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/computer_disk/ordnance{
+ pixel_x = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"otj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"otn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"otu" = (
+/turf/closed/wall,
+/area/station/service/chapel)
+"otB" = (
+/obj/machinery/button/door/directional/east{
+ id = "rdrnd";
+ name = "Primary Research Shutters Control";
+ pixel_y = 6;
+ req_access = list("science")
+ },
+/obj/machinery/button/door/directional/east{
+ id = "rndlab2";
+ name = "Secondary Research Shutters Control";
+ pixel_y = -6;
+ req_access = list("science")
+ },
+/obj/machinery/modular_computer/preset/cargochat/science{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+"otG" = (
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/siding/white{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/water,
+/area/station/service/hydroponics/garden)
+"otI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"otM" = (
+/obj/structure/closet/crate,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/item/stack/license_plates/empty/fifty,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/security/prison/work)
+"otQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ouj" = (
+/obj/structure/bed/medical/emergency,
+/obj/structure/bed/medical/emergency,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/mask/muzzle,
+/obj/item/clothing/glasses/blindfold,
+/obj/item/clothing/glasses/blindfold,
+/turf/open/floor/iron/white,
+/area/station/security/execution/transfer)
+"ouk" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"oul" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"out" = (
+/obj/structure/lattice,
+/obj/item/reagent_containers/cup/glass/bottle/goldschlager,
+/turf/open/space/basic,
+/area/space/nearstation)
+"ouu" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Cargo Bay - Fore"
+ },
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/box/red,
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ouM" = (
+/obj/structure/sign/painting/library{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"ouR" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"ouX" = (
+/obj/effect/turf_decal/box,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+"ouY" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/rods/fifty,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/machinery/mining_weather_monitor/directional/east,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"ouZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"ove" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"ovf" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/storage/gas)
+"ovK" = (
+/obj/structure/closet/secure_closet/hop,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"ovX" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"owf" = (
+/obj/machinery/door/airlock/medical/glass{
+ name = "Medbay Staff Entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"owi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"owp" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"owv" = (
+/obj/machinery/computer/atmos_alert,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"oww" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/chair/office/light,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"owM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"owU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"owZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oxd" = (
+/obj/machinery/holopad,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oxf" = (
+/obj/structure/table,
+/obj/structure/sign/departments/medbay/directional/north,
+/obj/item/reagent_containers/cup/beaker/large,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oxj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/medical/abandoned)
+"oxk" = (
+/obj/machinery/door/window/right/directional/east{
+ name = "Engineering Deliveries";
+ req_access = list("engineering")
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"oxx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"oxR" = (
+/obj/structure/table,
+/obj/item/pipe_dispenser{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/item/pipe_dispenser,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"oxT" = (
+/obj/structure/table/wood,
+/obj/structure/cable,
+/obj/item/storage/photo_album/chapel,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"oxV" = (
+/obj/machinery/air_sensor/engine_chamber,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"oxW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oxX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood,
+/obj/machinery/modular_computer/preset/id{
+ dir = 1
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"oyj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"oyx" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small/directional/east,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/landmark/blobstart,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/east{
+ id = "AuxToilet3";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/plating,
+/area/station/commons/toilet/auxiliary)
+"oyO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"oyY" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"ozm" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"ozs" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Bow Solar Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"ozX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oAa" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/kirbyplants/organic/plant14,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"oAu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"oAN" = (
+/obj/machinery/gulag_teleporter,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"oAQ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/transit_tube/horizontal,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/space,
+/area/space/nearstation)
+"oBn" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"oBq" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"oBv" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/medical/coldroom)
+"oBz" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/science)
+"oBA" = (
+/obj/structure/table/wood,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/food_or_drink/booze{
+ spawn_random_offset = 1
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"oBD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"oBM" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/right/directional/east{
+ name = "Hydroponics Desk";
+ req_access = list("hydroponics")
+ },
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"oBO" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"oCb" = (
+/obj/structure/chair,
+/obj/item/radio/intercom/chapel/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"oCn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/mob/living/carbon/human/species/monkey/punpun,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"oCE" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/grass,
+/area/station/science/genetics)
+"oCN" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"oCO" = (
+/obj/structure/window/spawner/directional/west,
+/obj/structure/window/spawner/directional/south,
+/mob/living/basic/chicken{
+ name = "Kentucky";
+ real_name = "Kentucky"
+ },
+/obj/structure/flora/grass/jungle/b/style_random,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"oCR" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/suit_storage_unit/security,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"oCX" = (
+/obj/structure/sign/warning/biohazard,
+/turf/closed/wall/r_wall,
+/area/station/science/xenobiology/hallway)
+"oDc" = (
+/obj/structure/showcase/cyborg/old{
+ dir = 8;
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"oDl" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"oDH" = (
+/obj/structure/table,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/crowbar,
+/obj/item/grenade/chem_grenade/smart_metal_foam,
+/obj/item/grenade/chem_grenade/smart_metal_foam,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"oDJ" = (
+/obj/structure/sign/warning/vacuum/external,
+/turf/closed/wall,
+/area/station/cargo/storage)
+"oDW" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"oDX" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/bot,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison)
+"oEm" = (
+/obj/structure/cable,
+/obj/machinery/computer/security{
+ dir = 1
+ },
+/obj/item/paper/crumpled{
+ default_raw_text = "Hey, assholes. We don't need a couch in the meeting room, I threw it out the airlock. I don't care if it's real leather, go patrol like you're paid to do instead of cycling through cameras all shift!";
+ name = "old, crumpled note"
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"oEq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"oEu" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"oEx" = (
+/obj/effect/spawner/random/trash/garbage,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"oEB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oED" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/ethanol{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/carbon{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/chlorine{
+ pixel_x = 1
+ },
+/obj/machinery/light/cold/dim/directional/east,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"oEM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/flasher/directional/east{
+ id = "justiceflash"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"oEO" = (
+/obj/item/stack/rods/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/structure/closet/crate,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"oEP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Aft Primary Hallway"
+ },
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/science/lobby)
+"oET" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Engine Coolant Bypass"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"oFt" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/orange/hidden,
+/turf/open/floor/iron/stairs/medium{
+ dir = 8
+ },
+/area/station/engineering/atmos)
+"oFG" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "medsecprivacy";
+ name = "Privacy Shutter"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/right/directional/north{
+ req_access = list("brig_entrance")
+ },
+/obj/item/folder/red{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/paper,
+/obj/item/pen,
+/turf/open/floor/plating,
+/area/station/security/checkpoint/medical)
+"oFH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"oFK" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oFM" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Waste to Filter"
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"oFR" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Cargo Bay Bridge Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "north-maint-viewingdeck"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"oFS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"oFT" = (
+/obj/structure/table,
+/obj/item/integrated_circuit/loaded/speech_relay,
+/obj/item/integrated_circuit/loaded/hello_world{
+ pixel_y = 2;
+ pixel_x = 3
+ },
+/turf/open/floor/iron,
+/area/station/science/explab)
+"oFX" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Ordnance Lab Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/plating,
+/area/station/science/ordnance)
+"oGf" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "viro-passthrough"
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/medical/medbay/central)
+"oGj" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/box,
+/obj/machinery/portable_atmospherics/canister,
+/obj/item/radio/intercom/directional/north,
+/obj/structure/sign/warning/gas_mask/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"oGn" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Fuel Closet"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"oGw" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"oGH" = (
+/obj/machinery/light/directional/east,
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/paper_bin{
+ pixel_x = -11;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = -11;
+ pixel_y = 7
+ },
+/obj/item/hand_labeler{
+ pixel_x = -10;
+ pixel_y = -6
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/prison/directional/east,
+/turf/open/floor/iron,
+/area/station/security/warden)
+"oGK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oGN" = (
+/obj/effect/landmark/start/cyborg,
+/obj/machinery/light/small/directional/east,
+/obj/machinery/camera/directional/north{
+ c_tag = "AI Upload Foyer";
+ network = list("aiupload")
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+"oGZ" = (
+/obj/structure/table,
+/obj/item/storage/bag/tray/cafeteria,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"oHj" = (
+/obj/structure/table,
+/obj/item/folder/blue{
+ pixel_x = -18;
+ pixel_y = 3
+ },
+/obj/item/paper_bin{
+ pixel_x = 3;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_x = 3;
+ pixel_y = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"oHw" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"oHy" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"oHC" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"oHE" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics - Distro Loop"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible,
+/obj/machinery/meter/monitored/distro_loop,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"oHG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"oHJ" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"oHO" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"oIa" = (
+/turf/closed/wall,
+/area/station/commons/vacant_room/commissary)
+"oId" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/open/space,
+/area/space/nearstation)
+"oIg" = (
+/turf/closed/wall/r_wall,
+/area/station/science/genetics)
+"oIG" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/station/solars/starboard/fore)
+"oIM" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"oIW" = (
+/obj/structure/sign/warning/vacuum/directional/east,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oJj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"oJr" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/morphine,
+/obj/item/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/storage/box/trackimp,
+/obj/item/storage/lockbox/loyalty,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"oJu" = (
+/obj/effect/spawner/random/structure/closet_maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"oJD" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"oJH" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"oJL" = (
+/obj/machinery/computer/atmos_control/nitrogen_tank{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oJY" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Incinerator Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"oKc" = (
+/obj/structure/sign/departments/court/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"oKx" = (
+/obj/structure/tank_dispenser,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"oKA" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecomms Control Room"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/any/command/general,
+/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/computer)
+"oKI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oKM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"oKU" = (
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+"oLD" = (
+/obj/structure/chair/comfy/beige,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"oLF" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"oLK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"oLS" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/testlab)
+"oLV" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"oLZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hos)
+"oMh" = (
+/obj/structure/filingcabinet,
+/obj/machinery/computer/security/telescreen/minisat/directional/east,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/engineering)
+"oMx" = (
+/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den,
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Dock Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/cargo/miningoffice)
+"oMA" = (
+/turf/closed/wall/r_wall,
+/area/station/science/cytology)
+"oMR" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement{
+ dir = 8
+ },
+/obj/structure/noticeboard/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"oMW" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "mechbay";
+ name = "Mech Bay Shutters"
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"oMY" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"oNl" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"oNs" = (
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"oNy" = (
+/obj/machinery/smartfridge/chemistry/preloaded,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "chem_lockdown";
+ name = "Chemistry Shutters"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/yellow/full,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"oNP" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/medical/office)
+"oOl" = (
+/obj/machinery/flasher/directional/north{
+ id = "AI"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"oOz" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"oOB" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding{
+ dir = 8
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/wrench,
+/obj/item/clothing/glasses/welding,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/science/lab)
+"oOE" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/iannewyear,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"oOU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"oOW" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/space,
+/area/space/nearstation)
+"oOZ" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oPc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"oPf" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/science/ordnance/testlab)
+"oPh" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"oPj" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/item/stock_parts/subspace/analyzer,
+/obj/machinery/camera/directional/west{
+ c_tag = "Telecomms - Storage"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tcomms)
+"oPn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"oPp" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/tcomms_all,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"oPq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"oPv" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"oPx" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"oPD" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oPS" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/marker_beacon/olive,
+/turf/open/space/basic,
+/area/space/nearstation)
+"oPY" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"oPZ" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oQg" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"oQk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"oQJ" = (
+/obj/structure/table,
+/obj/item/storage/box/gloves{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/storage/box/masks{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"oQZ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=1.5-Fore-Central";
+ location = "1-BrigCells"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"oRn" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"oRs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/cook,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"oRM" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"oRO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"oRR" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Outer Vault";
+ name = "storage wing camera";
+ network = list("ss13","vault")
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/trimline/brown/filled/corner,
+/obj/structure/window/spawner/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"oRV" = (
+/obj/structure/table,
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/camera/directional/south{
+ c_tag = "Departure Lounge - Security Post"
+ },
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/taperecorder{
+ pixel_x = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"oSc" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"oSf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"oSo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "corporate_privacy";
+ name = "Showroom Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/corporate_showroom)
+"oSy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oTa" = (
+/obj/machinery/vending/cart{
+ req_access = list("hop")
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"oTj" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"oTw" = (
+/obj/machinery/door/airlock/mining{
+ name = "Deliveries"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/supply/shipping,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"oTD" = (
+/obj/structure/frame/computer,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"oTK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/flasher/directional/west{
+ id = "Cell 3";
+ pixel_y = -22
+ },
+/obj/structure/bed,
+/obj/item/bedsheet,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"oTR" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"oUh" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"oUu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"oUy" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"oUz" = (
+/obj/structure/rack,
+/obj/item/book/manual/wiki/engineering_guide{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/effect/spawner/random/trash/janitor_supplies,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"oUB" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"oUE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"oUK" = (
+/obj/structure/table,
+/obj/item/electronics/apc,
+/obj/item/electronics/airlock,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"oUU" = (
+/obj/structure/weightmachine/weightlifter,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"oVd" = (
+/obj/machinery/power/terminal{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"oVn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"oVL" = (
+/obj/structure/table,
+/obj/item/folder,
+/obj/item/pen,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/photo_album/prison,
+/obj/item/camera,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"oVY" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"oWa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"oWc" = (
+/obj/structure/sign/warning/electric_shock,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/aft)
+"oWk" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/aft)
+"oWm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/computer/security/telescreen/engine/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"oWF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"oWH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 8
},
/obj/effect/turf_decal/stripes/line,
@@ -38531,6 +71936,7 @@
/obj/effect/turf_decal/tile/neutral{
dir = 4
},
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/bar,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
@@ -38733,10 +72139,791 @@
"nCw" = (
/obj/machinery/door/airlock/external{
name = "Space Shack"
+=======
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"oWQ" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/glass/fifty{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/iron/twenty,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"oWT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/any/command/hop,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+"oWZ" = (
+/obj/structure/table,
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/computer/records/medical/laptop,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"oXl" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"oXJ" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/closet/crate/engineering/electrical,
+/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/stack/cable_coil,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"oXK" = (
+/obj/structure/safe/vault,
+/obj/item/storage/briefcase/secure/riches,
+/obj/item/storage/backpack/duffelbag/syndie/hitman,
+/obj/item/card/id/advanced/silver/reaper,
+/obj/item/lazarus_injector,
+/obj/item/gun/energy/disabler,
+/obj/item/gun/ballistic/revolver/russian,
+/obj/item/ammo_box/a357,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/book{
+ desc = "An undeniably handy book.";
+ icon_state = "bookknock";
+ name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes"
+ },
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"oXL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/cable,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"oXR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"oYg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"oYp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/office)
+"oYr" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/light/small/red/directional/west,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"oYv" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/bed,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/machinery/button/door/directional/west{
+ id = "Cabin4";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"oYM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"oYZ" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/rd)
+"oZj" = (
+/obj/structure/table/wood,
+/obj/item/storage/photo_album/library,
+/obj/structure/sign/painting/large/library_private{
+ dir = 8;
+ pixel_x = -29
+ },
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"oZs" = (
+/obj/structure/bed/medical/emergency{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/starboard/lesser)
+"oZv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"oZL" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/mess)
+"oZO" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"oZZ" = (
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 2
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/mail_sorting/service/janitor_closet,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"pab" = (
+/obj/structure/table,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/ansible,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/obj/item/stock_parts/subspace/crystal,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tcomms)
+"pan" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/aisat/exterior)
+"pav" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/camera/directional/north{
+ c_tag = "Prison Visitation";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/trimline/red/warning{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"paD" = (
+/turf/closed/wall,
+/area/station/cargo/bitrunning/den)
+"paQ" = (
+/obj/structure/window/spawner/directional/south,
+/obj/machinery/computer/cargo/request{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"paU" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"pbb" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/science/research)
+"pbf" = (
+/obj/effect/turf_decal/siding/blue/corner{
+ dir = 1
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"pbt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"pbz" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"pbL" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/white/side,
+/area/station/medical/medbay/lobby)
+"pbS" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/head/utility/hardhat/orange{
+ name = "protective hat"
+ },
+/obj/item/clothing/head/utility/hardhat/orange{
+ name = "protective hat"
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"pbU" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/service_all,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"pcc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"pck" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"pcm" = (
+/obj/structure/table/wood,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"pcM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"pcS" = (
+/obj/item/stack/ore/silver,
+/obj/item/stack/ore/silver,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/rack,
+/obj/item/shovel{
+ pixel_x = -5
+ },
+/obj/item/pickaxe{
+ pixel_x = 5
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"pdg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"pdi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"pdl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"pdx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/item/cigbutt/roach,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"pdI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"pdT" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"pdU" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"pdV" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Coroner's Office"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/coroner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"pdX" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 5;
+ height = 7;
+ name = "Cargo Bay";
+ shuttle_id = "cargo_home";
+ width = 12
+ },
+/turf/open/space/basic,
+/area/space)
+"pdY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"pem" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"peF" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"peM" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/storage/gas)
+"peX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pfe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+"pfs" = (
+/obj/structure/closet/secure_closet{
+ name = "contraband locker";
+ req_access = list("armory")
+ },
+/obj/effect/spawner/random/maintenance/three,
+/obj/effect/spawner/random/contraband/armory,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"pfP" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"pfR" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"pfU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/science/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"pgD" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"pgJ" = (
+/obj/structure/chair/stool/directional/north,
+/obj/machinery/camera/directional/west{
+ c_tag = "Solar Maintenance - Fore Port"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"pgK" = (
+/obj/structure/table,
+/obj/structure/cable,
+/obj/item/book/manual/chef_recipes{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"pgM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/sink/directional/west,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"pgU" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"pha" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"phn" = (
+/obj/structure/reflector/single/anchored{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"phz" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=7-Command-Starboard";
+ location = "6-Port-Central"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"phJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/south{
+ c_tag = "Engineering - Desk"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"phN" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "AI Chamber - Port";
+ network = list("aicore")
+ },
+/obj/structure/showcase/cyborg/old{
+ dir = 4;
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"phP" = (
+/obj/structure/table,
+/obj/item/exodrone{
+ pixel_y = 8
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"phR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"phS" = (
+/obj/structure/reagent_dispensers/cooking_oil,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"pic" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"piv" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/no_nightlight/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"piw" = (
+/obj/effect/landmark/start/cyborg,
+/obj/machinery/holopad/secure,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"piz" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"piA" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/structure/closet_private,
+/obj/item/clothing/under/misc/assistantformal,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"piJ" = (
+/obj/machinery/suit_storage_unit/medical,
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"piM" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/neck/tie/red,
+/obj/item/clothing/head/soft/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"piT" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/fluorine{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/iodine{
+ pixel_x = 1
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"pjd" = (
+/turf/open/floor/plating,
+/area/station/commons/fitness/recreation)
+"pjh" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"pjs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"pjS" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"pke" = (
+/obj/effect/turf_decal/siding/red{
+ dir = 6
+ },
+/obj/effect/landmark/start/depsec/science,
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/science)
+"pkx" = (
+/obj/machinery/modular_computer/preset/research{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"pkF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/photocopier,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"pkH" = (
+/obj/structure/rack,
+/obj/item/restraints/handcuffs,
+/obj/item/assembly/flash/handheld,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"pkK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"pkM" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/arrows/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"pkQ" = (
+/obj/machinery/door/airlock/external{
+ name = "Security External Airlock"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
+<<<<<<< HEAD
/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
@@ -43816,6 +78003,486 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/obj/structure/disposalpipe/segment,
+=======
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"pkT" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"plp" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Xenobiology Lab - Pen #1";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"plD" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Pure to Mix"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"pma" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/port/fore)
+"pmb" = (
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/machinery/portable_atmospherics/canister/anesthetic_mix,
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/machinery/light/cold/dim/directional/south,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/kitchen_coldroom,
+/area/station/medical/coldroom)
+"pmc" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/landmark/start/chaplain,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/service/chapel/office)
+"pmj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"pmo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"pms" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"pmA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/smartfridge/food,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"pmK" = (
+/obj/effect/landmark/start/mime,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"pmW" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/status_display/evac/directional/south,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"pmZ" = (
+/obj/machinery/light_switch/directional/west{
+ pixel_y = 26
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/hand_labeler,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/holosign_creator/robot_seat/restaurant,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"pnk" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"pnx" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"pnD" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/structure/closet_private,
+/obj/item/clothing/under/suit/navy,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"pnE" = (
+/obj/machinery/air_sensor/carbon_tank,
+/turf/open/floor/engine/co2,
+/area/station/engineering/atmos)
+"pnH" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+"pnI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/cargo/miningoffice)
+"pnJ" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"pnN" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"poc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"pof" = (
+/obj/structure/table/reinforced,
+/obj/effect/spawner/random/entertainment/lighter,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"poj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/shaft_miner,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"pom" = (
+/turf/open/floor/iron,
+/area/station/engineering/storage_shared)
+"poq" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/holopad,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"poJ" = (
+/obj/machinery/telecomms/hub/preset,
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+"poM" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"poS" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"ppB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"ppC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
+/area/station/science/cytology)
+"ppG" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"ppI" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"ppJ" = (
+/obj/machinery/door/morgue{
+ name = "Chapel Garden"
+ },
+/turf/open/floor/cult,
+/area/station/service/chapel/funeral)
+"ppU" = (
+/obj/structure/closet/emcloset,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"ppX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office"
+ },
+/obj/structure/cable,
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/security/detective,
+/turf/open/floor/iron,
+/area/station/security/detectives_office)
+"pqb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"pqc" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"pqi" = (
+/obj/structure/chair,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"pql" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"pqt" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/machinery/module_duplicator,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"pqz" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"pqH" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"pqI" = (
+/obj/structure/lattice/catwalk,
+/obj/item/fish_feed,
+/turf/open/space/basic,
+/area/space/nearstation)
+"prc" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Chemistry North";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"prg" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"prv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"prx" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Virology Airlock";
+ network = list("ss13","medbay")
+ },
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"pry" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/light/cold/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"prD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/library)
+"prT" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"prU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"prY" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"psc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"psj" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"psl" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"psp" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"psr" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole,
+/turf/open/floor/wood,
+/area/station/service/library)
+"pst" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"psv" = (
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/rods/fifty,
+/obj/item/stack/rods/fifty,
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/eva)
+"psw" = (
+/obj/machinery/computer/security/hos{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"psy" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hop)
+"psz" = (
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"psT" = (
+/turf/open/floor/iron/dark,
+/area/station/science/lab)
+"psU" = (
+/obj/machinery/door/window/right/directional/east{
+ name = "Containment Pen #1";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"psV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
"psZ" = (
@@ -43868,6 +78535,14 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"pur" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/gambling,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"puG" = (
/obj/machinery/status_display/ai/directional/north,
/obj/effect/turf_decal/stripes/line{
@@ -43911,6 +78586,13 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
+=======
+"puW" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"puZ" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/neutral{
@@ -43918,6 +78600,7 @@
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"pvl" = (
/obj/machinery/light/directional/south,
/obj/structure/rack,
@@ -43934,6 +78617,8 @@
/obj/machinery/incident_display/bridge/directional/south,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pvm" = (
/obj/machinery/light_switch/directional/east,
/turf/open/floor/iron/dark,
@@ -43957,6 +78642,7 @@
name = "Holodeck Projector Floor"
},
/area/station/holodeck/rec_center)
+<<<<<<< HEAD
"pvZ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
@@ -43964,6 +78650,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pwm" = (
/obj/machinery/telecomms/processor/preset_four,
/turf/open/floor/circuit/telecomms/mainframe,
@@ -43980,11 +78668,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/fore)
+<<<<<<< HEAD
"pwL" = (
/obj/machinery/light/small/directional/south,
/obj/effect/turf_decal/caution,
/turf/open/floor/plating,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pwM" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -44027,12 +78718,15 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"pxM" = (
/obj/structure/cable,
/obj/structure/table,
/obj/item/storage/bag/tray,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pxN" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/delivery,
@@ -44096,6 +78790,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
+=======
+"pyR" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/machinery/light_switch/directional/south,
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pyU" = (
/obj/structure/table/glass,
/obj/effect/turf_decal/tile/blue/fourcorners,
@@ -44115,6 +78819,7 @@
},
/turf/open/floor/iron,
/area/station/security/office)
+<<<<<<< HEAD
"pzn" = (
/obj/structure/cable,
/obj/structure/table/reinforced,
@@ -44131,6 +78836,8 @@
/obj/item/binoculars,
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pzu" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -44228,6 +78935,17 @@
/obj/effect/landmark/start/hangover,
/turf/open/floor/wood,
/area/station/commons/lounge)
+<<<<<<< HEAD
+=======
+"pBs" = (
+/obj/structure/sign/warning/cold_temp/directional/north{
+ name = "\improper CRYOGENICS"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
+/obj/machinery/light/cold/directional/north,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pBG" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -44288,6 +79006,22 @@
/obj/machinery/newscaster/directional/north,
/turf/open/floor/iron/dark,
/area/station/medical/break_room)
+<<<<<<< HEAD
+=======
+"pCs" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Cargo Bay - Mailroom"
+ },
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/white/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pCt" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44304,6 +79038,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"pCI" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/dropper,
@@ -44322,12 +79057,25 @@
},
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pCJ" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 4
},
/turf/open/floor/wood,
/area/station/commons/lounge)
+<<<<<<< HEAD
+=======
+"pCL" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/sink/directional/east,
+/obj/structure/sign/poster/official/cleanliness/directional/south,
+/obj/machinery/light/small/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pCO" = (
/obj/machinery/holopad,
/obj/machinery/status_display/evac/directional/north,
@@ -44361,12 +79109,15 @@
},
/turf/open/floor/iron/white/side,
/area/station/science/lobby)
+<<<<<<< HEAD
"pDw" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/cargo/drone_bay)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pDx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/external{
@@ -44475,6 +79226,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/engineering/atmos/storage/gas)
+<<<<<<< HEAD
"pFF" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -44483,6 +79235,8 @@
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pFG" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable,
@@ -44625,6 +79379,14 @@
},
/turf/open/floor/wood/large,
/area/station/commons/lounge)
+<<<<<<< HEAD
+=======
+"pHK" = (
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pHS" = (
/obj/structure/light_construct/directional/east,
/turf/open/floor/wood,
@@ -44742,6 +79504,7 @@
},
/turf/open/floor/iron/white,
/area/station/science/cytology)
+<<<<<<< HEAD
"pJB" = (
/obj/machinery/newscaster/directional/south,
/obj/effect/turf_decal/tile/bar,
@@ -44760,6 +79523,8 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pJE" = (
/turf/open/floor/iron,
/area/station/commons/locker)
@@ -44781,6 +79546,29 @@
},
/turf/open/floor/plating,
/area/station/medical/chemistry)
+<<<<<<< HEAD
+=======
+"pJY" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Bridge - Command Chair"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/south{
+ id = "bridge blast";
+ name = "Bridge Access Blast Door Control";
+ req_access = list("command")
+ },
+/obj/machinery/button/door/directional/south{
+ id = "council blast";
+ name = "Council Chamber Blast Door Control";
+ pixel_y = -34;
+ req_access = list("command")
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pKa" = (
/obj/structure/cable,
/obj/structure/bed/medical/emergency,
@@ -44789,6 +79577,7 @@
},
/turf/open/floor/iron,
/area/station/security/execution/transfer)
+<<<<<<< HEAD
"pKr" = (
/obj/item/reagent_containers/cup/bottle/multiver{
pixel_x = 7;
@@ -44810,6 +79599,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pKs" = (
/obj/structure/table/wood,
/obj/item/paper_bin/carbon{
@@ -44917,11 +79708,14 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
"pNa" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/nuke_storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pNb" = (
/obj/effect/spawner/random/maintenance,
/obj/structure/cable,
@@ -44941,6 +79735,21 @@
/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"pNk" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pNp" = (
/obj/machinery/light/small/broken/directional/west,
/obj/structure/table,
@@ -44948,6 +79757,14 @@
/obj/item/clothing/mask/gas/cyborg,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
+=======
+"pNC" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/construction/storage_wing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pNR" = (
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron/dark,
@@ -44975,6 +79792,34 @@
/obj/effect/turf_decal/tile/red/half/contrasted,
/turf/open/floor/iron,
/area/station/security/checkpoint/customs)
+<<<<<<< HEAD
+=======
+"pOk" = (
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/item/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/assembly/signaler{
+ pixel_y = 8
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pOv" = (
/obj/effect/turf_decal/siding/purple{
dir = 1
@@ -44997,6 +79842,19 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/aft)
+<<<<<<< HEAD
+=======
+"pOK" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pON" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -45053,6 +79911,18 @@
/obj/effect/mapping_helpers/airlock/access/all/security/brig,
/turf/open/floor/iron,
/area/station/security/prison/safe)
+<<<<<<< HEAD
+=======
+"pQh" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/solars/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pQj" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -45083,6 +79953,7 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"pQw" = (
/obj/structure/disposaloutlet{
dir = 4
@@ -45096,6 +79967,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pQy" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/delivery,
@@ -45103,6 +79976,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
+=======
+"pQC" = (
+/obj/structure/table/wood,
+/obj/machinery/firealarm/directional/south,
+/obj/item/storage/photo_album/bar,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pQG" = (
/obj/machinery/porta_turret/ai{
dir = 4
@@ -45120,11 +80005,21 @@
},
/turf/open/floor/iron/dark/corner,
/area/station/engineering/atmos/storage/gas)
+<<<<<<< HEAD
+=======
+"pQO" = (
+/obj/structure/sign/warning/secure_area/directional/west,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pQW" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"pQX" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
@@ -45132,6 +80027,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pRb" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -45159,10 +80056,13 @@
/obj/effect/landmark/generic_maintenance_landmark,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"pRr" = (
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pRu" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
@@ -45178,6 +80078,17 @@
/obj/item/reagent_containers/spray/pepper,
/turf/open/floor/iron,
/area/station/security/execution/transfer)
+<<<<<<< HEAD
+=======
+"pRM" = (
+/obj/structure/window/spawner/directional/south,
+/mob/living/basic/cow{
+ name = "Betsy";
+ real_name = "Betsy"
+ },
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pSa" = (
/obj/effect/turf_decal/trimline/red/filled/corner{
dir = 1
@@ -45192,6 +80103,7 @@
/obj/effect/landmark/start/medical_doctor,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"pSq" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/navbeacon{
@@ -45210,6 +80122,8 @@
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pSw" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -45220,6 +80134,7 @@
/obj/effect/spawner/random/engineering/atmospherics_portable,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
"pSB" = (
/obj/structure/table/glass,
/obj/machinery/computer/records/medical/laptop,
@@ -45228,6 +80143,8 @@
},
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pSS" = (
/obj/structure/lattice/catwalk,
/obj/structure/transit_tube/junction/flipped{
@@ -45237,6 +80154,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/space,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"pSY" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/tank_holder/extinguisher,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"pTf" = (
+/obj/structure/cable,
+/turf/open/floor/iron/goonplaque,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pTm" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -45294,6 +80225,18 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/station/maintenance/central)
+<<<<<<< HEAD
+=======
+"pUk" = (
+/obj/machinery/camera/directional/north,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pUl" = (
/obj/machinery/shower/directional/east,
/obj/effect/decal/cleanable/dirt,
@@ -45324,6 +80267,19 @@
/obj/effect/mapping_helpers/airlock/access/all/service/hydroponics,
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
+=======
+"pUM" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/white/corner,
+/obj/machinery/firealarm/directional/north,
+/obj/item/clipboard,
+/obj/item/paper,
+/obj/item/pen,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pUS" = (
/obj/item/paper_bin{
pixel_x = -3;
@@ -45346,6 +80302,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/security/brig)
+<<<<<<< HEAD
"pVR" = (
/obj/structure/table/wood,
/obj/item/radio/intercom/directional/east,
@@ -45355,12 +80312,29 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+=======
+"pVV" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/obj/structure/table,
+/obj/item/storage/box/bandages{
+ pixel_y = 6;
+ pixel_x = 4
+ },
+/obj/effect/spawner/random/entertainment/cigarette_pack{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pVZ" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"pWp" = (
/obj/structure/table,
/obj/item/storage/bag/plants,
@@ -45804,6 +80778,379 @@
/obj/effect/turf_decal/tile/bar{
dir = 1
},
+=======
+"pWb" = (
+/obj/machinery/light/directional/west,
+/obj/machinery/piratepad/civilian,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pWA" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=2.1-Leaving-Storage";
+ location = "1.5-Fore-Central"
+ },
+/obj/effect/turf_decal/plaque{
+ icon_state = "L6"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"pWB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Gas to Mix"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"pWD" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/medical/medbay/lobby)
+"pWN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"pWR" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"pWT" = (
+/obj/machinery/atmospherics/components/tank/air{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"pWX" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"pXh" = (
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"pXj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"pXl" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Hydroponics - Aft"
+ },
+/obj/effect/turf_decal/tile/blue,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"pXA" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"pXC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"pXM" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"pYn" = (
+/obj/structure/sign/plaques/kiddie/library{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"pYw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/office)
+"pYE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pYL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"pYM" = (
+/obj/machinery/status_display/supply,
+/turf/closed/wall,
+/area/station/cargo/storage)
+"pZc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"pZi" = (
+/obj/machinery/atmospherics/components/unary/passive_vent{
+ dir = 1;
+ name = "killroom vent"
+ },
+/turf/open/floor/circuit/telecomms,
+/area/station/science/xenobiology)
+"pZn" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"pZp" = (
+/obj/structure/chair/stool/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"pZG" = (
+/obj/machinery/power/solar_control{
+ id = "forestarboard";
+ name = "Starboard Bow Solar Control"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/fore)
+"pZW" = (
+/obj/structure/lattice,
+/obj/structure/sign/nanotrasen{
+ pixel_x = 32
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"qaf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"qag" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/iron,
+/area/station/maintenance/port)
+"qaq" = (
+/obj/machinery/newscaster/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"qaw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"qaA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"qaG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"qaP" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L3"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qaT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"qbr" = (
+/obj/structure/bed/medical{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/iron/white,
+/area/station/security/execution/transfer)
+"qby" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"qbC" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/records/medical/laptop{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/west,
+/obj/machinery/button/door/directional/west{
+ id = "hosprivacy";
+ name = "Privacy Shutters Control"
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+"qbE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "medsecprivacy";
+ name = "Privacy Shutter"
+ },
+/turf/open/floor/plating,
+/area/station/security/checkpoint/medical)
+"qbZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"qcd" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos/pumproom)
+"qcy" = (
+/obj/machinery/newscaster/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Courtroom - Gallery"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"qcD" = (
+/obj/structure/rack,
+/obj/item/aicard,
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/minisat/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"qcP" = (
+/obj/effect/landmark/blobstart,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qcQ" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"qdm" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/security/execution/transfer)
+"qdw" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"qdy" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"qdI" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 5
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
@@ -45822,6 +81169,7 @@
/obj/machinery/power/apc/auto_name/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/central)
+<<<<<<< HEAD
"qek" = (
/obj/item/reagent_containers/spray/plantbgone{
pixel_y = 3
@@ -45846,6 +81194,8 @@
/obj/structure/sign/poster/official/random/directional/south,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qeo" = (
/obj/machinery/newscaster/directional/north,
/obj/structure/dresser,
@@ -45874,6 +81224,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"qeS" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -45881,6 +81232,24 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"qeQ" = (
+/obj/machinery/turretid{
+ icon_state = "control_stun";
+ name = "AI Chamber turret control";
+ pixel_x = 3;
+ pixel_y = -23
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/window/brigdoor/left/directional/west{
+ name = "Primary AI Core Access";
+ req_access = list("ai_upload")
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qeZ" = (
/obj/effect/decal/cleanable/oil,
/obj/structure/cable,
@@ -45984,6 +81353,18 @@
/obj/machinery/power/supermatter_crystal/engine,
/turf/open/floor/engine,
/area/station/engineering/supermatter)
+<<<<<<< HEAD
+=======
+"qgl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/random/structure/steam_vent,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qgn" = (
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/west,
@@ -46160,6 +81541,18 @@
/mob/living/simple_animal/bot/floorbot,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
+=======
+"qiY" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/sign/poster/random/directional/east,
+/obj/structure/table/wood,
+/obj/item/food/pie/cream,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qjf" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -46197,6 +81590,7 @@
/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
/turf/open/floor/plating,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
"qjM" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -46212,6 +81606,20 @@
/obj/structure/filingcabinet/filingcabinet,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+"qjH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qkl" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
@@ -46234,6 +81642,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/xenobiology/hallway)
+<<<<<<< HEAD
"qks" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -46243,6 +81652,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qkA" = (
/obj/machinery/computer/security,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -46270,6 +81681,14 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"qlz" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qlG" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 1
@@ -46289,6 +81708,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai_upload)
+<<<<<<< HEAD
+=======
+"qlW" = (
+/obj/structure/cable,
+/obj/machinery/status_display/evac/directional/west,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qmf" = (
/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/table/wood,
@@ -46299,6 +81727,12 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hos)
+<<<<<<< HEAD
+=======
+"qmi" = (
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qmu" = (
/obj/machinery/modular_computer/preset/id{
dir = 8
@@ -46321,6 +81755,17 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
+=======
+"qmE" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qmO" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/iron/dark,
@@ -46333,6 +81778,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
+=======
+"qnj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qno" = (
/obj/structure/table,
/obj/machinery/microwave{
@@ -46347,6 +81802,16 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/xenobiology/hallway)
+<<<<<<< HEAD
+=======
+"qnr" = (
+/obj/structure/cable,
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qnt" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -46411,6 +81876,17 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"qoY" = (
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qph" = (
/obj/effect/decal/cleanable/blood/old,
/obj/effect/spawner/random/medical/patient_stretcher,
@@ -46428,6 +81904,7 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
"qps" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -46435,10 +81912,13 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qpD" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
/area/station/ai_monitored/command/nuke_storage)
+<<<<<<< HEAD
"qpK" = (
/obj/structure/table/wood,
/obj/machinery/fax{
@@ -46448,6 +81928,8 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qpM" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
@@ -46458,6 +81940,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/carpet,
/area/station/service/library)
+<<<<<<< HEAD
"qqp" = (
/obj/structure/table,
/obj/item/clipboard,
@@ -46485,6 +81968,38 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+=======
+"qqr" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"qqs" = (
+/obj/structure/table,
+/obj/item/multitool{
+ pixel_x = 4;
+ pixel_y = 12
+ },
+/obj/item/multitool{
+ pixel_x = -4;
+ pixel_y = 8
+ },
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_y = -4
+ },
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = -4;
+ pixel_y = -6
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/item/multitool{
+ pixel_y = 10
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qrg" = (
/obj/machinery/light_switch/directional/north,
/turf/open/floor/circuit/green{
@@ -46515,6 +82030,15 @@
},
/turf/open/floor/engine/co2,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"qrw" = (
+/obj/structure/bed/dogbed/renault,
+/mob/living/basic/pet/fox/renault,
+/obj/machinery/computer/security/telescreen/minisat/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qrF" = (
/obj/machinery/computer/exodrone_control_console{
dir = 1
@@ -46528,6 +82052,18 @@
/obj/structure/extinguisher_cabinet/directional/north,
/turf/open/floor/iron/dark/smooth_large,
/area/station/cargo/bitrunning/den)
+<<<<<<< HEAD
+=======
+"qrO" = (
+/obj/machinery/chem_dispenser/drinks{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qrQ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera/directional/north{
@@ -46642,6 +82178,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/ce)
+<<<<<<< HEAD
"qtu" = (
/obj/structure/railing/corner/end/flip{
dir = 8
@@ -46657,12 +82194,21 @@
},
/turf/open/floor/iron/diagonal,
/area/station/cargo/storage)
+=======
+"qtq" = (
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/crap,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qua" = (
/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{
dir = 1
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"qub" = (
/obj/machinery/newscaster/directional/east,
/obj/structure/table,
@@ -46685,11 +82231,14 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"quc" = (
/obj/structure/lattice/catwalk,
/obj/structure/marker_beacon/burgundy,
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
"quh" = (
/obj/structure/railing/corner/end/flip{
dir = 8
@@ -46699,6 +82248,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qul" = (
/obj/machinery/power/terminal,
/obj/effect/turf_decal/stripes/line,
@@ -46721,8 +82272,1665 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/security/holding_cell)
+<<<<<<< HEAD
"qvi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
+=======
+"quT" = (
+/obj/effect/turf_decal/trimline/brown/filled/line,
+/obj/machinery/light/directional/south,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qvJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"qvP" = (
+/obj/item/kirbyplants/random,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/obj/structure/sign/calendar/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"qvQ" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "Containment Pen #4";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"qvV" = (
+/obj/effect/turf_decal/trimline/brown/filled/line,
+/obj/effect/turf_decal/siding/thinplating_new,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qvY" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"qwh" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/holding_cell)
+"qwi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qwl" = (
+/obj/machinery/airalarm/directional/north,
+/obj/item/clothing/under/suit/burgundy,
+/obj/effect/landmark/start/hangover,
+/obj/effect/spawner/random/structure/closet_private,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"qwG" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/port)
+"qwI" = (
+/obj/structure/sign/departments/chemistry/pharmacy,
+/turf/closed/wall,
+/area/station/medical/pharmacy)
+"qwK" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qwR" = (
+/obj/structure/sign/directions/evac,
+/obj/structure/sign/directions/medical{
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/station/service/library)
+"qwY" = (
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/command)
+"qxh" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/iron/chapel{
+ dir = 1
+ },
+/area/station/service/chapel)
+"qxr" = (
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"qxt" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"qxE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"qxJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"qyb" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"qyc" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/space,
+/area/space/nearstation)
+"qyr" = (
+/obj/item/kirbyplants,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"qyt" = (
+/obj/machinery/door/window/brigdoor/security/cell/left/directional/south{
+ id = "Cell 3";
+ name = "Cell 3"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"qyC" = (
+/turf/closed/wall,
+/area/station/engineering/atmos/pumproom)
+"qyI" = (
+/obj/structure/noticeboard/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qyQ" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/secure_closet/engineering_welding,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"qyT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"qzg" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/warning/vacuum/external/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qzs" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/space,
+/area/space/nearstation)
+"qzz" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"qzC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"qzE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"qzK" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qzS" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qzV" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"qAc" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"qAf" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/mob/living/basic/bot/medbot/autopatrol,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/station/medical/medbay/lobby)
+"qAA" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/computer/security/mining{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"qAN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"qAX" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"qBo" = (
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1449;
+ id_tag = "xeno_airlock_interior";
+ name = "Xenobiology Lab Internal Airlock"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"qBq" = (
+/obj/structure/rack,
+/obj/effect/landmark/blobstart,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"qBy" = (
+/turf/closed/wall,
+/area/station/command/heads_quarters/hop)
+"qBC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qBF" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 5
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"qBK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/station/science/explab)
+"qCh" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L10"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qCj" = (
+/obj/structure/sign/departments/science,
+/turf/closed/wall,
+/area/station/science/lobby)
+"qCl" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"qCm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qCv" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/open/floor/circuit/telecomms/mainframe,
+/area/station/tcommsat/server)
+"qCx" = (
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"qCC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qCK" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/button/door/directional/east{
+ id = "maintwarehouse";
+ name = "Privacy Shutters Control"
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"qCL" = (
+/obj/structure/cable,
+/obj/structure/sink/directional/east,
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/cryo)
+"qCM" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+"qCP" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"qCS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qCY" = (
+/obj/structure/sign/directions/evac,
+/turf/closed/wall,
+/area/station/maintenance/department/science/central)
+"qDa" = (
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"qDb" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Gamer Lair"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/medical/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qDg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/cafeteria,
+/area/station/security/prison)
+"qDi" = (
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"qDy" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"qDA" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/bot,
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"qDD" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Arrivals - Fore Arm"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"qDS" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"qDW" = (
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"qEb" = (
+/obj/structure/chair/pew/right,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"qEf" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"qEt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"qEy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qEG" = (
+/obj/structure/table,
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"qEK" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"qFo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Bar"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"qFF" = (
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 5
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/green{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 5
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"qFP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"qFU" = (
+/obj/structure/chair/stool/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"qGa" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/grunge{
+ name = "Courtroom"
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"qGn" = (
+/obj/structure/table,
+/obj/item/hfr_box/body/waste_output,
+/obj/item/hfr_box/body/moderator_input,
+/obj/item/hfr_box/body/fuel_input,
+/obj/item/hfr_box/body/interface,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"qGs" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"qGv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qGK" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "Engineering Security Doors"
+ },
+/obj/effect/turf_decal/caution/stand_clear,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/break_room)
+"qGP" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qGQ" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"qGV" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 1;
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qGZ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"qHa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"qHh" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qHm" = (
+/obj/machinery/pdapainter/engineering,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/computer/security/telescreen/ce/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"qHs" = (
+/obj/structure/sign/warning/docking,
+/turf/closed/wall,
+/area/station/hallway/secondary/entry)
+"qHt" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/conveyor_switch/oneway{
+ id = "mining";
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"qHK" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qHY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"qIl" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/command)
+"qIp" = (
+/obj/structure/sign/poster/official/cleanliness/directional/east,
+/obj/effect/turf_decal/bot,
+/obj/machinery/camera/directional/north{
+ c_tag = "Jim Norton's Quebecois Coffee"
+ },
+/obj/structure/noticeboard/directional/north,
+/obj/item/reagent_containers/condiment/sugar{
+ pixel_y = 4
+ },
+/obj/item/storage/pill_bottle/happinesspsych{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/storage/box/coffeepack,
+/obj/item/storage/box/coffeepack/robusta,
+/obj/item/reagent_containers/condiment/soymilk,
+/obj/item/reagent_containers/condiment/milk,
+/obj/structure/closet/secure_closet/freezer/empty/open,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"qIq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"qIu" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"qIB" = (
+/obj/structure/closet,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/reagent_containers/cup/glass/bottle/beer{
+ desc = "Takes you to a whole new level of thinking.";
+ name = "Meta-Cider"
+ },
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"qIL" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "MiniSat Exterior - Port Fore";
+ network = list("minisat")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"qIS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"qJa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/range)
+"qJb" = (
+/obj/machinery/requests_console/directional/west{
+ department = "Detective";
+ name = "Detective Requests Console"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/camera/directional/west{
+ c_tag = "Detective's Office"
+ },
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"qJd" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/computer/station_alert,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+"qJi" = (
+/obj/machinery/door/poddoor/shutters{
+ dir = 4;
+ id = "visitation";
+ name = "Visitation Shutters"
+ },
+/obj/machinery/door/window/left/directional/east,
+/obj/structure/table,
+/turf/open/floor/iron,
+/area/station/security/prison/visit)
+"qJn" = (
+/obj/machinery/chem_master,
+/obj/structure/noticeboard/directional/east,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"qJH" = (
+/obj/machinery/vending/autodrobe/all_access,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"qJU" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qKg" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"qKi" = (
+/obj/machinery/vending/wardrobe/chap_wardrobe,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"qKn" = (
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"qKs" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"qKD" = (
+/obj/structure/sign/poster/random/directional/east,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"qKR" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"qLe" = (
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/research)
+"qLk" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin,
+/obj/item/clipboard,
+/obj/item/toy/figure/cmo,
+/obj/structure/cable,
+/obj/item/stamp/head/cmo{
+ pixel_x = -9
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"qLp" = (
+/obj/structure/table/wood,
+/obj/item/toy/mecha/honk{
+ pixel_y = 12
+ },
+/obj/item/toy/dummy,
+/obj/item/lipstick/purple{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/item/lipstick/jade{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/lipstick/black,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"qLu" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"qLw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"qLJ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"qLP" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/random/bureaucracy/folder{
+ spawn_random_offset = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"qLR" = (
+/obj/structure/rack,
+/obj/machinery/airalarm/directional/west,
+/obj/item/reagent_containers/cup/bottle/mercury{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/nitrogen{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/oxygen{
+ pixel_x = 1
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/medical/chem_storage)
+"qLU" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 4;
+ initialize_directions = 8
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qLY" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Arrivals - Middle Arm - Far"
+ },
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"qMe" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/airlock/public/glass{
+ name = "Fitness Room"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness)
+"qMf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/south{
+ id = "gateshutter";
+ name = "Gateway Shutter Control";
+ pixel_y = -34;
+ req_access = list("command")
+ },
+/obj/machinery/button/door/directional/south{
+ id = "evashutter";
+ name = "E.V.A. Storage Shutter Control";
+ req_access = list("command")
+ },
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"qMm" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qMP" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qMT" = (
+/obj/item/shard,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"qMW" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"qNb" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/fore)
+"qNi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/anesthetic_mix,
+/turf/open/floor/iron/dark,
+/area/station/medical/cryo)
+"qNj" = (
+/obj/machinery/light_switch/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"qNk" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"qNw" = (
+/obj/machinery/atmospherics/components/binary/valve/digital,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"qNz" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"qNA" = (
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"qNG" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"qNI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/prison)
+"qNO" = (
+/obj/structure/table/glass,
+/obj/item/folder/blue{
+ pixel_y = 3
+ },
+/obj/item/pen,
+/obj/machinery/computer/security/telescreen/minisat/directional/south,
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"qNV" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/bridge)
+"qOk" = (
+/obj/structure/table/optable,
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/machinery/light/cold/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"qOs" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Genetics Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/science/genetics,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"qOu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"qOw" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable,
+/turf/open/floor/plating/airless,
+/area/station/solars/starboard/aft)
+"qOz" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix Bypass"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"qOM" = (
+/obj/machinery/vending/hydronutrients,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qOO" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/disposal/bin,
+/obj/machinery/light/cold/directional/west,
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"qOP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"qOT" = (
+/obj/item/storage/bag/trash,
+/obj/machinery/airalarm/directional/west,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"qOV" = (
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/effect/spawner/random/entertainment/deck{
+ pixel_x = -6
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"qOW" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qOZ" = (
+/obj/machinery/requests_console/directional/south{
+ department = "Mining";
+ name = "Mining Requests Console"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"qPs" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/marker_beacon/indigo,
+/turf/open/space/basic,
+/area/space/nearstation)
+"qPC" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Isolation B"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"qPF" = (
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"qPJ" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/medical)
+"qPS" = (
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/mob/living/basic/pet/dog/corgi/puppy/slime,
+/turf/open/floor/grass,
+/area/station/science/research)
+"qPT" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/storage_shared)
+"qQd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/carpet,
+/area/station/service/library)
+"qQm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"qQu" = (
+/obj/structure/chair/sofa/corp/right{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"qQJ" = (
+/obj/machinery/computer/camera_advanced/xenobio{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line,
+/obj/effect/turf_decal/bot,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"qQX" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"qQY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"qRa" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"qRe" = (
+/obj/effect/turf_decal/siding/purple,
+/obj/item/kirbyplants/random,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"qRf" = (
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/wood,
+/area/station/service/library)
+"qRg" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"qRh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"qRk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"qRq" = (
+/obj/structure/table/glass,
+/obj/item/tank/internals/emergency_oxygen{
+ pixel_x = -8
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"qRz" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"qRI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/command)
+"qRL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"qRM" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"qRO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"qRS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"qRU" = (
+/obj/machinery/computer/quantum_console,
+/obj/effect/turf_decal/siding/thinplating_new/dark,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/camera/autoname/directional/north,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/cargo/bitrunning/den)
+"qRV" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"qSc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{
+ dir = 8
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"qSf" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qSh" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/solars/starboard/fore)
+"qSk" = (
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden,
+/turf/closed/wall,
+/area/station/maintenance/port)
+"qSp" = (
+/obj/structure/rack,
+/obj/item/flashlight,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/book/manual/wiki/engineering_hacking{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/book/manual/wiki/engineering_guide,
+/obj/item/book/manual/wiki/engineering_construction{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/airlock_painter,
+/obj/item/crowbar,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"qSP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/obj/machinery/light_switch/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"qST" = (
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"qTf" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "mining"
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"qTz" = (
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"qTA" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Mix to Filter"
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qTF" = (
+/obj/effect/turf_decal/trimline/green/line{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/food/cherrycupcake{
+ pixel_y = 10
+ },
+/obj/item/food/muffin/berry{
+ pixel_x = 18;
+ pixel_y = 9
+ },
+/obj/item/food/cakeslice/pound_cake_slice{
+ pixel_x = 4;
+ pixel_y = -5
+ },
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"qTH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"qTJ" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Departure Lounge - Port Aft"
+ },
+/obj/machinery/light/directional/west,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/item/kirbyplants/organic/plant4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"qTL" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Cargo Bay Bridge Access"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"qTR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 4
+ },
+/area/station/medical/medbay/lobby)
+"qTS" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"qTU" = (
+/obj/item/retractor,
+/obj/item/hemostat{
+ pixel_x = -10
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"qTX" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"qUz" = (
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"qUQ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut)
+"qVc" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"qVi" = (
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"qVo" = (
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 9;
+ height = 25;
+ name = "MetaStation emergency evac bay";
+ shuttle_id = "emergency_home";
+ width = 29
+ },
+/turf/open/space/basic,
+/area/space)
+"qVt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"qVy" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"qWg" = (
+/obj/structure/lattice,
+/obj/structure/sign/warning/secure_area/directional/east,
+/turf/open/space/basic,
+/area/space/nearstation)
+"qWm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 9
+ },
+/area/station/commons/fitness)
+"qWF" = (
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/fore)
+"qWG" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/red{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"qWK" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Maintenance"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/chemistry,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"qWR" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 1
},
/turf/open/floor/engine/vacuum,
@@ -46734,6 +83942,7 @@
"qvP" = (
/obj/item/kirbyplants/random,
/obj/structure/disposalpipe/segment,
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 1
},
@@ -48213,6 +85422,16 @@
/obj/structure/disposalpipe/segment{
dir = 5
},
+=======
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"qWX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/science/research)
"qXa" = (
@@ -48315,6 +85534,7 @@
/obj/structure/closet,
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+<<<<<<< HEAD
"qYb" = (
/obj/structure/closet{
name = "evidence closet 3"
@@ -48326,6 +85546,8 @@
/obj/item/poster/traitor,
/turf/open/floor/iron/dark,
/area/station/security/evidence)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qYd" = (
/obj/structure/cable,
/turf/open/floor/iron/white,
@@ -48341,12 +85563,32 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms,
/turf/open/floor/iron/dark,
/area/station/tcommsat/server)
+<<<<<<< HEAD
+=======
+"qYt" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qYw" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"qYC" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/ai_monitored/command/nuke_storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qZa" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -48392,6 +85634,14 @@
"qZI" = (
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"qZO" = (
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qZV" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance"
@@ -48456,30 +85706,99 @@
/obj/structure/cable,
/turf/open/floor/plating/airless,
/area/station/solars/port/fore)
+<<<<<<< HEAD
+=======
+"raJ" = (
+/obj/structure/secure_safe/caps_spare,
+/obj/structure/table/glass,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"raK" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/storage)
+<<<<<<< HEAD
"raN" = (
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"raT" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/chair/stool/directional/west,
/turf/open/floor/wood,
/area/station/commons/lounge)
+<<<<<<< HEAD
+=======
+"rbd" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/machinery/portable_atmospherics/pipe_scrubber,
+/obj/effect/turf_decal/siding/purple{
+ dir = 6
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rbi" = (
/obj/effect/spawner/random/structure/closet_maintenance,
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
+=======
+"rbs" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/stack/medical/mesh,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/suture,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rbw" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/security/warden)
+<<<<<<< HEAD
+=======
+"rbD" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 5
+ },
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/sign/poster/official/wtf_is_co2/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"rbF" = (
+/obj/machinery/mass_driver/chapelgun,
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/item/gps,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rbG" = (
/obj/structure/rack,
/obj/effect/spawner/random/clothing/costume,
@@ -48514,6 +85833,13 @@
},
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
+=======
+"rcR" = (
+/obj/structure/sign/departments/cargo,
+/turf/closed/wall,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rcW" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -48542,11 +85868,14 @@
},
/turf/open/floor/iron/white,
/area/station/medical/surgery/aft)
+<<<<<<< HEAD
"rdq" = (
/obj/structure/noticeboard/qm,
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rdt" = (
/obj/structure/sign/warning/vacuum/external/directional/north,
/turf/open/floor/plating,
@@ -48584,6 +85913,29 @@
},
/turf/open/floor/engine,
/area/station/science/cytology)
+<<<<<<< HEAD
+=======
+"rem" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Service Hallway";
+ name = "Service Fax Machine"
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ret" = (
/obj/effect/spawner/random/trash/garbage{
spawn_scatter_radius = 1
@@ -48678,6 +86030,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"rgV" = (
/obj/structure/rack,
/obj/item/aicard,
@@ -48688,12 +86041,15 @@
/obj/machinery/computer/security/telescreen/minisat/directional/south,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rgZ" = (
/obj/structure/disposalpipe/segment{
dir = 9
},
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
"rha" = (
/obj/item/pen,
/obj/structure/table/reinforced,
@@ -48711,6 +86067,8 @@
/obj/effect/turf_decal/tile/red/fourcorners,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint/medical)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rhe" = (
/obj/structure/flora/bush/flowers_pp/style_random,
/obj/structure/flora/bush/stalky/style_random,
@@ -48726,12 +86084,15 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
"rhs" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/stock_parts/power_store/cell/high,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rhx" = (
/obj/machinery/door/window/left/directional/north{
name = "Inner Pipe Access";
@@ -48748,6 +86109,20 @@
/obj/machinery/teleport/hub,
/turf/open/floor/plating,
/area/station/command/teleporter)
+<<<<<<< HEAD
+=======
+"rhL" = (
+/obj/machinery/computer/security/mining,
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/obj/item/radio/intercom/directional/north{
+ pixel_y = 34
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rhU" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/spawner/random/structure/crate,
@@ -48780,6 +86155,14 @@
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating/airless,
/area/station/solars/port/fore)
+<<<<<<< HEAD
+=======
+"riU" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/caution,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"riW" = (
/obj/structure/plasticflaps/opaque,
/obj/machinery/door/window/left/directional/north{
@@ -48844,12 +86227,15 @@
/obj/item/radio/intercom/directional/north,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
"rka" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/construction/storage_wing)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rke" = (
/obj/machinery/recharge_station,
/turf/open/floor/plating,
@@ -48862,6 +86248,35 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
+=======
+"rkx" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil,
+/obj/item/electronics/airlock,
+/obj/item/electronics/airlock,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rkA" = (
/obj/structure/table,
/obj/item/cultivator,
@@ -48893,6 +86308,21 @@
/obj/item/target/syndicate,
/turf/open/floor/engine,
/area/station/science/explab)
+<<<<<<< HEAD
+=======
+"rla" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/structure/cable,
+/obj/structure/table/glass,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rlg" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
@@ -48914,6 +86344,17 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
+=======
+"rlr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rlu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -48946,6 +86387,16 @@
/obj/effect/mapping_helpers/airlock/access/all/service/lawyer,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+<<<<<<< HEAD
+=======
+"rmL" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/decal/cleanable/wrapping,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rmO" = (
/obj/structure/chair/comfy/black{
dir = 8
@@ -48957,6 +86408,20 @@
dir = 4
},
/area/station/service/chapel)
+<<<<<<< HEAD
+=======
+"rmS" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rnb" = (
/obj/effect/mapping_helpers/burnt_floor,
/obj/effect/spawner/random/trash/garbage{
@@ -48992,6 +86457,20 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/office)
+<<<<<<< HEAD
+=======
+"rnf" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rng" = (
/obj/structure/cable,
/obj/effect/landmark/start/hangover,
@@ -49025,6 +86504,7 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron,
/area/station/science/research)
+<<<<<<< HEAD
"rnD" = (
/obj/item/stack/sheet/iron/fifty,
/obj/item/stack/rods/fifty,
@@ -49039,12 +86519,25 @@
/obj/structure/closet/crate/engineering,
/turf/open/floor/plating,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rnX" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/firealarm/directional/east,
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
+=======
+"rod" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/brown/arrow_cw{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/arrow_ccw,
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"roe" = (
/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{
dir = 10
@@ -49071,10 +86564,23 @@
/obj/machinery/light/floor,
/turf/open/floor/iron,
/area/station/construction/mining/aux_base)
+<<<<<<< HEAD
"rpr" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
/area/station/science/xenobiology/hallway)
+=======
+"roG" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/bin/tagger,
+/obj/structure/sign/poster/official/random/directional/south,
+/obj/effect/turf_decal/trimline/brown/filled/corner,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rps" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 4
@@ -49164,6 +86670,7 @@
/obj/effect/spawner/random/structure/grille,
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
"rrw" = (
/obj/machinery/computer/records/security{
dir = 4
@@ -49173,6 +86680,18 @@
},
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+=======
+"rrz" = (
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/digital_clock/directional/south,
+/turf/open/floor/iron,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rrL" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
@@ -49185,6 +86704,7 @@
},
/turf/open/floor/iron,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"rrP" = (
/obj/structure/table/wood,
/obj/machinery/door/window/right/directional/south{
@@ -49201,6 +86721,8 @@
/obj/item/pen,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rrT" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/tile/red{
@@ -49222,11 +86744,14 @@
},
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/station/tcommsat/server)
+<<<<<<< HEAD
"rsa" = (
/obj/machinery/door/firedoor,
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rsc" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -49298,6 +86823,7 @@
},
/turf/open/floor/iron,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
"rtp" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -49322,11 +86848,32 @@
/obj/effect/mapping_helpers/requests_console/ore_update,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+"rtj" = (
+/obj/machinery/igniter/incinerator_ordmix,
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+"rtz" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/effect/turf_decal/siding/wood{
+ dir = 9
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/airalarm/directional/west,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/machinery/pdapainter/supply,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rtD" = (
/obj/effect/turf_decal/tile/purple,
/obj/machinery/light/directional/east,
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
"rtG" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -49338,6 +86885,8 @@
},
/turf/open/floor/iron,
/area/station/service/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rtI" = (
/obj/effect/landmark/secequipment,
/obj/effect/turf_decal/bot,
@@ -49379,6 +86928,25 @@
/obj/structure/bed/medical/emergency,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"rud" = (
+/obj/effect/turf_decal/siding/thinplating_new/dark,
+/obj/effect/turf_decal/trimline/brown/line,
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/landmark/start/bitrunner,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/cargo/bitrunning/den)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rul" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -49504,6 +87072,24 @@
},
/turf/open/floor/iron,
/area/station/security/courtroom)
+<<<<<<< HEAD
+=======
+"rwa" = (
+/obj/structure/table,
+/obj/item/storage/bag/plants,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rwd" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/tile/green{
@@ -49568,6 +87154,25 @@
/obj/machinery/power/apc/auto_name/directional/west,
/turf/open/floor/iron/white,
/area/station/medical/abandoned)
+<<<<<<< HEAD
+=======
+"rxa" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "medsecprivacy";
+ name = "Privacy Shutter"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ req_access = list("security")
+ },
+/obj/structure/desk_bell{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/turf/open/floor/plating,
+/area/station/security/checkpoint/medical)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rxc" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -49630,12 +87235,15 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"ryn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/water_source/puddle,
/obj/item/reagent_containers/cup/watering_can,
/turf/open/floor/grass,
/area/station/security/prison/garden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ryo" = (
/obj/effect/turf_decal/siding/white,
/obj/effect/turf_decal/trimline/brown/warning,
@@ -49674,6 +87282,18 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/security/prison/visit)
+<<<<<<< HEAD
+=======
+"ryV" = (
+/obj/effect/turf_decal/trimline/brown/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rza" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -49692,6 +87312,15 @@
/mob/living/basic/goat/pete,
/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
/area/station/service/kitchen/coldroom)
+<<<<<<< HEAD
+=======
+"rzo" = (
+/obj/structure/cable,
+/obj/effect/landmark/start/cargo_technician,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rzq" = (
/obj/structure/cable,
/obj/effect/turf_decal/stripes/corner,
@@ -49723,6 +87352,16 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"rzB" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rzJ" = (
/obj/effect/landmark/start/lawyer,
/turf/open/floor/iron,
@@ -49766,6 +87405,7 @@
/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
"rAi" = (
/obj/machinery/computer/cargo{
dir = 4
@@ -49785,6 +87425,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rAo" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
@@ -49799,6 +87441,7 @@
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
"rAt" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/turf_decal/stripes/line{
@@ -49806,6 +87449,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rAG" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -49827,6 +87472,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"rBP" = (
/obj/effect/turf_decal/bot_white,
/obj/effect/turf_decal/arrows/red{
@@ -49834,6 +87480,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rBU" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -49842,6 +87490,7 @@
},
/turf/open/floor/iron/white/corner,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"rCa" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -49851,6 +87500,11 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+=======
+"rBY" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
"rCn" = (
@@ -50088,9 +87742,63 @@
"rGC" = (
/turf/open/floor/iron/dark,
/area/station/security/courtroom)
+<<<<<<< HEAD
"rHn" = (
/turf/closed/wall/r_wall,
/area/station/engineering/supermatter)
+=======
+"rHh" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_x = 9;
+ pixel_y = 4
+ },
+/obj/structure/cable,
+/obj/item/radio{
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/science)
+"rHk" = (
+/obj/structure/table/glass,
+/obj/item/folder/blue{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/folder/white,
+/obj/item/pen{
+ pixel_x = -7;
+ pixel_y = 8
+ },
+/obj/item/computer_disk/medical,
+/obj/item/computer_disk/medical,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"rHn" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/supermatter)
+"rHq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 6
+ },
+/obj/structure/sign/warning/secure_area/directional/east{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 6
+ },
+/obj/effect/turf_decal/siding/yellow,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rHz" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -50127,6 +87835,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"rIm" = (
/obj/structure/sign/poster/official/cleanliness/directional/west,
/obj/structure/sink/directional/south,
@@ -50136,6 +87845,8 @@
/obj/structure/mirror/directional/north,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rIG" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -50160,6 +87871,7 @@
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
"rIR" = (
/obj/structure/cable,
/obj/machinery/door/airlock/external{
@@ -50169,6 +87881,8 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/plating,
/area/station/solars/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rIZ" = (
/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{
dir = 1
@@ -50182,6 +87896,14 @@
},
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
+=======
+"rJh" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/secure_safe/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rJk" = (
/obj/machinery/door/airlock{
name = "Theater Backstage"
@@ -50190,6 +87912,21 @@
/obj/effect/mapping_helpers/airlock/access/all/service/theatre,
/turf/open/floor/wood,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"rJr" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Head of Personnel's Office"
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/directional/south,
+/obj/item/papercutter{
+ pixel_x = -4
+ },
+/obj/item/paper/fluff/ids_for_dummies,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rJA" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -50268,11 +88005,14 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/engine,
/area/station/science/explab)
+<<<<<<< HEAD
"rKF" = (
/obj/structure/table,
/obj/item/food/dough,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rKG" = (
/obj/structure/cable,
/obj/machinery/door/airlock/virology/glass{
@@ -50323,6 +88063,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"rKX" = (
/obj/effect/spawner/random/maintenance,
/obj/structure/cable,
@@ -50330,6 +88071,8 @@
/obj/structure/sign/poster/contraband/random/directional/west,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rKZ" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -50359,6 +88102,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+<<<<<<< HEAD
"rLL" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -50369,15 +88113,45 @@
},
/turf/open/floor/wood/large,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rLZ" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/plating,
/area/station/maintenance/department/engine)
+<<<<<<< HEAD
"rMp" = (
/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+"rMe" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "xenobio3";
+ name = "Xenobio Pen 3 Blast Doors";
+ pixel_y = 4;
+ req_access = list("xenobiology")
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"rMr" = (
+/obj/structure/table/glass,
+/obj/item/experi_scanner{
+ pixel_y = -3
+ },
+/obj/item/experi_scanner{
+ pixel_y = 1
+ },
+/obj/item/experi_scanner{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rMu" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/space_heater,
@@ -50398,6 +88172,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
"rMH" = (
/obj/structure/table,
/obj/effect/turf_decal/bot,
@@ -50417,6 +88192,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/testlab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rMI" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/carpet,
@@ -50517,6 +88294,7 @@
/obj/machinery/shower/directional/west,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/restrooms)
+<<<<<<< HEAD
"rOZ" = (
/obj/structure/table,
/obj/machinery/button/door{
@@ -50529,6 +88307,8 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/iron,
/area/station/science/xenobiology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rPe" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -50550,6 +88330,19 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+<<<<<<< HEAD
+=======
+"rPp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/caution{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rPA" = (
/obj/structure/flora/bush/flowers_pp/style_random,
/obj/structure/flora/bush/flowers_yw/style_random,
@@ -50591,6 +88384,7 @@
},
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+<<<<<<< HEAD
"rQe" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -50600,6 +88394,53 @@
"rQw" = (
/turf/open/floor/plating/airless,
/area/station/solars/starboard/fore)
+=======
+"rQk" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Security Post - Medbay";
+ network = list("ss13","medbay")
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/machinery/light/small/directional/north,
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console/directional/north{
+ department = "Security";
+ name = "Security Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"rQl" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rdgene2";
+ name = "Genetics Lab Shutters"
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Genetics Desk";
+ req_access = list("genetics")
+ },
+/obj/item/folder,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/science/genetics)
+"rQw" = (
+/turf/open/floor/plating/airless,
+/area/station/solars/starboard/fore)
+"rQD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/siding/thinplating_new,
+/obj/effect/turf_decal/trimline/brown/filled/line,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rQS" = (
/obj/structure/table,
/obj/item/storage/box/evidence{
@@ -50633,6 +88474,7 @@
},
/turf/open/floor/iron/dark,
/area/station/security/brig)
+<<<<<<< HEAD
"rRd" = (
/obj/machinery/camera/directional/west{
c_tag = "Departure Lounge - Port Fore"
@@ -50658,6 +88500,15 @@
/obj/structure/sign/poster/random/directional/east,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+=======
+"rRm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/cigarette,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rRB" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance"
@@ -50678,6 +88529,20 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron/dark,
/area/station/science/genetics)
+<<<<<<< HEAD
+=======
+"rRR" = (
+/obj/structure/sign/warning/vacuum/external/directional/south,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rRZ" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -50773,6 +88638,14 @@
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
+=======
+"rUd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rUo" = (
/obj/structure/bed,
/obj/effect/spawner/random/bedsheet,
@@ -50853,6 +88726,16 @@
/obj/machinery/light/cold/directional/north,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
+=======
+"rVb" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rVn" = (
/turf/open/floor/iron,
/area/station/cargo/lobby)
@@ -50873,6 +88756,31 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
+=======
+"rVT" = (
+/obj/structure/table,
+/obj/item/folder/white{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_x = -3;
+ pixel_y = -6
+ },
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/effect/turf_decal/trimline/purple/filled/warning,
+/turf/open/floor/iron,
+/area/station/science/lab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rVY" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -50893,6 +88801,7 @@
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"rWp" = (
/obj/structure/table,
/obj/machinery/button/door{
@@ -50923,6 +88832,8 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rWH" = (
/obj/machinery/door/window/left/directional/south{
name = "HoP's Desk";
@@ -50972,6 +88883,29 @@
},
/turf/open/floor/iron,
/area/station/security/prison/visit)
+<<<<<<< HEAD
+=======
+"rXT" = (
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"rXW" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/table/glass,
+/obj/machinery/camera/directional/west{
+ c_tag = "Medbay Pharmacy";
+ network = list("ss13","medbay")
+ },
+/obj/item/book/manual/wiki/chemistry{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/book/manual/wiki/grenades,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rXX" = (
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
@@ -51155,6 +89089,35 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/atmospherics_engine)
+<<<<<<< HEAD
+=======
+"saD" = (
+/obj/machinery/light_switch/directional/north,
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/glass/mug{
+ pixel_x = 13;
+ pixel_y = 7
+ },
+/obj/item/reagent_containers/cup/glass/mug{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/glass/mug{
+ pixel_x = 13;
+ pixel_y = -1
+ },
+/obj/item/reagent_containers/cup/glass/shaker{
+ pixel_x = -2;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/cup/glass/ice{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"saN" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood,
@@ -51169,6 +89132,7 @@
/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"sbo" = (
/obj/machinery/requests_console/directional/south{
department = "Mining";
@@ -51179,6 +89143,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sbp" = (
/obj/effect/turf_decal/trimline/red/filled/corner{
dir = 8
@@ -51204,12 +89170,28 @@
/mob/living/basic/parrot/poly,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/ce)
+<<<<<<< HEAD
"sbD" = (
/obj/structure/sign/directions/medical{
pixel_y = -7
},
/turf/closed/wall,
/area/station/medical/pharmacy)
+=======
+"sbF" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageExternal"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/warning/directional/west,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sbG" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/structure/window/reinforced/spawner/directional/east,
@@ -51233,6 +89215,23 @@
/obj/machinery/light/directional/east,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+<<<<<<< HEAD
+=======
+"sbP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"sbX" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/plant_analyzer,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sch" = (
/turf/closed/wall,
/area/station/security/medical)
@@ -51309,6 +89308,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
"sdt" = (
/obj/item/reagent_containers/spray/plantbgone,
/obj/item/reagent_containers/spray/pestspray{
@@ -51329,6 +89329,8 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics/garden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sdu" = (
/obj/structure/cable,
/turf/open/floor/carpet,
@@ -51372,6 +89374,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"seE" = (
/obj/structure/sign/warning/biohazard,
/turf/closed/wall/r_wall,
@@ -51385,10 +89388,13 @@
/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
/turf/open/floor/iron,
/area/station/cargo/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"seN" = (
/obj/structure/sign/directions/evac,
/turf/closed/wall/r_wall,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
"seO" = (
/obj/effect/turf_decal/trimline/brown/warning{
dir = 8
@@ -51396,6 +89402,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sfg" = (
/obj/structure/cable,
/obj/effect/turf_decal/trimline/red/filled/line{
@@ -51444,6 +89452,7 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/iron/dark,
/area/station/security/evidence)
+<<<<<<< HEAD
"sfW" = (
/obj/machinery/conveyor/inverted{
dir = 6;
@@ -51466,6 +89475,17 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+"sgc" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sgh" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
dir = 5
@@ -51494,6 +89514,7 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron,
/area/station/science/research)
+<<<<<<< HEAD
"sgU" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/turf_decal/siding/wood{
@@ -51517,6 +89538,8 @@
/obj/effect/mapping_helpers/requests_console/ore_update,
/turf/open/floor/wood/large,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sgX" = (
/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
dir = 4
@@ -51538,6 +89561,7 @@
/obj/structure/sign/poster/contraband/random/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
"shp" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -51553,6 +89577,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"shq" = (
/obj/effect/landmark/generic_maintenance_landmark,
/obj/machinery/shower/directional/south,
@@ -51589,6 +89615,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"sik" = (
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/end{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sip" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -51688,6 +89726,7 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+<<<<<<< HEAD
"skj" = (
/obj/structure/table,
/obj/item/storage/medkit/regular{
@@ -51700,6 +89739,8 @@
/obj/machinery/light/cold/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"skx" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 8
@@ -51714,11 +89755,216 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/science/lab)
+<<<<<<< HEAD
"skD" = (
+=======
+"skW" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/medical/morgue)
+"slc" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/vehicle/ridden/janicart,
+/obj/item/key/janitor,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"sli" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"sls" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology/hallway)
+"sly" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"slC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/pharmacy)
+"slD" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"slI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/security/prison/safe)
+"slZ" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"smg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"sml" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"smt" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"smB" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/machinery/autolathe,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"smG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"smZ" = (
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"snb" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"snu" = (
+/obj/structure/table/wood,
+/obj/machinery/door/window/right/directional/south{
+ name = "Captain's Desk";
+ req_access = list("captain")
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"snB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"snE" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"snZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"soa" = (
+/obj/machinery/light/small/directional/south,
+/obj/structure/sign/poster/official/random/directional/south,
+/turf/open/floor/plating,
+/area/station/commons/toilet/auxiliary)
+"soi" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/any/command/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"sok" = (
+/obj/item/storage/box,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"sou" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Departure Lounge Airlock"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"sox" = (
+/obj/structure/table,
+/obj/item/training_toolbox,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"soU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"soW" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/techstorage/security_all,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"soX" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/landmark/event_spawn,
+<<<<<<< HEAD
/obj/effect/turf_decal/bot_white,
/turf/open/floor/iron,
/area/station/cargo/storage)
@@ -51907,11 +90153,18 @@
/area/station/service/lawoffice)
"spd" = (
/obj/effect/landmark/event_spawn,
+=======
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"spd" = (
+/obj/effect/landmark/event_spawn,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/neutral{
dir = 1
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"spe" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -51920,17 +90173,28 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+"spf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/station/ai_monitored/command/nuke_storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sph" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/color_adapter,
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"spy" = (
/obj/effect/spawner/random/vending/colavend,
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"spH" = (
/obj/item/radio/intercom/directional/south,
/obj/structure/disposalpipe/segment{
@@ -51941,6 +90205,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
"spP" = (
/obj/effect/turf_decal/trimline/brown/corner{
dir = 4
@@ -51950,6 +90215,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sqt" = (
/obj/machinery/disposal/delivery_chute{
dir = 1;
@@ -51990,6 +90257,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"sqN" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/tile/brown/anticorner{
@@ -51997,6 +90265,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"src" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/mapping_helpers/broken_floor,
@@ -52012,6 +90282,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/central)
+<<<<<<< HEAD
"srr" = (
/obj/structure/railing{
dir = 1
@@ -52020,6 +90291,8 @@
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"srP" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -52080,6 +90353,7 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"stq" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment,
@@ -52087,6 +90361,8 @@
/obj/structure/sign/poster/contraband/random/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"stC" = (
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
@@ -52106,6 +90382,16 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"stI" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/obj/item/binoculars,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"stL" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -52132,11 +90418,54 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"sul" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_x = 8;
+ pixel_y = 1
+ },
+/obj/item/paper_bin{
+ pixel_x = 8;
+ pixel_y = 6
+ },
+/obj/item/paper_bin{
+ pixel_x = 8;
+ pixel_y = 11
+ },
+/obj/item/folder/yellow{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/folder/yellow{
+ pixel_x = -9;
+ pixel_y = 1
+ },
+/obj/item/paper{
+ pixel_x = -5
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"sus" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/random/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"suD" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/prison)
+<<<<<<< HEAD
"suK" = (
/obj/structure/table/wood,
/obj/item/lipstick{
@@ -52149,6 +90478,8 @@
},
/turf/open/floor/wood/large,
/area/station/service/theater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"suP" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/components/unary/passive_vent/layer2{
@@ -52208,6 +90539,21 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"svK" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 6
+ },
+/obj/structure/sign/warning/fire/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"svQ" = (
/obj/machinery/door/firedoor,
/obj/effect/mapping_helpers/airlock/unres{
@@ -52295,6 +90641,14 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron/white/side,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"sxk" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sxn" = (
/obj/machinery/power/port_gen/pacman/pre_loaded,
/turf/open/floor/plating,
@@ -52303,12 +90657,15 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/fore)
+<<<<<<< HEAD
"sxt" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/iron/dark/textured_large,
/area/station/science/cytology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sxA" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/cable,
@@ -52322,6 +90679,7 @@
/obj/machinery/light/directional/west,
/turf/open/floor/iron/white,
/area/station/science/lab)
+<<<<<<< HEAD
"sxN" = (
/obj/structure/railing{
dir = 10
@@ -52338,11 +90696,28 @@
},
/turf/open/floor/iron/diagonal,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sxR" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+<<<<<<< HEAD
+=======
+"sxX" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/south,
+/obj/structure/table/wood,
+/obj/item/stack/sheet/cloth/ten,
+/obj/item/toy/crayon/spraycan,
+/obj/item/stack/rods/ten,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"syc" = (
/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
@@ -52449,6 +90824,7 @@
"szp" = (
/turf/closed/wall,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
"szD" = (
/obj/machinery/computer/security/mining,
/obj/machinery/keycard_auth/wall_mounted/directional/north,
@@ -52460,6 +90836,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"szJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/landmark/start/janitor,
@@ -52519,6 +90897,7 @@
/obj/item/stack/cable_coil,
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
"sBq" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -52544,6 +90923,8 @@
/obj/item/compact_remote,
/turf/open/floor/iron/white,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sBL" = (
/obj/structure/chair/stool/directional/west,
/obj/effect/mapping_helpers/broken_floor,
@@ -52573,6 +90954,39 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"sCc" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/item/storage/medkit/regular{
+ pixel_x = -3;
+ pixel_y = 10
+ },
+/obj/item/pen/blue{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/pen/fountain{
+ pixel_x = 10
+ },
+/obj/item/pen/red{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/stamp/denied{
+ pixel_y = -1
+ },
+/obj/item/stamp{
+ pixel_x = -9;
+ pixel_y = -1
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sCh" = (
/obj/structure/table/glass,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -52601,6 +91015,7 @@
/obj/structure/sign/warning/radiation,
/turf/closed/wall/r_wall,
/area/station/engineering/atmospherics_engine)
+<<<<<<< HEAD
"sCt" = (
/obj/machinery/light/directional/west,
/obj/structure/table,
@@ -52622,6 +91037,20 @@
/obj/machinery/status_display/evac/directional/west,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/storage/eva)
+=======
+"sCs" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "QMLoad2";
+ name = "Unloading Conveyor";
+ pixel_x = -13;
+ pixel_y = -4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sCv" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/poddoor/preopen{
@@ -52686,6 +91115,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"sDB" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
/obj/effect/mapping_helpers/airlock/locked,
@@ -52698,6 +91128,8 @@
/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,
/turf/open/floor/engine,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sDC" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -52782,6 +91214,7 @@
/obj/structure/window/spawner/directional/west,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"sDY" = (
/obj/structure/table/wood,
/obj/item/poster/random_official,
@@ -52798,6 +91231,8 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/carpet,
/area/station/command/corporate_showroom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEk" = (
/obj/structure/extinguisher_cabinet/directional/east,
/obj/structure/cable,
@@ -52854,6 +91289,7 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"sEO" = (
/obj/machinery/mass_driver/chapelgun,
/obj/structure/sign/warning/vacuum/external/directional/north,
@@ -52865,12 +91301,32 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/service/chapel/funeral)
+=======
+"sEM" = (
+/obj/machinery/airalarm/directional/east,
+/obj/item/food/poppypretzel{
+ pixel_x = -5;
+ pixel_y = -2
+ },
+/obj/item/food/hotcrossbun{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/trimline/green/line{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/effect/turf_decal/stripes/white/line,
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/testlab)
+<<<<<<< HEAD
"sFe" = (
/obj/structure/cable,
/turf/open/floor/carpet/orange,
@@ -52882,6 +91338,18 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron,
/area/station/security/prison/garden)
+=======
+"sFi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/fake_stairs/directional/south,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sFo" = (
/obj/machinery/button/crematorium{
id = "crematoriumChapel";
@@ -52932,11 +91400,14 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"sGs" = (
/obj/machinery/light/directional/east,
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGw" = (
/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{
dir = 9
@@ -52978,6 +91449,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
"sGV" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/r_wall,
@@ -52986,6 +91458,8 @@
/obj/machinery/barsign,
/turf/closed/wall,
/area/station/commons/lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sHg" = (
/obj/item/radio/intercom/directional/south,
/obj/machinery/camera/directional/south{
@@ -53015,6 +91489,14 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"sHX" = (
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/effect/decal/cleanable/oil/slippery,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sIe" = (
/turf/closed/wall/r_wall,
/area/station/security/execution/transfer)
@@ -53068,6 +91550,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/engineering/supermatter)
+<<<<<<< HEAD
"sKj" = (
/obj/structure/table,
/obj/item/clipboard,
@@ -53077,6 +91560,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/science/server)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sKs" = (
/obj/structure/closet/bombcloset/security,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -53116,6 +91601,21 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"sLf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room"
+ },
+/obj/effect/mapping_helpers/airlock/abandoned,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sLp" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
@@ -53134,6 +91634,7 @@
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"sLJ" = (
/obj/effect/turf_decal/siding/white{
dir = 6
@@ -53143,6 +91644,24 @@
},
/turf/open/water,
/area/station/service/hydroponics/garden)
+=======
+"sLF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Science Research";
+ network = list("ss13","rd")
+ },
+/obj/machinery/light/small/directional/south,
+/obj/structure/noticeboard/rd{
+ pixel_y = -32
+ },
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/science/lab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sLN" = (
/obj/effect/landmark/start/ai/secondary,
/obj/item/radio/intercom/directional/north{
@@ -53200,6 +91719,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/grimy,
/area/station/service/chapel/office)
+<<<<<<< HEAD
+=======
+"sMo" = (
+/obj/structure/sign/poster/official/cleanliness/directional/west,
+/obj/structure/sink/directional/south,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/mirror/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sMB" = (
/obj/machinery/door/window/brigdoor/security/cell/left/directional/south{
id = "Cell 1";
@@ -53294,6 +91825,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/science/genetics)
+<<<<<<< HEAD
"sOe" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/brown{
@@ -53301,6 +91833,8 @@
},
/turf/open/floor/iron,
/area/station/construction/storage_wing)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sOi" = (
/obj/structure/table/wood,
/obj/item/folder/red,
@@ -53358,6 +91892,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
"sPh" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 4
@@ -53377,10 +91912,36 @@
/obj/effect/turf_decal/siding/wood/corner{
dir = 4
},
+=======
+"sPj" = (
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/mapping_helpers/airlock/access/all/security/hos,
/obj/effect/landmark/navigate_destination,
/turf/open/floor/wood,
/area/station/command/heads_quarters/hos)
+<<<<<<< HEAD
+=======
+"sPq" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sPy" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -53401,6 +91962,18 @@
/obj/machinery/light_switch/directional/north,
/turf/open/floor/iron/white,
/area/station/science/explab)
+<<<<<<< HEAD
+=======
+"sPO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sPV" = (
/obj/structure/closet/secure_closet/captains,
/obj/structure/window/reinforced/spawner/directional/north,
@@ -53411,12 +91984,15 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"sQh" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/iron,
/area/station/ai_monitored/command/storage/eva)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sQp" = (
/obj/machinery/exodrone_launcher,
/obj/item/exodrone,
@@ -53674,6 +92250,16 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
+<<<<<<< HEAD
+=======
+"sTU" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sTW" = (
/obj/effect/turf_decal/tile/yellow,
/obj/structure/disposalpipe/segment{
@@ -53690,6 +92276,22 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/plating,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"sUc" = (
+/obj/machinery/conveyor/inverted{
+ dir = 6;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sUo" = (
/turf/open/floor/engine/air,
/area/station/engineering/atmos)
@@ -53701,6 +92303,26 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"sUy" = (
+/obj/structure/table/wood,
+/obj/structure/sign/picture_frame/showroom/one{
+ pixel_x = -8;
+ pixel_y = 32
+ },
+/obj/structure/sign/picture_frame/showroom/two{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/item/phone{
+ desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sUC" = (
/obj/machinery/light/small/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -53715,6 +92337,15 @@
},
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
+=======
+"sUD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sUJ" = (
/obj/effect/spawner/random/structure/closet_maintenance,
/obj/effect/spawner/random/maintenance/two,
@@ -53828,6 +92459,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"sWq" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
@@ -53842,6 +92474,8 @@
/obj/effect/turf_decal/tile/green/fourcorners,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sWs" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/cable,
@@ -53881,6 +92515,14 @@
/obj/machinery/duct,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
+=======
+"sWU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sWV" = (
/turf/closed/wall/r_wall,
/area/station/security/detectives_office)
@@ -53951,6 +92593,7 @@
/obj/structure/chair/office{
dir = 4
},
+<<<<<<< HEAD
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
"sYp" = (
@@ -54149,6 +92792,190 @@
/obj/effect/turf_decal/trimline/blue/filled/corner{
dir = 1
},
+=======
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"sYh" = (
+/obj/structure/sign/plaques/kiddie/perfect_drone{
+ pixel_y = 32
+ },
+/obj/structure/table/wood,
+/obj/item/storage/backpack/duffelbag/drone,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"sYp" = (
+/obj/machinery/vending/boozeomat,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"sZa" = (
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/landmark/start/clown,
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"sZo" = (
+/obj/machinery/light/directional/north,
+/obj/structure/reagent_dispensers/watertank/high,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"sZH" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"sZI" = (
+/obj/structure/table,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/corner,
+/obj/item/hfr_box/core,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"sZK" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/dropper,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/reagent_containers/cup/glass/shaker,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"sZN" = (
+/obj/machinery/atmospherics/components/binary/pump,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"sZP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/hallway/secondary/entry)
+"sZU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tak" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"tar" = (
+/obj/machinery/medical_kiosk,
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"taz" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/station/solars/starboard/fore)
+"taI" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/medical/medbay/central)
+"taO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"taW" = (
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"taX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"taZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"tbd" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"tbl" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/door/airlock/public/glass{
+ name = "Bar"
+ },
+/turf/open/floor/iron,
+/area/station/commons/lounge)
+"tbp" = (
+/obj/machinery/door/airlock/command/glass{
+ name = "Server Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
+/obj/effect/mapping_helpers/airlock/access/all/science/rd,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"tbI" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"tbK" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/station/service/library)
+"tck" = (
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
"tcn" = (
@@ -54157,10 +92984,48 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"tcr" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/coffeepack{
+ pixel_x = 15;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/glass/bottle/juice/cream{
+ pixel_x = 15;
+ pixel_y = 2
+ },
+/obj/machinery/coffeemaker/impressa,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tcu" = (
/obj/machinery/light/directional/east,
/turf/open/floor/iron,
/area/station/security/courtroom)
+<<<<<<< HEAD
+=======
+"tcx" = (
+/obj/structure/table,
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 1
+ },
+/obj/item/aicard,
+/obj/item/pai_card,
+/obj/item/circuitboard/aicore,
+/obj/machinery/keycard_auth/wall_mounted/directional/north{
+ pixel_x = -5
+ },
+/obj/machinery/button/door/directional/north{
+ id = "xeno_blastdoor";
+ name = "Xenobiology Containment Control";
+ pixel_x = 8;
+ req_access = list("rd")
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tcC" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
@@ -54188,6 +93053,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/security/prison)
+<<<<<<< HEAD
"tcY" = (
/obj/effect/landmark/start/quartermaster,
/obj/structure/cable,
@@ -54200,6 +93066,8 @@
},
/turf/open/floor/iron/diagonal,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tdf" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -54226,6 +93094,7 @@
"tdW" = (
/turf/closed/wall/r_wall,
/area/station/security/execution/education)
+<<<<<<< HEAD
"ted" = (
/obj/item/radio/intercom/directional/west,
/obj/structure/table/glass,
@@ -54243,6 +93112,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tep" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable,
@@ -54252,6 +93123,20 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
+=======
+"teq" = (
+/obj/item/cultivator,
+/obj/item/crowbar,
+/obj/item/plant_analyzer,
+/obj/item/reagent_containers/cup/watering_can,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tew" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -54341,6 +93226,7 @@
},
/turf/open/floor/iron,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
"tgz" = (
/obj/item/dice/d20,
/obj/item/dice,
@@ -54354,6 +93240,8 @@
/obj/structure/sign/poster/contraband/random/directional/south,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tgC" = (
/obj/structure/noticeboard/directional/south,
/obj/structure/table/wood,
@@ -54375,6 +93263,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
"tgE" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -54410,6 +93299,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tgI" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -54480,6 +93371,22 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
+=======
+"tik" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/machinery/rnd/production/techfab/department/cargo,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"tit" = (
+/obj/structure/sink/directional/east,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tiA" = (
/obj/machinery/door/airlock{
id_tag = "Cabin2";
@@ -54493,6 +93400,7 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
"tiV" = (
/obj/structure/cable,
/obj/effect/turf_decal/siding/thinplating_new{
@@ -54503,6 +93411,22 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"tjc" = (
+/obj/structure/table/reinforced,
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = -8;
+ pixel_y = 9
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/cell_charger,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tjf" = (
/obj/machinery/hydroponics/soil{
pixel_y = 8
@@ -54544,6 +93468,7 @@
},
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
"tjz" = (
/obj/structure/table/reinforced,
/obj/item/stock_parts/power_store/cell/high{
@@ -54558,6 +93483,8 @@
/obj/machinery/cell_charger,
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tjE" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/spawner/random/structure/closet_maintenance,
@@ -54579,6 +93506,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"tjR" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/mirror/directional/west,
@@ -54591,6 +93519,8 @@
/obj/item/stock_parts/power_store/cell/high,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tech)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tkf" = (
/obj/structure/extinguisher_cabinet/directional/east,
/obj/machinery/conveyor{
@@ -54692,6 +93622,7 @@
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
},
+<<<<<<< HEAD
/turf/open/floor/iron/white,
/area/station/science/cytology)
"tmn" = (
@@ -54709,12 +93640,18 @@
/obj/machinery/light/small/broken/directional/east,
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tmq" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
},
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"tms" = (
/obj/machinery/turretid{
icon_state = "control_stun";
@@ -54760,6 +93697,8 @@
/obj/structure/window/spawner/directional/south,
/turf/open/floor/iron/white,
/area/station/security/prison/mess)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tmz" = (
/obj/machinery/door/poddoor/shutters{
dir = 1;
@@ -54833,6 +93772,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark/telecomms,
/area/station/tcommsat/server)
+<<<<<<< HEAD
+=======
+"tnk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/structure/crate_abandoned,
+/obj/effect/turf_decal/bot_white,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tnm" = (
/obj/structure/chair{
dir = 1
@@ -54848,6 +93796,15 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
+=======
+"tnF" = (
+/obj/machinery/light/small/dim/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/contraband/random/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tnG" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/showcase/machinery/oldpod{
@@ -54876,6 +93833,7 @@
},
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
"tou" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -54917,6 +93875,23 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+=======
+"toK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"toM" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"toR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/dark/textured_large,
/area/station/science/cytology)
"toV" = (
@@ -54949,6 +93924,18 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
+=======
+"tpA" = (
+/obj/machinery/cell_charger{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tpD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -54964,6 +93951,7 @@
/obj/machinery/griddle,
/turf/open/floor/iron/cafeteria,
/area/station/service/kitchen)
+<<<<<<< HEAD
"tpY" = (
/obj/structure/table,
/obj/item/reagent_containers/cup/beaker{
@@ -54995,6 +93983,8 @@
/obj/machinery/light_switch/directional/east,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tqd" = (
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron/white,
@@ -55024,6 +94014,15 @@
/obj/effect/spawner/random/clothing/costume,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
+=======
+"tqo" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/effect/landmark/start/cargo_technician,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tqx" = (
/obj/machinery/door/window/left/directional/north{
name = "Mass Driver Control Door";
@@ -55063,6 +94062,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+<<<<<<< HEAD
"tro" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/disposalpipe/segment{
@@ -55070,6 +94070,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"trx" = (
/obj/machinery/airalarm/directional/north,
/obj/machinery/light/directional/north,
@@ -55100,6 +94102,15 @@
"tsd" = (
/turf/closed/wall,
/area/station/maintenance/space_hut)
+<<<<<<< HEAD
+=======
+"tsi" = (
+/obj/structure/sign/warning/vacuum/external/directional/east,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tst" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -55195,6 +94206,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"ttT" = (
/obj/structure/table/wood,
/obj/item/book/manual/wiki/security_space_law,
@@ -55206,6 +94218,8 @@
/obj/machinery/power/apc/auto_name/directional/west,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ttW" = (
/obj/effect/mapping_helpers/burnt_floor,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
@@ -55274,6 +94288,15 @@
},
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+<<<<<<< HEAD
+=======
+"tvv" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tvE" = (
/turf/closed/wall/r_wall,
/area/station/command/gateway)
@@ -55301,6 +94324,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/space,
/area/space/nearstation)
+<<<<<<< HEAD
"twg" = (
/obj/machinery/conveyor_switch/oneway{
dir = 8;
@@ -55314,11 +94338,24 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"twj" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
+=======
+"twl" = (
+/obj/structure/table,
+/obj/item/hand_tele,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/teleporter)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"twr" = (
/obj/effect/spawner/random/structure/grille,
/turf/open/floor/plating,
@@ -55487,6 +94524,21 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"tzI" = (
+/obj/structure/table/reinforced,
+/obj/item/emergency_bed,
+/obj/item/emergency_bed{
+ pixel_y = 3
+ },
+/obj/item/emergency_bed{
+ pixel_y = 6
+ },
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tzJ" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -55624,6 +94676,24 @@
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/iron/dark/textured,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"tCC" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"tCF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tCG" = (
/obj/effect/landmark/navigate_destination,
/turf/open/floor/iron,
@@ -55643,10 +94713,13 @@
},
/turf/open/floor/iron,
/area/station/security/office)
+<<<<<<< HEAD
"tCN" = (
/obj/structure/cable,
/turf/closed/wall,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tCS" = (
/turf/closed/wall/r_wall,
/area/station/maintenance/starboard/fore)
@@ -55702,6 +94775,7 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/bar{
dir = 1
},
@@ -55877,6 +94951,164 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+=======
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tEm" = (
+/obj/structure/broken_flooring/pile/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"tEr" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"tEt" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/research)
+"tEy" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"tEP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tcomms)
+"tFj" = (
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"tFr" = (
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"tGI" = (
+/obj/machinery/light_switch/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"tGL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tGS" = (
+/obj/structure/cable,
+/obj/machinery/door/window/left/directional/south{
+ name = "Containment Pen #2";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"tGU" = (
+/obj/structure/sign/poster/random/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/donkpockets{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/effect/spawner/random/food_or_drink/donkpockets{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/machinery/light/small/broken/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"tGX" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"tHE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/landmark/blobstart,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"tHR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"tHT" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"tHZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"tIa" = (
+/obj/structure/cable/multilayer/connected,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"tIb" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"tId" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/machinery/camera/directional/east{
+ c_tag = "Science Maintenance Corridor";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tIe" = (
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/iron/white,
@@ -55930,6 +95162,20 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/iron,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"tIR" = (
+/obj/structure/table/wood,
+/obj/item/storage/photo_album{
+ pixel_y = -4
+ },
+/obj/item/camera{
+ pixel_y = 4
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tJb" = (
/obj/machinery/firealarm/directional/north,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -55952,6 +95198,20 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/surgery/theatre)
+<<<<<<< HEAD
+=======
+"tJB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tJE" = (
/obj/effect/turf_decal/trimline/red/filled/corner,
/turf/open/floor/iron/dark,
@@ -55987,6 +95247,7 @@
},
/turf/open/floor/iron/dark,
/area/station/security/office)
+<<<<<<< HEAD
"tJQ" = (
/obj/machinery/computer/cargo{
dir = 4
@@ -55995,6 +95256,8 @@
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tKa" = (
/obj/machinery/newscaster/directional/west,
/obj/structure/cable,
@@ -56037,6 +95300,43 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"tKR" = (
+/obj/structure/table/glass,
+/obj/machinery/fax{
+ fax_name = "Research Division";
+ name = "Research Division Fax Machine";
+ pixel_x = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"tLb" = (
+/obj/structure/sign/warning/electric_shock/directional/south,
+/turf/open/space/basic,
+/area/space/nearstation)
+"tLc" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door_buttons/airlock_controller{
+ idExterior = "xeno_airlock_exterior";
+ idInterior = "xeno_airlock_interior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Console";
+ pixel_x = -25;
+ pixel_y = -25;
+ req_access = list("xenobiology")
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tLd" = (
/obj/structure/chair/office{
dir = 8
@@ -56046,6 +95346,23 @@
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden,
/turf/open/floor/iron,
/area/station/engineering/atmos/storage/gas)
+<<<<<<< HEAD
+=======
+"tLg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_x = -8;
+ pixel_y = -24
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_x = -8;
+ pixel_y = -36
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tLi" = (
/obj/effect/landmark/start/captain,
/obj/structure/chair/comfy/brown{
@@ -56071,6 +95388,27 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
+=======
+"tLH" = (
+/obj/structure/table,
+/obj/structure/cable,
+/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/power/apc/auto_name/directional/east,
+/obj/effect/turf_decal/trimline/purple/filled/warning{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/science/lab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tLN" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -56091,6 +95429,14 @@
/obj/effect/landmark/generic_maintenance_landmark,
/turf/open/floor/plating,
/area/station/maintenance/fore)
+<<<<<<< HEAD
+=======
+"tMn" = (
+/obj/structure/cable,
+/obj/structure/railing/corner/end,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tMA" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=10-Aft-To-Central";
@@ -56135,12 +95481,38 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"tMX" = (
/obj/effect/turf_decal/trimline/brown/filled/shrink_cw{
dir = 8
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"tMS" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"tMY" = (
+/obj/structure/cable,
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/item/radio/off{
+ pixel_x = -11;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/item/binoculars,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tNg" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -56165,12 +95537,31 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"tND" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/circuit/green{
luminosity = 2
},
/area/station/ai_monitored/command/nuke_storage)
+=======
+"tNC" = (
+/obj/structure/table/wood,
+/obj/structure/sign/picture_frame/showroom/three{
+ pixel_x = -8;
+ pixel_y = 32
+ },
+/obj/structure/sign/picture_frame/showroom/four{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/item/pai_card{
+ desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape.";
+ name = "\improper Nanotrasen-brand personal AI device exhibit"
+ },
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tNH" = (
/obj/structure/cable,
/obj/effect/mapping_helpers/broken_floor,
@@ -56314,6 +95705,22 @@
/obj/machinery/digital_clock/directional/south,
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
+=======
+"tPt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/any/supply/mining,
+/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tPw" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
@@ -56349,11 +95756,48 @@
/obj/item/clothing/mask/surgical,
/turf/open/floor/iron/showroomfloor,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
"tQo" = (
/obj/effect/turf_decal/tile/brown/opposingcorners,
/mob/living/basic/sloth/citrus,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"tPW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"tQp" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/obj/machinery/button/door/directional/west{
+ id = "qmroom";
+ name = "Privacy Blast Doors Control";
+ pixel_y = -7
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/west{
+ pixel_x = -22;
+ pixel_y = 5
+ },
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tQC" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom,
/obj/effect/turf_decal/delivery,
@@ -56410,6 +95854,7 @@
"tSw" = (
/turf/closed/wall,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
"tSy" = (
/obj/machinery/vending/autodrobe,
/obj/structure/sign/poster/contraband/clown/directional/east,
@@ -56422,6 +95867,8 @@
/obj/effect/turf_decal/trimline/brown/filled/line,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tSP" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -56439,6 +95886,7 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
"tTd" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
@@ -56446,6 +95894,8 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tTB" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2,
/obj/structure/window/reinforced/spawner/directional/south,
@@ -56493,6 +95943,7 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"tTZ" = (
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
/obj/structure/table,
@@ -56506,6 +95957,23 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+=======
+"tUc" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/table,
+/obj/effect/turf_decal/bot,
+/obj/item/computer_disk{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/computer_disk{
+ pixel_x = -5;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tUl" = (
/obj/structure/table,
/obj/item/stock_parts/micro_laser,
@@ -56524,6 +95992,20 @@
"tUn" = (
/turf/closed/wall,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
+=======
+"tUt" = (
+/obj/structure/table/glass,
+/obj/item/clothing/accessory/armband/hydro,
+/obj/item/clothing/suit/apron,
+/obj/item/wrench,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tUu" = (
/obj/structure/disposalpipe/junction{
dir = 4
@@ -56583,6 +96065,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/security/execution/education)
+<<<<<<< HEAD
+=======
+"tVk" = (
+/obj/machinery/light/directional/south,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/rack,
+/obj/item/storage/briefcase/secure,
+/obj/item/cigarette/cigar,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tVm" = (
/obj/structure/closet/secure_closet/brig,
/obj/effect/turf_decal/trimline/red/filled/line{
@@ -56687,6 +96183,19 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/aft/lesser)
+<<<<<<< HEAD
+=======
+"tWU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/departments/vault/directional/north{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tWV" = (
/obj/machinery/holopad,
/obj/structure/cable,
@@ -56727,6 +96236,18 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
+=======
+"tXO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tXU" = (
/obj/machinery/door/airlock/maintenance,
/obj/structure/cable,
@@ -56802,6 +96323,16 @@
/obj/effect/mapping_helpers/airlock/access/all/security/general,
/turf/open/floor/plating,
/area/station/security/execution/transfer)
+<<<<<<< HEAD
+=======
+"tYU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tYW" = (
/obj/machinery/light/directional/south,
/obj/structure/cable,
@@ -56859,6 +96390,7 @@
/obj/item/canvas/twentythree_twentythree,
/turf/open/floor/iron,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
"tZV" = (
/obj/structure/window/spawner/directional/west,
/obj/structure/window/spawner/directional/south,
@@ -56869,6 +96401,8 @@
/obj/structure/flora/grass/jungle/b/style_random,
/turf/open/floor/grass,
/area/station/service/hydroponics/garden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tZX" = (
/obj/structure/window/spawner/directional/west,
/obj/machinery/light/floor,
@@ -56901,6 +96435,7 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/wood/parquet,
/area/station/medical/psychology)
+<<<<<<< HEAD
"uak" = (
/obj/machinery/status_display/evac/directional/north,
/obj/item/folder/yellow{
@@ -56916,6 +96451,8 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uam" = (
/obj/effect/turf_decal/plaque{
icon_state = "L6"
@@ -56957,6 +96494,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
+=======
+"uaN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uaR" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/engine,
@@ -56996,6 +96542,19 @@
/obj/structure/sign/directions/evac,
/turf/closed/wall/r_wall,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
+=======
+"ubj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/poddoor/shutters{
+ name = "Warehouse Shutters";
+ id = "warehouse"
+ },
+/turf/open/floor/catwalk_floor,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ubl" = (
/obj/machinery/telecomms/broadcaster/preset_left,
/turf/open/floor/circuit/telecomms/mainframe,
@@ -57043,6 +96602,30 @@
},
/turf/open/floor/iron,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
+=======
+"ubF" = (
+/obj/structure/table,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/dropper,
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = -4;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/light/small/directional/south,
+/obj/machinery/newscaster/directional/south,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ubQ" = (
/obj/effect/turf_decal/tile/neutral{
dir = 8
@@ -57141,6 +96724,16 @@
/obj/effect/turf_decal/tile/purple,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"udU" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ued" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -57206,6 +96799,7 @@
/obj/effect/mapping_helpers/requests_console/assistance,
/turf/open/floor/iron/grimy,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
"ueI" = (
/obj/machinery/light_switch/directional/west{
pixel_x = -20
@@ -57233,6 +96827,8 @@
},
/turf/open/floor/plating,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uga" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
@@ -57255,6 +96851,7 @@
name = "Transport Airlock"
},
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+<<<<<<< HEAD
dir = 8
},
/turf/open/floor/plating,
@@ -57952,10 +97549,690 @@
/area/station/commons/locker)
"usV" = (
/obj/structure/table/wood,
+=======
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"ugP" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ugY" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"uha" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/supply,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"uhq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"uhs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"uht" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"uhu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"uhx" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"uhI" = (
+/obj/structure/cable,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"uhP" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"uhT" = (
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"uhW" = (
+/obj/structure/cable,
+/obj/machinery/door/window/right/directional/west{
+ name = "Theater Stage"
+ },
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"uiw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/morgue)
+"uiB" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"uiK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"uiM" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"uiR" = (
+/obj/machinery/portable_atmospherics/canister/anesthetic_mix,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/turf_decal/siding/white{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/kitchen_coldroom,
+/area/station/medical/coldroom)
+"ujk" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"ujH" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"ujJ" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/science/central)
+"ujM" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"ujT" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/spawner/random/structure/tank_holder,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"uke" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/food_or_drink/booze{
+ spawn_loot_count = 3;
+ spawn_loot_double = 0;
+ spawn_random_offset = 1
+ },
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"ukk" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"ukm" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/light/small/directional/east,
+/obj/structure/bed,
+/obj/item/bedsheet/qm,
+/obj/effect/landmark/start/quartermaster,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"ukq" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"ukv" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/reagent_containers/cup/glass/shaker,
+/obj/item/cultivator,
+/obj/item/clothing/head/utility/chefhat,
+/obj/machinery/camera/directional/west{
+ c_tag = "Service - Starboard"
+ },
+/obj/item/storage/box/lights/mixed,
+/obj/effect/spawner/random/maintenance,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"uky" = (
+/obj/machinery/smartfridge/drinks,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"ulv" = (
+/obj/effect/turf_decal/stripes/white/line,
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/research)
+"ulA" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/space,
+/area/space/nearstation)
+"ulE" = (
+/obj/machinery/door/poddoor/massdriver_chapel,
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/station/service/chapel/funeral)
+"ulR" = (
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"umS" = (
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/computer/records/security{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/west{
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_y = -9
+ },
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"unc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"unk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{
+ filter_type = list(/datum/gas/nitrogen)
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"unt" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/obj/machinery/light/directional/east,
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"uny" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"unK" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/prison/directional/north,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/flashlight/lamp/green{
pixel_x = 1;
pixel_y = 5
},
+<<<<<<< HEAD
+=======
+/obj/item/restraints/handcuffs,
+/turf/open/floor/carpet,
+/area/station/security/detectives_office)
+"unL" = (
+/turf/closed/wall,
+/area/station/maintenance/starboard/greater)
+"unP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"unR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"uoe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uoj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"uok" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"uor" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "Supply Dock Loading Door"
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"uou" = (
+/obj/structure/rack,
+/obj/item/clothing/glasses/hud/security/sunglasses/gars{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/hud/security/sunglasses/gars{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/clothing/glasses/hud/security/sunglasses{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/hud/security/sunglasses{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/machinery/camera/motion/directional/west{
+ c_tag = "Armory - Internal"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"uoM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 locker"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"upe" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Interrogation room";
+ network = list("interrogation")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"upM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"upN" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"upR" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"upT" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"uqi" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Auxiliary Base Construction"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/aux_base,
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"uqp" = (
+/obj/machinery/door/airlock/research{
+ name = "Research Division Access"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-entrance"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"uqA" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"uqL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"uqO" = (
+/obj/structure/table,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/item/multitool/circuit{
+ pixel_x = 7
+ },
+/obj/item/multitool/circuit,
+/obj/item/multitool/circuit{
+ pixel_x = -8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"uqX" = (
+/obj/structure/cable,
+/obj/item/kirbyplants/random,
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"ure" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"urf" = (
+/obj/structure/closet/secure_closet/injection{
+ name = "educational injections locker";
+ pixel_x = 2
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"urs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"urA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"urE" = (
+/obj/machinery/power/port_gen/pacman/pre_loaded,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"urG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/plumbed,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"urK" = (
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"urQ" = (
+/obj/structure/lattice/catwalk,
+/obj/item/stack/cable_coil,
+/turf/open/space/basic,
+/area/station/solars/starboard/fore)
+"urR" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/interrogation)
+"urS" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"usg" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/table/reinforced,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/item/clothing/head/utility/welding,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"ush" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"usi" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance/two,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"usk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Auxiliary Bathrooms"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"uso" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/sign/warning/vacuum/external/directional/south,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"usA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"usB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"usC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/medical/storage)
+"usD" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Departure Lounge - Starboard Aft"
+ },
+/obj/item/kirbyplants/organic/plant16,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"usJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"usK" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/emergency,
+/obj/machinery/light_switch/directional/west,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"usP" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"usQ" = (
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/dark,
/area/station/command/bridge)
"uta" = (
@@ -57979,6 +98256,7 @@
c_tag = "Security - Office - Starboard"
},
/obj/structure/disposalpipe/segment{
+<<<<<<< HEAD
dir = 4
},
/turf/open/floor/wood,
@@ -58370,6 +98648,473 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron/white,
/area/station/science/ordnance/storage)
+=======
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/station/security/office)
+"uth" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"utk" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"utt" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"utD" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"utE" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Theater - Stage"
+ },
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/east,
+/obj/structure/table/wood,
+/obj/item/clothing/glasses/monocle,
+/obj/structure/sign/poster/random/directional/south,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"utM" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=13.3-Engineering-Central";
+ location = "13.2-Tcommstore"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"utS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/start/hangover,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"uuc" = (
+/obj/structure/chair/pew/left,
+/turf/open/floor/iron/chapel{
+ dir = 8
+ },
+/area/station/service/chapel)
+"uud" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/wrapping,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"uuv" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"uuD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"uuO" = (
+/obj/machinery/mech_bay_recharge_port{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/mechbay)
+"uvw" = (
+/obj/machinery/status_display/supply{
+ pixel_y = 32
+ },
+/obj/machinery/conveyor{
+ dir = 5;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"uvC" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"uvP" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/virology/glass{
+ name = "Containment Cells"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"uwa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"uwe" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"uwf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table/reinforced,
+/obj/item/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/pen{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/camera/directional/south{
+ c_tag = "Security Post - Cargo"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"uwh" = (
+/obj/structure/chair/comfy{
+ dir = 1
+ },
+/obj/item/clothing/suit/costume/wellworn_shirt/messy/graphic/gamer,
+/obj/item/clothing/head/fedora,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"uwy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"uwK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"uwM" = (
+/obj/effect/landmark/start/depsec/supply,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+"uwQ" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"uxa" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"uxb" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"uxm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/machinery/light/no_nightlight/directional/north,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"uxt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"uxS" = (
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"uya" = (
+/obj/machinery/disposal/delivery_chute,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/structure/window/spawner/directional/east,
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"uyd" = (
+/obj/structure/sign/warning/pods/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"uyf" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/brown/filled/line,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"uyh" = (
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"uyi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/button/door/directional/south{
+ id = "prisonereducation";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"uyr" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uyw" = (
+/obj/effect/landmark/start/chief_medical_officer,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"uyY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/directional/north,
+/turf/open/floor/wood,
+/area/station/service/library)
+"uza" = (
+/turf/closed/wall/r_wall,
+/area/station/security/prison/visit)
+"uzb" = (
+/obj/structure/rack,
+/obj/machinery/light/directional/east,
+/obj/item/fuel_pellet,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"uzc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/server)
+"uzi" = (
+/obj/structure/lattice,
+/obj/structure/chair/sofa/corp/left{
+ desc = "Looks like someone threw it out. Covered in donut crumbs.";
+ dir = 4;
+ name = "couch"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"uzk" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"uzl" = (
+/obj/machinery/camera/directional/west{
+ active_power_usage = 0;
+ c_tag = "Turbine Vent";
+ network = list("turbine");
+ use_power = 0
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"uzJ" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"uAg" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"uAu" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"uAC" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"uAE" = (
+/obj/machinery/door/airlock/external,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"uAM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"uBj" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"uBp" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"uBy" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Science Robotics Workshop";
+ network = list("ss13","rd")
+ },
+/obj/structure/cable,
+/obj/machinery/light_switch/directional/north{
+ pixel_x = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"uBC" = (
+/obj/machinery/mass_driver/shack{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/red/line,
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/station/maintenance/space_hut)
+"uBF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"uBG" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uBI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -58401,12 +99146,15 @@
/obj/structure/chair/stool/directional/south,
/turf/open/floor/iron,
/area/station/security/prison)
+<<<<<<< HEAD
"uDf" = (
/obj/effect/turf_decal/bot,
/obj/effect/landmark/start/hangover,
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uDn" = (
/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden,
/obj/effect/turf_decal/tile/yellow{
@@ -58465,6 +99213,16 @@
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
+=======
+"uEs" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uEw" = (
/obj/structure/cable,
/obj/effect/mapping_helpers/burnt_floor,
@@ -58485,6 +99243,20 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
+=======
+"uEA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uEC" = (
/obj/machinery/conveyor{
dir = 4;
@@ -58495,6 +99267,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+<<<<<<< HEAD
"uEM" = (
/obj/item/radio/intercom/directional/north,
/obj/structure/sign/poster/official/random/directional/east,
@@ -58503,10 +99276,22 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/hallway/secondary/entry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uEO" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
+=======
+"uEP" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/arrows/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uET" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 4
@@ -58633,6 +99418,23 @@
},
/turf/open/floor/iron/white,
/area/station/security/prison/visit)
+<<<<<<< HEAD
+=======
+"uGq" = (
+/obj/machinery/light_switch/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Virology Lab";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uGr" = (
/obj/machinery/door/airlock/maintenance{
name = "Crematorium"
@@ -58665,6 +99467,27 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+<<<<<<< HEAD
+=======
+"uGU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Port Primary Hallway"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uGX" = (
/obj/effect/spawner/random/structure/crate,
/turf/open/floor/plating,
@@ -58685,12 +99508,15 @@
/obj/effect/spawner/random/engineering/flashlight,
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
"uHh" = (
/obj/machinery/chem_master,
/obj/structure/noticeboard/directional/south,
/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uHo" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -58708,12 +99534,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"uHw" = (
/obj/effect/turf_decal/siding/white{
dir = 8
},
/turf/open/water,
/area/station/service/hydroponics/garden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uHA" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -58802,6 +99631,25 @@
/obj/machinery/computer/accounting,
/turf/open/floor/wood,
/area/station/command/heads_quarters/hop)
+<<<<<<< HEAD
+=======
+"uJz" = (
+/obj/effect/turf_decal/bot,
+/obj/structure/rack,
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/flatpack{
+ board = /obj/item/circuitboard/machine/flatpacker;
+ pixel_x = -5
+ },
+/obj/item/multitool{
+ pixel_x = 8
+ },
+/turf/open/floor/iron/checker,
+/area/station/engineering/storage_shared)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uJB" = (
/obj/structure/chair/stool/directional/east,
/turf/open/floor/iron,
@@ -58919,6 +99767,7 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/aisat/exterior)
+<<<<<<< HEAD
"uLA" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment{
@@ -58949,6 +99798,19 @@
},
/turf/open/floor/catwalk_floor/iron,
/area/station/cargo/storage)
+=======
+"uLE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uLK" = (
/obj/structure/flora/bush/pale/style_random,
/obj/structure/flora/bush/ferny/style_random,
@@ -58958,10 +99820,13 @@
/obj/structure/window/spawner/directional/north,
/turf/open/floor/grass,
/area/station/science/research)
+<<<<<<< HEAD
"uLP" = (
/obj/structure/sign/departments/exodrone/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uMb" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -58987,6 +99852,16 @@
dir = 4
},
/area/station/medical/chem_storage)
+<<<<<<< HEAD
+=======
+"uMj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uMR" = (
/obj/machinery/holopad,
/turf/open/floor/iron/white/side{
@@ -59072,6 +99947,17 @@
/obj/effect/spawner/random/trash/box,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"uNZ" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/closet/crate,
+/obj/item/toy/plush/lizard_plushie/green{
+ name = "Loads-The-Crates"
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uOd" = (
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/wood,
@@ -59217,6 +100103,20 @@
},
/turf/open/floor/iron/dark,
/area/station/security/evidence)
+<<<<<<< HEAD
+=======
+"uQL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uRa" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance"
@@ -59226,6 +100126,7 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/fore)
+<<<<<<< HEAD
"uRd" = (
/obj/structure/table/reinforced,
/obj/item/folder/white{
@@ -59250,6 +100151,8 @@
/obj/effect/turf_decal/tile/yellow/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uRl" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -59298,6 +100201,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/security/prison)
+<<<<<<< HEAD
"uSb" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -59305,6 +100209,8 @@
},
/turf/open/floor/iron,
/area/station/construction/storage_wing)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uSz" = (
/obj/structure/table,
/obj/item/phone{
@@ -59314,6 +100220,7 @@
/obj/machinery/newscaster/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"uSF" = (
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable,
@@ -59355,6 +100262,42 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
+=======
+"uSM" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{
+ dir = 1
+ },
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"uSO" = (
+/obj/effect/spawner/random/structure/crate,
+/obj/effect/turf_decal/bot_white,
+/obj/structure/cable,
+/obj/effect/turf_decal/arrows/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"uTj" = (
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"uTw" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"uTF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/mapping_helpers/airlock/access/all/security/brig,
/turf/open/floor/iron/dark,
/area/station/security/brig)
@@ -59397,6 +100340,19 @@
/obj/effect/mapping_helpers/airlock/access/any/command/minisat,
/turf/open/floor/iron/dark,
/area/station/engineering/transit_tube)
+<<<<<<< HEAD
+=======
+"uUb" = (
+/obj/machinery/reagentgrinder,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/obj/structure/table/glass,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uUg" = (
/obj/effect/spawner/random/engineering/atmospherics_portable,
/turf/open/floor/plating,
@@ -59409,6 +100365,7 @@
/obj/effect/spawner/random/structure/closet_maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+<<<<<<< HEAD
"uUB" = (
/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/cable,
@@ -59434,6 +100391,16 @@
/turf/open/space/basic,
/area/space/nearstation)
"uUL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+=======
+"uUL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 8
},
@@ -59485,6 +100452,358 @@
/obj/structure/sign/poster/official/nanotrasen_logo/directional/east,
/turf/open/floor/iron/dark/textured,
/area/station/engineering/atmos)
+"uVm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uVv" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"uVx" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"uVE" = (
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"uVJ" = (
+/obj/effect/spawner/random/structure/grille,
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"uVQ" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"uWk" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/science/xenobiology/hallway)
+"uWn" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"uWo" = (
+/obj/effect/turf_decal/trimline/red/filled/corner,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"uWs" = (
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/mechbay)
+"uWt" = (
+/obj/structure/rack,
+/obj/item/stack/medical/mesh,
+/obj/item/stack/medical/suture,
+/obj/item/reagent_containers/syringe/multiver,
+/obj/item/reagent_containers/syringe/epinephrine{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"uWx" = (
+/obj/effect/turf_decal/bot/left,
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"uWA" = (
+/obj/structure/table/wood/fancy/royalblue,
+/obj/machinery/door/window/left/directional/west{
+ name = "Secure Art Exhibition";
+ req_access = list("library")
+ },
+/obj/machinery/light/directional/east,
+/obj/structure/sign/painting/library_secure{
+ pixel_x = 32
+ },
+/obj/effect/spawner/random/decoration/statue{
+ spawn_loot_chance = 50
+ },
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/carpet/royalblue,
+/area/station/service/library)
+"uWK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/airlock{
+ name = "Theater Backstage"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/service/theatre,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/machinery/door/firedoor,
+/turf/open/floor/wood,
+/area/station/service/theater)
+"uWL" = (
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/maintenance/port/aft)
+"uWS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tech)
+"uWU" = (
+/obj/structure/table/reinforced,
+/obj/structure/displaycase/forsale/kitchen{
+ pixel_y = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/bar)
+"uXd" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/main)
+"uXt" = (
+/obj/docking_port/stationary/syndicate/northwest{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/space)
+"uXG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Psychology Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/psychology,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"uXS" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/structure/extinguisher_cabinet/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"uYi" = (
+/turf/open/floor/plating/airless,
+/area/station/solars/starboard/aft)
+"uYl" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"uYm" = (
+/obj/machinery/meter,
+/obj/machinery/door/window/left/directional/north{
+ name = "Gas Ports"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"uYp" = (
+/turf/closed/wall,
+/area/station/medical/break_room)
+"uYB" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/obj/effect/turf_decal/arrows/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"uYD" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"uYH" = (
+/obj/structure/reflector/double/anchored{
+ dir = 5
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"uYI" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"uYL" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 5
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"uYP" = (
+/obj/structure/cable,
+/obj/machinery/door/window/left/directional/north{
+ name = "Containment Pen #7";
+ req_access = list("xenobiology")
+ },
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"uYT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"uZa" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron,
+/area/station/security/prison/work)
+"uZj" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/obj/structure/sign/directions/command{
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/station/commons/storage/tools)
+"uZo" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"uZu" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"uZD" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/service/chapel)
+"uZK" = (
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"uZL" = (
+/obj/machinery/requests_console/directional/north{
+ department = "Law Office";
+ name = "Lawyer Requests Console"
+ },
+/obj/machinery/newscaster/directional/west,
+/obj/structure/aquarium/lawyer,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"uZP" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+<<<<<<< HEAD
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/storage_shared)
+"uUX" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai)
+"uVd" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/interrogation)
+"uVf" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 12
+ },
+/obj/item/electronics/airalarm{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/electronics/firealarm{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/item/electronics/airalarm{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/electronics/firealarm{
+ pixel_x = 5
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/structure/sign/poster/official/nanotrasen_logo/directional/east,
+/turf/open/floor/iron/dark/textured,
+/area/station/engineering/atmos)
"uVj" = (
/obj/machinery/button/ignition{
id = "Xenobio";
@@ -59802,11 +101121,33 @@
c_tag = "Prison Isolation Cell";
network = list("ss13","prison","isolation")
},
+=======
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"vae" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Prison Isolation Cell";
+ network = list("ss13","prison","isolation")
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/obj/effect/turf_decal/tile/red/fourcorners,
/turf/open/floor/iron/white,
/area/station/security/prison/safe)
+<<<<<<< HEAD
+=======
+"vag" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/item/stock_parts/power_store/cell/high,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vaB" = (
/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
@@ -59875,6 +101216,16 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
+=======
+"vbF" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/station/ai_monitored/command/nuke_storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vbL" = (
/obj/machinery/door/airlock/research{
name = "Ordnance Lab"
@@ -59922,6 +101273,7 @@
},
/turf/open/floor/plating,
/area/station/service/chapel/funeral)
+<<<<<<< HEAD
"vdi" = (
/obj/machinery/camera/directional/west{
c_tag = "Security - Office - Port"
@@ -59929,6 +101281,34 @@
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
},
+=======
+"vde" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door/directional/north{
+ id = "warehouse";
+ name = "Warehouse Shutters Control"
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/mapping_helpers/turn_off_lights_with_lightswitch,
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"vdg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/netpod,
+/obj/effect/decal/cleanable/robot_debris,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/cargo/bitrunning/den)
+"vdi" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Security - Office - Port"
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/security/office)
"vdx" = (
@@ -59943,6 +101323,19 @@
},
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"vdW" = (
+/obj/structure/cable,
+/obj/structure/closet/crate,
+/obj/effect/turf_decal/bot/left,
+/obj/structure/window/spawner/directional/east,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"veo" = (
/obj/structure/weightmachine/weightlifter{
color = "#f5a183";
@@ -59957,6 +101350,7 @@
/obj/effect/turf_decal/bot_white,
/obj/effect/turf_decal/siding/white{
dir = 4
+<<<<<<< HEAD
},
/turf/open/floor/iron/dark,
/area/station/medical/storage)
@@ -60193,6 +101587,272 @@
/obj/effect/turf_decal/tile/neutral{
dir = 8
},
+=======
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"veO" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"veS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"vfa" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/treatment_center)
+"vfh" = (
+/obj/machinery/door/window/right/directional/west{
+ name = "Research Test Chamber";
+ req_access = list("science")
+ },
+/turf/open/floor/engine,
+/area/station/science/explab)
+"vfk" = (
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter)
+"vfv" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"vfC" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"vfO" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/obj/machinery/disposal/bin/tagger,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"vfU" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"vgd" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Telecomms Storage"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms,
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tcomms)
+"vgr" = (
+/obj/item/crowbar,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"vgu" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"vgv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"vgW" = (
+/obj/machinery/door/window/left/directional/west{
+ name = "MiniSat Airlock Access"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"vgZ" = (
+/obj/structure/table/glass,
+/obj/structure/cable,
+/obj/machinery/fax{
+ fax_name = "Chief Medical Officer's Office";
+ name = "Chief Medical Officer's Fax Machine"
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+"vhb" = (
+/obj/machinery/chem_dispenser,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"vhj" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Courtroom"
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"vht" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"vhv" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmospherics_engine)
+"vhB" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"vhD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"via" = (
+/obj/machinery/door/airlock/medical{
+ name = "Medical Cold Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/surgery,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/medical/coldroom)
+"vif" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"vip" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/machinery/airalarm/directional/north,
+/mob/living/carbon/human/species/monkey,
+/turf/open/floor/grass,
+/area/station/medical/virology)
+"vis" = (
+/obj/structure/filingcabinet,
+/obj/item/folder/documents,
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/poster/traitor,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/nuke_storage)
+"viF" = (
+/obj/machinery/computer/upload/borg,
+/obj/machinery/door/window/left/directional/south{
+ name = "Cyborg Upload Console Window";
+ req_access = list("ai_upload")
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"viH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"viQ" = (
+/obj/effect/turf_decal/trimline/green/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/prison/garden)
+"viS" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/exit/departure_lounge)
+"viU" = (
+/obj/effect/landmark/start/atmospheric_technician,
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"vjg" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/turf_decal/tile/brown/diagonal_centre,
+/obj/effect/turf_decal/tile/yellow/diagonal_edge,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/diagonal,
+/area/station/cargo/storage)
+"vjk" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"vjn" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/hallway/primary/central)
"vjv" = (
@@ -60246,6 +101906,33 @@
},
/turf/open/floor/iron,
/area/station/cargo/sorting)
+<<<<<<< HEAD
+=======
+"vjX" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/pen,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "pharmacy_shutters_2";
+ name = "Pharmacy Shutters"
+ },
+/obj/machinery/door/window/right/directional/east{
+ name = "Pharmacy Desk";
+ req_access = list("pharmacy")
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vjZ" = (
/obj/structure/table,
/turf/open/floor/iron/dark/side,
@@ -60321,6 +102008,16 @@
/obj/effect/spawner/random/techstorage/rnd_secure_all,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
+=======
+"vlk" = (
+/obj/effect/turf_decal/trimline/red/filled/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vlq" = (
/obj/effect/landmark/start/atmospheric_technician,
/turf/open/floor/iron,
@@ -60329,6 +102026,7 @@
/obj/item/target/alien/anchored,
/obj/machinery/camera/preset/ordnance{
dir = 5
+<<<<<<< HEAD
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating/airless{
@@ -60347,6 +102045,60 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
+=======
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating/airless{
+ luminosity = 2
+ },
+/area/station/science/ordnance/bomb)
+"vlH" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"vlP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+"vlY" = (
+/obj/structure/table/reinforced,
+/obj/machinery/camera/directional/north{
+ c_tag = "Science Robotics Office";
+ network = list("ss13","rd")
+ },
+/obj/item/radio/intercom/directional/north,
+/obj/item/storage/medkit{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/storage/medkit{
+ pixel_x = -5;
+ pixel_y = -1
+ },
+/obj/item/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/item/healthanalyzer{
+ pixel_x = -3;
+ pixel_y = -4
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"vlZ" = (
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/aft)
@@ -60359,6 +102111,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/grimy,
/area/station/tcommsat/computer)
+<<<<<<< HEAD
"vms" = (
/obj/effect/spawner/random/maintenance,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -60368,6 +102121,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vmx" = (
/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
dir = 6
@@ -60384,6 +102139,7 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/engineering/atmospherics_engine)
+<<<<<<< HEAD
"vmS" = (
/obj/machinery/camera/directional/north,
/obj/machinery/airalarm/directional/north,
@@ -60393,6 +102149,14 @@
},
/turf/open/floor/iron,
/area/station/cargo/lobby)
+=======
+"vmU" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/water,
+/area/station/service/hydroponics/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vmX" = (
/obj/machinery/light/directional/west,
/obj/structure/disposalpipe/segment,
@@ -60446,11 +102210,14 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/station/commons/vacant_room/commissary)
+<<<<<<< HEAD
"vnP" = (
/obj/structure/lattice,
/obj/structure/sign/warning/secure_area/directional/east,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vnV" = (
/obj/machinery/airalarm/directional/west,
/obj/effect/turf_decal/siding/wood{
@@ -60483,6 +102250,8 @@
},
/obj/effect/turf_decal/delivery/white{
color = "#52B4E9"
+<<<<<<< HEAD
+=======
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -60491,10 +102260,22 @@
/obj/effect/turf_decal/tile/neutral/half,
/obj/effect/turf_decal/tile/neutral/half{
dir = 1
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/turf/open/floor/iron/dark/smooth_half{
dir = 4
},
+<<<<<<< HEAD
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/tile/neutral/half,
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 4
+ },
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/medical/morgue)
"voQ" = (
/obj/machinery/disposal/bin,
@@ -60617,6 +102398,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
"vqN" = (
/obj/structure/table/reinforced,
/obj/item/paper_bin{
@@ -60626,6 +102408,8 @@
/obj/effect/turf_decal/tile/yellow/fourcorners,
/turf/open/floor/iron,
/area/station/hallway/primary/aft)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vqU" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -60633,6 +102417,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"vre" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -60649,6 +102434,8 @@
/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
/turf/open/floor/iron,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vrn" = (
/obj/item/seeds/wheat,
/obj/item/seeds/sugarcane,
@@ -60708,6 +102495,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/toilet/auxiliary)
+<<<<<<< HEAD
"vsz" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -60721,6 +102509,8 @@
"vsD" = (
/turf/open/floor/engine/vacuum,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vsG" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/disposalpipe/segment{
@@ -60731,6 +102521,26 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
+=======
+"vsI" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/south,
+/obj/item/stack/sheet/glass,
+/obj/item/assembly/flash/handheld,
+/obj/item/assembly/signaler,
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/purple/half/contrasted,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vsO" = (
/obj/machinery/conveyor{
dir = 1;
@@ -60741,6 +102551,19 @@
},
/turf/open/floor/plating,
/area/station/cargo/storage)
+<<<<<<< HEAD
+=======
+"vsU" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vth" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
@@ -60809,10 +102632,54 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/vacant_room/commissary)
+<<<<<<< HEAD
"vtT" = (
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"vtI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/box/lights/mixed{
+ pixel_x = -4;
+ pixel_y = 18
+ },
+/obj/item/storage/box/lights/mixed{
+ pixel_x = 6;
+ pixel_y = 12
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/grenade/chem_grenade/cleaner{
+ pixel_x = -7;
+ pixel_y = 12
+ },
+/obj/structure/table,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"vtK" = (
+/obj/machinery/reagentgrinder{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/cup/glass/shaker{
+ pixel_x = -6
+ },
+/obj/machinery/camera/directional/south{
+ c_tag = "Bar - Counter"
+ },
+/obj/structure/table,
+/obj/machinery/requests_console/directional/south{
+ department = "Bar";
+ name = "Bar Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vtX" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -60826,6 +102693,7 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/port/aft)
+<<<<<<< HEAD
"vuf" = (
/obj/item/assembly/timer{
pixel_x = -3;
@@ -60867,6 +102735,8 @@
/obj/effect/turf_decal/tile/yellow/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vun" = (
/turf/closed/wall,
/area/station/medical/storage)
@@ -60877,6 +102747,23 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
+=======
+"vuz" = (
+/obj/structure/closet/crate,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/spawner/random/engineering/flashlight,
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vuJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
@@ -60958,6 +102845,14 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"vwi" = (
+/obj/structure/table,
+/obj/item/cigarette/pipe,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vwn" = (
/obj/item/kirbyplants/organic/plant10,
/turf/open/floor/wood/large,
@@ -60970,6 +102865,7 @@
/obj/machinery/duct,
/turf/open/floor/iron/freezer,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
"vwL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security/glass{
@@ -60985,6 +102881,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vwP" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -61034,6 +102932,19 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"vxE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vxJ" = (
/obj/machinery/power/emitter/welded{
dir = 1
@@ -61041,6 +102952,20 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"vxO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vxT" = (
/obj/structure/chair/comfy{
dir = 4
@@ -61058,6 +102983,26 @@
/obj/item/storage/fancy/candle_box,
/turf/open/floor/iron/white,
/area/station/medical/abandoned)
+<<<<<<< HEAD
+=======
+"vyi" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/station/command/corporate_showroom)
+"vyv" = (
+/obj/structure/table,
+/obj/machinery/status_display/ai/directional/west,
+/obj/machinery/flasher/directional/south{
+ id = "AI"
+ },
+/obj/item/ai_module/reset{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/obj/item/ai_module/supplied/freeform,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vyy" = (
/obj/machinery/washing_machine,
/obj/effect/decal/cleanable/dirt,
@@ -61087,6 +103032,21 @@
},
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
+=======
+"vzt" = (
+/obj/structure/table/reinforced,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/neutral/half{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/obj/item/surgery_tray/full/morgue,
+/turf/open/floor/iron/dark/smooth_edge{
+ dir = 8
+ },
+/area/station/medical/morgue)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzx" = (
/obj/machinery/portable_atmospherics/canister/plasma,
/obj/effect/turf_decal/siding/purple{
@@ -61094,6 +103054,17 @@
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance/storage)
+<<<<<<< HEAD
+=======
+"vzG" = (
+/obj/item/radio/intercom/directional/north,
+/obj/structure/sign/poster/official/random/directional/east,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/hallway/secondary/entry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzI" = (
/obj/structure/table,
/obj/effect/turf_decal/stripes/line,
@@ -61117,6 +103088,7 @@
},
/turf/open/floor/iron/checker,
/area/station/engineering/atmos/storage/gas)
+<<<<<<< HEAD
"vzJ" = (
/obj/structure/table,
/obj/item/stack/medical/gauze,
@@ -61129,6 +103101,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzL" = (
/obj/structure/cable,
/mob/living/carbon/human/species/monkey,
@@ -61165,6 +103139,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"vAm" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -61175,6 +103150,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAH" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
@@ -61191,6 +103168,22 @@
},
/turf/open/floor/iron/white,
/area/station/science/ordnance/storage)
+<<<<<<< HEAD
+=======
+"vAT" = (
+/obj/machinery/light/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAX" = (
/obj/structure/chair/sofa/left/brown,
/obj/structure/sign/poster/official/get_your_legs/directional/north,
@@ -61262,6 +103255,7 @@
/turf/open/floor/iron,
/area/station/engineering/gravity_generator)
"vCu" = (
+<<<<<<< HEAD
/obj/structure/table/wood,
/obj/item/clothing/head/costume/sombrero/green,
/obj/structure/sign/poster/random/directional/east,
@@ -61272,6 +103266,24 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/wood/large,
/area/station/service/theater)
+=======
+/obj/machinery/light/small/directional/west,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/sign/poster/official/random/directional/west,
+/turf/open/floor/iron,
+/area/station/commons/toilet/auxiliary)
+"vCC" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/sign/poster/contraband/random/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vCN" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
@@ -61316,6 +103328,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/office)
+<<<<<<< HEAD
"vDO" = (
/obj/structure/table/glass,
/obj/item/clothing/accessory/armband/hydro,
@@ -61327,6 +103340,8 @@
/obj/item/radio/intercom/directional/east,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vDV" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -61392,12 +103407,59 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port)
+<<<<<<< HEAD
+=======
+"vEv" = (
+/obj/machinery/computer/mecha{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/purple/filled/line{
+ dir = 5
+ },
+/obj/machinery/requests_console/directional/east{
+ department = "Research Director's Desk";
+ name = "Research Director's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/machinery/computer/security/telescreen/rd/directional/north,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vEw" = (
/obj/structure/chair/stool/directional/south,
/obj/item/radio/intercom/prison/directional/north,
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/security/prison)
+<<<<<<< HEAD
+=======
+"vEC" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/purple{
+ dir = 4
+ },
+/obj/item/radio/headset/headset_medsci{
+ pixel_x = -7;
+ pixel_y = 4
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = 6;
+ pixel_y = 9
+ },
+/obj/item/storage/box/gloves{
+ pixel_x = 5;
+ pixel_y = 1
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vEH" = (
/obj/machinery/door/window/right/directional/east{
name = "Danger: Conveyor Access";
@@ -61551,6 +103613,13 @@
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
+=======
+"vHa" = (
+/obj/effect/decal/cleanable/oil/slippery,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vHs" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering/glass{
@@ -61671,6 +103740,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"vJo" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -61704,6 +103774,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/storage/eva)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vJy" = (
/obj/structure/rack,
/obj/item/stack/sheet/cardboard,
@@ -61747,6 +103819,7 @@
/obj/effect/landmark/blobstart,
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+<<<<<<< HEAD
"vKi" = (
/obj/structure/table,
/obj/item/storage/box/lights/mixed{
@@ -61759,11 +103832,21 @@
},
/turf/open/floor/iron,
/area/station/cargo/warehouse)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vKm" = (
/obj/structure/rack,
/obj/item/clothing/suit/hazardvest,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"vKn" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/structure/crate_loot,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vKt" = (
/obj/structure/table/wood/fancy/royalblue,
/obj/structure/sign/painting/library_secure{
@@ -61774,6 +103857,15 @@
},
/turf/open/floor/carpet/royalblue,
/area/station/service/library)
+<<<<<<< HEAD
+=======
+"vKC" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vKL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
@@ -61832,6 +103924,14 @@
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
+=======
+"vLM" = (
+/obj/structure/table/wood/poker,
+/obj/item/storage/dice,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vLX" = (
/obj/item/wrench,
/turf/open/floor/iron/dark,
@@ -61849,6 +103949,7 @@
/obj/machinery/portable_atmospherics/canister/water_vapor,
/turf/open/floor/iron,
/area/station/service/janitor)
+<<<<<<< HEAD
"vMt" = (
/mob/living/simple_animal/bot/mulebot,
/obj/structure/cable,
@@ -61858,6 +103959,8 @@
},
/turf/open/floor/catwalk_floor,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vMw" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -61872,6 +103975,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"vMI" = (
/obj/machinery/status_display/ai/directional/north,
/obj/machinery/porta_turret/ai,
@@ -61879,6 +103983,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vML" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -61915,6 +104021,15 @@
},
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
+=======
+"vNp" = (
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/lobby)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vNv" = (
/obj/structure/extinguisher_cabinet/directional/west,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -61960,6 +104075,13 @@
/obj/effect/mapping_helpers/airlock/access/any/command/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/central)
+<<<<<<< HEAD
+=======
+"vOz" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vOK" = (
/obj/structure/plasticflaps/opaque,
/obj/effect/turf_decal/bot,
@@ -62003,6 +104125,18 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
+=======
+"vPu" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/all_access,
+/obj/machinery/electrolyzer,
+/obj/machinery/atmospherics/components/binary/pump/on/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vPy" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62099,6 +104233,17 @@
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"vQT" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vQV" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -62160,6 +104305,7 @@
/obj/structure/disposalpipe/junction/flip,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
"vRu" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -62172,6 +104318,24 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+=======
+"vRr" = (
+/obj/effect/turf_decal/trimline/brown/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/brown/corner{
+ dir = 8
+ },
+/obj/machinery/door/airlock/mining{
+ name = "Bitrunning Den"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/bit_den,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark/textured_half,
+/area/station/cargo/bitrunning/den)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vRN" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -62211,6 +104375,22 @@
"vRU" = (
/turf/open/floor/carpet,
/area/station/service/theater)
+<<<<<<< HEAD
+=======
+"vSh" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vSo" = (
/obj/machinery/light/small/directional/south,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -62292,6 +104472,7 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint/science)
+<<<<<<< HEAD
"vTL" = (
/obj/machinery/light/small/directional/west,
/obj/effect/decal/cleanable/dirt,
@@ -62304,6 +104485,8 @@
/obj/structure/sign/poster/contraband/random/directional/west,
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vTV" = (
/obj/effect/turf_decal/trimline/neutral/warning{
dir = 10
@@ -62371,6 +104554,7 @@
/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
/turf/open/floor/iron/kitchen_coldroom,
/area/station/medical/coldroom)
+<<<<<<< HEAD
"vVg" = (
/obj/machinery/light_switch/directional/north,
/obj/structure/table/wood,
@@ -62429,6 +104613,25 @@
dir = 4
},
/obj/structure/cable,
+=======
+"vVp" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"vVr" = (
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"vVw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron,
@@ -62524,11 +104727,14 @@
/obj/effect/turf_decal/tile/red/opposingcorners,
/turf/open/floor/iron,
/area/station/security/checkpoint/science)
+<<<<<<< HEAD
"vWA" = (
/obj/structure/fake_stairs/directional/east,
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vWB" = (
/obj/machinery/airalarm/directional/west,
/obj/machinery/atmospherics/components/binary/pump/on{
@@ -62542,6 +104748,29 @@
dir = 1
},
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"vWD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/clothing/gloves/cargo_gauntlet{
+ pixel_y = 8
+ },
+/obj/item/clothing/gloves/cargo_gauntlet{
+ pixel_y = 5
+ },
+/obj/item/clothing/gloves/cargo_gauntlet{
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/soda_cans/random{
+ pixel_x = -9
+ },
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vWF" = (
/obj/structure/cable,
/obj/machinery/holopad,
@@ -62568,6 +104797,7 @@
"vXt" = (
/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{
dir = 9
+<<<<<<< HEAD
},
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -62575,6 +104805,15 @@
/turf/open/floor/iron/white/corner{
dir = 1
},
+=======
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/engineering/atmos)
"vXC" = (
/obj/machinery/door/airlock/maintenance{
@@ -62606,6 +104845,7 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
/area/station/command/gateway)
+<<<<<<< HEAD
"vYD" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -62619,6 +104859,40 @@
/obj/effect/turf_decal/trimline/purple/filled/line,
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/rd)
+=======
+"vYl" = (
+/obj/structure/sign/poster/random/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"vYD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"vYE" = (
+/obj/effect/turf_decal/trimline/purple/filled/line,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/rd)
+"vYF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "innerbrig";
+ name = "Brig"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/turf/open/floor/iron,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vYI" = (
/obj/structure/sign/warning/secure_area/directional/north,
/obj/structure/closet/radiation,
@@ -62655,6 +104929,7 @@
dir = 1
},
/obj/machinery/power/apc/auto_name/directional/west,
+<<<<<<< HEAD
/obj/structure/cable,
/obj/structure/sign/warning/bodysposal/directional/south,
/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
@@ -62721,10 +104996,76 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+=======
+/obj/structure/cable,
+/obj/structure/sign/warning/bodysposal/directional/south,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/aft)
+"vZm" = (
+/turf/closed/wall,
+/area/station/security/lockers)
+"vZt" = (
+/obj/structure/table,
+/obj/item/plate,
+/obj/item/flashlight/flare/candle,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/radio{
+ desc = "An old handheld radio. You could use it, if you really wanted to.";
+ icon_state = "radio";
+ name = "old radio";
+ pixel_y = 15
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/space_hut)
+"vZB" = (
+/obj/structure/sign/directions/evac,
+/turf/closed/wall,
+/area/station/maintenance/aft/lesser)
+"vZE" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"vZF" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start/chemist,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"vZM" = (
+/obj/machinery/airalarm/directional/south,
+/obj/item/stack/package_wrap{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/stack/package_wrap,
+/obj/structure/table/wood,
+/obj/item/gun/ballistic/shotgun/doublebarrel,
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"vZQ" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/command)
+"vZX" = (
+/obj/machinery/door/airlock{
+ name = "Theater Stage"
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
"vZY" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance"
@@ -62742,6 +105083,8 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/dark,
/area/station/medical/break_room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wac" = (
/obj/item/stack/sheet/glass/fifty{
pixel_x = 3;
@@ -62749,6 +105092,19 @@
},
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"waf" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/structure/cable,
+/obj/machinery/computer/security/telescreen/turbine/directional/east,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wag" = (
/obj/machinery/computer/records/medical,
/obj/structure/cable,
@@ -62832,6 +105188,7 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/storage)
+<<<<<<< HEAD
"wbv" = (
/obj/structure/sign/warning/vacuum/external/directional/north,
/obj/effect/turf_decal/stripes/line{
@@ -62844,6 +105201,28 @@
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+=======
+"wbp" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/trimline/red/filled/warning/corner,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"wbv" = (
+/obj/structure/sign/warning/vacuum/external/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/vending/coffee,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"wbF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/light_switch/directional/east,
/turf/open/floor/iron,
/area/station/engineering/main)
@@ -62851,6 +105230,7 @@
/obj/effect/spawner/random/trash/bin,
/turf/open/floor/plating,
/area/station/maintenance/starboard/aft)
+<<<<<<< HEAD
"wbT" = (
/obj/effect/turf_decal/trimline/brown/filled/line{
dir = 6
@@ -62860,6 +105240,15 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"wbW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wcf" = (
/obj/structure/closet/crate/coffin,
/obj/structure/window/spawner/directional/east,
@@ -62888,6 +105277,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
+=======
+"wcy" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wcL" = (
/obj/machinery/door/window/left/directional/west{
name = "Library Desk Door";
@@ -62900,6 +105299,7 @@
/obj/machinery/airalarm/directional/east,
/obj/structure/disposalpipe/segment,
/obj/effect/turf_decal/tile/neutral{
+<<<<<<< HEAD
dir = 4
},
/turf/open/floor/iron,
@@ -63082,6 +105482,146 @@
/obj/structure/chair/office{
dir = 8
},
+=======
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wde" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint/medical)
+"wdr" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/entry)
+"wdv" = (
+/obj/effect/turf_decal/siding/purple,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start/scientist,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/office)
+"wdB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/machinery/button/door/directional/east{
+ id = "engsm";
+ name = "Radiation Shutters Control";
+ req_access = list("engineering")
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"wdG" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin3";
+ name = "Cabin 6"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"wdK" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"wdM" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/cargo/lobby)
+"wem" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"wen" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"wep" = (
+/obj/structure/sign/departments/chemistry/directional/east,
+/obj/machinery/camera/directional/east{
+ c_tag = "Medbay Main Hallway - Virology Junction";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/light/cold/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"weq" = (
+/obj/structure/sign/warning/secure_area{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "BOMB RANGE"
+ },
+/turf/closed/wall,
+/area/station/science/ordnance/bomb)
+"wev" = (
+/obj/structure/rack,
+/obj/item/storage/box,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"wez" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"weC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"weJ" = (
+/obj/machinery/door/airlock{
+ name = "Central Emergency Storage"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/unres,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"weS" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"wfm" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"wfn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"wfu" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/carpet,
/area/station/commons/vacant_room/office)
"wfA" = (
@@ -63108,12 +105648,28 @@
dir = 1
},
/area/station/engineering/atmos/storage/gas)
+<<<<<<< HEAD
"wfY" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/tile/brown/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+"wfD" = (
+/obj/structure/fireaxecabinet/directional/south,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/pen{
+ pixel_y = 3
+ },
+/obj/machinery/light_switch/directional/east,
+/obj/structure/table/glass,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wfZ" = (
/obj/machinery/airalarm/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -63136,6 +105692,37 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"wgl" = (
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/item/poster/random_contraband,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/random/food_or_drink/booze{
+ spawn_loot_count = 2;
+ spawn_random_offset = 1
+ },
+/obj/effect/spawner/random/entertainment/musical_instrument,
+/obj/structure/sign/poster/contraband/random/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wgm" = (
+/obj/structure/sign/poster/contraband/random/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wgs" = (
/obj/machinery/door/airlock{
id_tag = "Cabin4";
@@ -63155,11 +105742,24 @@
/obj/structure/sign/map/right,
/turf/closed/wall,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
+=======
+"wgQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/mail_sorting/supply/disposals,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wha" = (
/obj/effect/spawner/random/structure/closet_maintenance,
/obj/item/stock_parts/matter_bin,
/turf/open/floor/plating,
/area/station/maintenance/starboard/fore)
+<<<<<<< HEAD
"whc" = (
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line{
@@ -63168,6 +105768,8 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"whr" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -63178,6 +105780,20 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+<<<<<<< HEAD
+=======
+"whs" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"whx" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -63255,6 +105871,7 @@
/area/station/hallway/secondary/entry)
"wiS" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+<<<<<<< HEAD
/obj/structure/cable,
/obj/machinery/light/small/directional/west,
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -66269,12 +108886,30 @@
/turf/open/floor/iron,
/area/station/commons/storage/primary)
"xnv" = (
+=======
+/obj/structure/cable,
+/obj/machinery/light/small/directional/west,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/mail_sorting/science/xenobiology,
+/obj/effect/turf_decal/tile/purple/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wjn" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/cable,
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 1
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
"xnT" = (
/obj/structure/cable,
/obj/machinery/airalarm/directional/south,
@@ -66775,6 +109410,3436 @@
/obj/effect/turf_decal/stripes/line,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
+=======
+"wjK" = (
+/obj/item/clothing/head/hats/tophat,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/bar)
+"wjQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"wjT" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/port/aft)
+"wkh" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"wki" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/wood,
+/area/station/service/library)
+"wkv" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/laser_pointer/red,
+/turf/open/space/basic,
+/area/space/nearstation)
+"wkL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "Brig Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig)
+"wkM" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/blue{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"wkX" = (
+/obj/effect/landmark/start/hangover,
+/obj/structure/chair/stool/directional/south,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"wlj" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/cult,
+/area/station/service/chapel/funeral)
+"wll" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/east,
+/obj/item/folder/blue,
+/obj/item/hand_tele,
+/obj/item/stamp/head/captain,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"wlx" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering - Foyer - Shared Storage"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/storage_shared)
+"wlz" = (
+/turf/closed/wall/r_wall,
+/area/station/security/mechbay)
+"wlL" = (
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"wmc" = (
+/obj/structure/closet/secure_closet/evidence,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"wmf" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore)
+"wmg" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"wmr" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/vehicle/ridden/secway,
+/turf/open/floor/iron,
+/area/station/security/office)
+"wmz" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"wmL" = (
+/turf/closed/wall/r_wall,
+/area/station/science/xenobiology/hallway)
+"wmT" = (
+/obj/machinery/shower/directional/east,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"wna" = (
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"wnQ" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/structure/tank_dispenser{
+ pixel_x = -1
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"wnT" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/door/window/left/directional/south{
+ name = "MiniSat Walkway Access"
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "MiniSat Exterior - Aft Port";
+ network = list("minisat")
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"wnW" = (
+/obj/structure/bodycontainer/morgue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 8
+ },
+/area/station/medical/morgue)
+"wnY" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/engine,
+/area/station/command/heads_quarters/rd)
+"woc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"woi" = (
+/obj/machinery/camera/directional/south{
+ c_tag = "Arrivals - Aft Arm - Far"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"wov" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/abandoned)
+"woz" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/chapel{
+ dir = 4
+ },
+/area/station/service/chapel)
+"woG" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"woL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"woV" = (
+/obj/machinery/door/window/left/directional/north,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"woY" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"wpi" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"wpn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"wpo" = (
+/obj/item/storage/box/matches{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/cigarette/cigar/cohiba,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"wpr" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wpw" = (
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"wpx" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wpJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "AI Upload"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"wpO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"wqh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/robotics/lab)
+"wqA" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/north,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"wqH" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/obj/machinery/photobooth/security,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"wqJ" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"wrc" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"wrg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/primary/aft)
+"wrn" = (
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wrJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/landmark/start/roboticist,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/circuit/green,
+/area/station/science/robotics/mechbay)
+"wrZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"wsk" = (
+/obj/structure/railing/corner/end/flip,
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"wsq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Armory"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/structure/cable,
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/access/all/security/armory,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"wss" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/item/folder/yellow{
+ pixel_y = 4
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "Bridge - Central"
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"wst" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"wsv" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/duct,
+/obj/machinery/door/airlock/medical/glass{
+ name = "Cryogenics Bay"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/medical/general,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"wsD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"wsG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/water_source/puddle,
+/obj/item/reagent_containers/cup/watering_can,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"wsI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"wsL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/requests_console/directional/west{
+ department = "Robotics";
+ name = "Robotics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/ore_update,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"wsQ" = (
+/obj/structure/reagent_dispensers/wall/peppertank/directional/north,
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron,
+/area/station/security/checkpoint/customs)
+"wsS" = (
+/obj/machinery/door/airlock/external{
+ name = "Departure Lounge Airlock";
+ space_dir = 2
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wsW" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/cup/beaker/large{
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/dropper{
+ pixel_y = -4
+ },
+/turf/open/floor/iron/dark/textured_corner{
+ dir = 1
+ },
+/area/station/medical/chem_storage)
+"wsX" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/security/brig)
+"wto" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "sci-maint-passthrough"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Access"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/general,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wtu" = (
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/obj/structure/rack,
+/obj/item/storage/medkit/regular,
+/obj/item/stack/medical/suture,
+/obj/item/stack/medical/suture,
+/obj/item/stack/medical/mesh,
+/obj/item/clothing/glasses/hud/health,
+/obj/effect/turf_decal/trimline/green/filled/line,
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/starboard/lesser)
+"wtw" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Prison Central";
+ network = list("ss13","prison")
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"wtB" = (
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"wtP" = (
+/obj/effect/turf_decal/siding{
+ dir = 4
+ },
+/obj/effect/landmark/start/research_director,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"wtX" = (
+/obj/structure/table/wood,
+/obj/item/folder/yellow,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"wtZ" = (
+/obj/effect/landmark/start/hangover,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wuj" = (
+/obj/machinery/light/small/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/flasher/directional/east{
+ id = "holdingflash"
+ },
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"wuo" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"wuM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"wvd" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin5";
+ name = "Cabin 3"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"wvh" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/aft)
+"wvo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/commons/vacant_room/commissary)
+"wvr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"wvB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/machinery/firealarm/directional/north,
+/obj/item/storage/box/bodybags,
+/obj/item/reagent_containers/spray/cleaner,
+/obj/item/pushbroom,
+/obj/structure/closet{
+ name = "janitorial supplies"
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"wvF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"wvP" = (
+/obj/machinery/iv_drip,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"wvR" = (
+/obj/machinery/mineral/stacking_machine{
+ input_dir = 2
+ },
+/obj/structure/window/spawner/directional/east,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"wvU" = (
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"wwj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Brig Infirmary Maintenance"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"wwt" = (
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/obj/effect/turf_decal/tile/purple/fourcorners,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"wwW" = (
+/obj/effect/turf_decal/trimline/purple/line{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wwY" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"wxe" = (
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"wxh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"wxj" = (
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"wxk" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"wxn" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"wxF" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"wxG" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/wood/large,
+/area/station/commons/lounge)
+"wxM" = (
+/obj/machinery/status_display/door_timer{
+ id = "Cell 1";
+ name = "Cell 1";
+ pixel_y = -32
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"wyn" = (
+/obj/machinery/hydroponics/soil,
+/obj/item/shovel/spade,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+"wyo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"wyp" = (
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/structure/table/wood,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/under/suit/black_really,
+/obj/item/clothing/glasses/sunglasses,
+/obj/machinery/camera/directional/north{
+ c_tag = "Corporate Showroom"
+ },
+/turf/open/floor/wood,
+/area/station/command/corporate_showroom)
+"wyu" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"wyz" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "Prosecution"
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"wyC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/funeral)
+"wyG" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wyP" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "mining"
+ },
+/obj/machinery/bouldertech/refinery/smelter,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"wyS" = (
+/obj/machinery/computer/cargo{
+ dir = 4
+ },
+/obj/structure/window/spawner/directional/west,
+/obj/effect/turf_decal/tile/brown/opposingcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"wyV" = (
+/turf/open/floor/carpet/orange,
+/area/station/command/heads_quarters/qm)
+"wzd" = (
+/obj/item/radio/intercom/directional/west,
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/obj/item/flashlight/lamp,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"wzq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/office)
+"wzy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/ticket_machine/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"wzH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"wzK" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wAk" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"wAt" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/effect/spawner/random/trash/soap,
+/obj/structure/sign/poster/random/directional/east,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"wAA" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"wBe" = (
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"wBn" = (
+/obj/structure/chair/stool/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"wBq" = (
+/obj/structure/table,
+/obj/effect/turf_decal/siding/purple{
+ dir = 9
+ },
+/obj/item/toy/figure/geneticist,
+/obj/item/radio/intercom/directional/west,
+/obj/item/storage/pill_bottle/mutadone{
+ pixel_x = -9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"wBs" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"wBu" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/start/head_of_personnel,
+/obj/machinery/light_switch{
+ pixel_x = 38;
+ pixel_y = -35
+ },
+/obj/machinery/button/flasher{
+ id = "hopflash";
+ pixel_x = 38;
+ pixel_y = -25
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+"wBE" = (
+/obj/machinery/door/poddoor/shutters/radiation/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/engineering/supermatter)
+"wBF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wBM" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"wBT" = (
+/obj/structure/cable,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"wBV" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Gas to Cold Loop"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"wBW" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wCb" = (
+/obj/structure/table,
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/science/research)
+"wCe" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/bot,
+/obj/effect/spawner/random/maintenance,
+/obj/item/storage/belt/utility,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"wCf" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "garbage"
+ },
+/obj/structure/sign/warning/vacuum/directional/west,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"wCl" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"wCq" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/science/server)
+"wCL" = (
+/obj/structure/chair/stool/directional/south,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"wCO" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"wCS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"wDh" = (
+/obj/machinery/vending/wardrobe/chef_wardrobe,
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 6
+ },
+/obj/effect/turf_decal/bot,
+/obj/machinery/light_switch/directional/south{
+ pixel_x = -6
+ },
+/obj/machinery/button/door/directional/south{
+ id = "kitchen_service";
+ name = "Service Shutter Control";
+ pixel_x = 6;
+ req_access = list("kitchen")
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"wDq" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/obj/effect/landmark/start/medical_doctor,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"wDG" = (
+/obj/machinery/door/airlock/atmos/glass{
+ name = "Distribution Loop"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"wDH" = (
+/obj/machinery/digital_clock/directional/north,
+/turf/open/floor/wood,
+/area/station/service/library)
+"wEf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output{
+ dir = 1
+ },
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"wEn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"wEz" = (
+/obj/item/stack/sheet/cardboard,
+/obj/effect/spawner/random/trash/janitor_supplies,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"wEG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wER" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"wFa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"wFe" = (
+/obj/machinery/computer/teleporter{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/command/teleporter)
+"wFi" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Unfiltered & Air to Mix"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"wFk" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "Space Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hos)
+"wFy" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"wFM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"wFV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/lesser)
+"wGa" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Central Primary Hallway - Starboard - Art Storage"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wGz" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/light_construct/directional/east,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wGE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wGH" = (
+/obj/effect/turf_decal/trimline/blue/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/purple/corner,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/sign/departments/rndserver/directional/north,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wGR" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"wHd" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"wHj" = (
+/obj/machinery/door/airlock{
+ name = "Unit B"
+ },
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"wHu" = (
+/turf/closed/wall,
+/area/station/science/lobby)
+"wHJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/hallway/secondary/entry)
+"wHL" = (
+/obj/machinery/vending/wardrobe/bar_wardrobe,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/wood,
+/area/station/service/bar/backroom)
+"wHW" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit/green{
+ luminosity = 2
+ },
+/area/station/ai_monitored/command/nuke_storage)
+"wIa" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"wIB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"wIF" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/bot,
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"wIM" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"wJw" = (
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"wJD" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"wJL" = (
+/turf/open/floor/iron/dark,
+/area/station/security/holding_cell)
+"wJV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"wJX" = (
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"wKc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wKu" = (
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"wKC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"wKG" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Cytology - Secure Pen";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"wKX" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"wLu" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/south,
+/turf/open/floor/wood,
+/area/station/service/library)
+"wLw" = (
+/obj/machinery/duct,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"wLx" = (
+/obj/structure/closet/wardrobe/mixed,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/locker)
+"wLz" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/iron{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/lithium{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 1
+ },
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 8
+ },
+/area/station/medical/chem_storage)
+"wMx" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"wMz" = (
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"wMT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/atmos/storage/gas)
+"wNa" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"wNh" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"wNm" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+"wNp" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/random/bedsheet,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/effect/landmark/start/hangover,
+/obj/machinery/button/door/directional/west{
+ id = "Cabin6";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/obj/item/pillow/random,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"wNH" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/gateway)
+"wNN" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wNO" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/purple{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"wOl" = (
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"wOm" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/station/security/prison/safe)
+"wOo" = (
+/obj/structure/punching_bag,
+/obj/effect/turf_decal/trimline/dark_red,
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/camera/directional/east{
+ name = "Fitness Room"
+ },
+/turf/open/floor/iron/white/textured_large,
+/area/station/commons/fitness)
+"wOy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sink/directional/west,
+/obj/item/mop,
+/turf/open/floor/iron,
+/area/station/service/janitor)
+"wOz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/medical/office)
+"wOB" = (
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"wOF" = (
+/obj/effect/spawner/random/maintenance,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/camera/directional/north{
+ c_tag = "Service Maintenance"
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"wOI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"wOR" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+"wOS" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Robotics Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/science/robotics,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"wPo" = (
+/obj/item/radio/intercom/directional/west{
+ freerange = 1;
+ listening = 0;
+ name = "Common Channel";
+ pixel_y = -8
+ },
+/obj/item/radio/intercom/directional/south{
+ freerange = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel"
+ },
+/obj/item/radio/intercom/directional/east{
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_y = -8
+ },
+/obj/effect/landmark/start/ai,
+/obj/machinery/button/door/directional/south{
+ id = "AI Chamber entrance shutters";
+ name = "AI Chamber Entrance Shutters Control";
+ pixel_x = -24;
+ req_access = list("ai_upload")
+ },
+/obj/machinery/button/door/directional/south{
+ id = "AI Core shutters";
+ name = "AI Core Shutters Control";
+ pixel_x = 24;
+ req_access = list("ai_upload")
+ },
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai)
+"wPB" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/air,
+/area/station/engineering/atmos)
+"wPD" = (
+/obj/machinery/meter{
+ name = "Mixed Air Tank In"
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible,
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"wPE" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"wPG" = (
+/obj/machinery/flasher/portable,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/lockers)
+"wPH" = (
+/obj/structure/sign/warning/electric_shock/directional/east,
+/obj/structure/table,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/clothing/head/utility/welding,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"wPM" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"wPU" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron/kitchen_coldroom/freezerfloor,
+/area/station/service/kitchen/coldroom)
+"wPZ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrogen_input{
+ dir = 1
+ },
+/turf/open/floor/engine/n2,
+/area/station/engineering/atmos)
+"wQa" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/lab)
+"wQb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/wood,
+/area/station/commons/dorms)
+"wQj" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"wQw" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/space,
+/area/space/nearstation)
+"wQz" = (
+/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wQI" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "rdrnd";
+ name = "Research and Development Shutters"
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/station/science/lab)
+"wQP" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wQU" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/marker_beacon/burgundy,
+/turf/open/space,
+/area/space/nearstation)
+"wRg" = (
+/obj/machinery/door/poddoor/incinerator_atmos_aux,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+"wRm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"wRp" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"wRB" = (
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/firealarm/directional/west,
+/obj/structure/table/wood,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/obj/item/clothing/under/misc/burial,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"wRD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/item/mmi,
+/obj/structure/table,
+/turf/open/floor/iron/white,
+/area/station/science/robotics/lab)
+"wRF" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/grass,
+/area/station/service/hydroponics/garden)
+"wRL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Cytology Lab - Worklab";
+ network = list("ss13","rd","xeno")
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/station/science/cytology)
+"wRT" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"wRZ" = (
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+"wSe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"wSq" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/machinery/photocopier,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+"wSs" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/random/entertainment/deck,
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"wSv" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"wSI" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/east{
+ name = "Hydroponics Desk";
+ req_access = list("hydroponics")
+ },
+/obj/structure/desk_bell{
+ pixel_x = 6;
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/green/fourcorners,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"wTp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/left/directional/north{
+ name = "Weapon Distribution";
+ req_access = list("armory")
+ },
+/obj/item/paper,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/left/directional/south{
+ name = "Requests Window"
+ },
+/obj/item/pen,
+/obj/item/papercutter,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"wTs" = (
+/obj/item/radio/intercom/directional/south,
+/obj/machinery/camera/directional/south{
+ c_tag = "Atmospherics - Port-Fore"
+ },
+/obj/structure/reagent_dispensers/fueltank/large,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"wTv" = (
+/obj/machinery/airalarm/directional/north,
+/obj/machinery/modular_computer/preset/cargochat/cargo{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"wTF" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"wTO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/security/evidence)
+"wUj" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/station/science/lobby)
+"wUm" = (
+/obj/machinery/shower/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/freezer,
+/area/station/security/prison/shower)
+"wUt" = (
+/obj/effect/spawner/random/engineering/atmospherics_portable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"wUG" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"wUH" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Medbay Break Room";
+ network = list("ss13","medbay")
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/vending/coffee,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"wUM" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line,
+/obj/item/clothing/head/utility/welding{
+ pixel_y = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/utility/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/storage/gas)
+"wUQ" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 1
+ },
+/obj/machinery/duct,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"wVa" = (
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"wVd" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/newscaster/directional/south,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/service)
+"wVo" = (
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"wVt" = (
+/obj/structure/table,
+/obj/item/radio/intercom/directional/west,
+/obj/item/storage/box/deputy,
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"wVy" = (
+/obj/structure/sink/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"wVO" = (
+/obj/item/reagent_containers/cup/bottle/toxin{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/reagentgrinder{
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/pill/morphine{
+ name = "Exponential Entrophy";
+ pixel_x = -9;
+ pixel_y = -4
+ },
+/turf/open/floor/iron/showroomfloor,
+/area/station/maintenance/starboard/lesser)
+"wVQ" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"wVW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"wWe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Vault Storage"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/supply/vault,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/construction/storage_wing)
+"wWk" = (
+/obj/machinery/light/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"wWo" = (
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 9
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/poster/official/report_crimes/directional/north,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 4
+ },
+/area/station/medical/morgue)
+"wWs" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"wWN" = (
+/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{
+ dir = 9
+ },
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"wWV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/storage/box/monkeycubes{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = -5;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"wXc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"wXv" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Conveyor Access"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/service/maintenance,
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal)
+"wXF" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/starboard/lesser)
+"wXP" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"wXT" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"wYe" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wYi" = (
+/obj/machinery/door/window/right/directional/north{
+ name = "First Aid Supplies";
+ req_access = list("medical")
+ },
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/storage/medkit/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/medkit/toxin,
+/obj/item/storage/medkit/toxin{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/obj/structure/window/spawner/directional/west,
+/obj/machinery/requests_console/directional/south{
+ department = "Medbay";
+ name = "Medbay Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron/dark,
+/area/station/medical/storage)
+"wYl" = (
+/obj/effect/spawner/random/trash/mess,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"wYs" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/broken_flooring/corner/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"wYx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"wYB" = (
+/turf/closed/wall,
+/area/station/hallway/secondary/service)
+"wZe" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Chapel Office"
+ },
+/obj/effect/landmark/navigate_destination,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/service/chapel_office,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"wZg" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/station/science/research)
+"wZk" = (
+/obj/machinery/light_switch/directional/north,
+/obj/structure/showcase/cyborg/old{
+ pixel_y = 20
+ },
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"wZl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"wZo" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "mining"
+ },
+/obj/machinery/bouldertech/refinery,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"wZw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"wZz" = (
+/turf/closed/wall,
+/area/station/security/prison/safe)
+"wZA" = (
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"wZU" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"xaj" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/gloves{
+ pixel_x = 2;
+ pixel_y = 9
+ },
+/obj/item/assembly/igniter{
+ pixel_y = -3
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/station/medical/chem_storage)
+"xar" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xaL" = (
+/obj/effect/turf_decal/trimline/red/filled/corner,
+/obj/item/kirbyplants/random,
+/obj/effect/turf_decal/trimline/purple/corner{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/camera/directional/north{
+ c_tag = "Science Hallway - Research";
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"xba" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"xbd" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"xbg" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"xbT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/service)
+"xbY" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/white/smooth_large,
+/area/station/command/heads_quarters/cmo)
+"xbZ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/cargo/warehouse)
+"xcv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/security/mechbay)
+"xcz" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/engine)
+"xcO" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/duct,
+/obj/structure/disposalpipe/sorting/mail,
+/obj/effect/mapping_helpers/mail_sorting/service/bar,
+/turf/open/floor/iron,
+/area/station/maintenance/starboard/greater)
+"xcW" = (
+/obj/machinery/computer/atmos_control/air_tank{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xdm" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/holding_cell)
+"xdn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"xdq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/closed/wall,
+/area/station/engineering/atmos/pumproom)
+"xdx" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/cold/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+"xdF" = (
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xdJ" = (
+/turf/closed/wall,
+/area/station/medical/surgery/aft)
+"xdQ" = (
+/obj/structure/sign/warning/hot_temp/directional/south,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"xdV" = (
+/obj/item/reagent_containers/cup/glass/bottle/wine/unlabeled,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"xdX" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white/side,
+/area/station/science/lobby)
+"xej" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"xel" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/central)
+"xen" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/xenobiology)
+"xew" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"xeN" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"xff" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple/corner,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"xfm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/table/glass,
+/obj/structure/microscope,
+/turf/open/floor/iron/white,
+/area/station/science/cytology)
+"xfx" = (
+/obj/structure/table/glass,
+/obj/item/stack/medical/mesh,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/white/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white/side{
+ dir = 6
+ },
+/area/station/medical/treatment_center)
+"xfA" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Secure Pen"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/effect/mapping_helpers/airlock/access/all/science/xenobio,
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"xfD" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 1
+ },
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/machinery/camera/directional/north{
+ c_tag = "Fore Primary Hallway Cells"
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/fore)
+"xfF" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xfI" = (
+/obj/machinery/door/airlock/maintenance,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/greater)
+"xfV" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron,
+/area/station/science/research)
+"xga" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "CMO Maintenance"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/medical/cmo,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"xgb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xgi" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/bot,
+/obj/item/bodypart/arm/right/robot{
+ pixel_x = 3
+ },
+/obj/item/bodypart/arm/left/robot{
+ pixel_x = -3
+ },
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/firealarm/directional/west,
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/item/assembly/flash/handheld{
+ pixel_x = 6;
+ pixel_y = 13
+ },
+/obj/machinery/ecto_sniffer{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/science/robotics/lab)
+"xgn" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/siding/white{
+ dir = 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,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white/side{
+ dir = 4
+ },
+/area/station/medical/treatment_center)
+"xgx" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xgB" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xgD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/opposingcorners,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xgE" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/power/port_gen/pacman,
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/obj/structure/cable/multilayer/connected,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"xgG" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/rack,
+/obj/effect/spawner/random/clothing/costume,
+/obj/effect/spawner/random/clothing/costume,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"xgL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"xgN" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xgV" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/engineering/break_room)
+"xgZ" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"xhb" = (
+/obj/machinery/meter,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"xhh" = (
+/turf/open/floor/plating/airless,
+/area/station/science/ordnance/bomb)
+"xip" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"xit" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/department/medical/central)
+"xiv" = (
+/obj/item/kirbyplants/organic/plant11,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/lobby)
+"xiL" = (
+/turf/closed/wall/r_wall,
+/area/station/maintenance/department/science/xenobiology)
+"xiW" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"xjb" = (
+/obj/effect/landmark/start/ai/secondary,
+/obj/item/radio/intercom/directional/north{
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = -8
+ },
+/obj/item/radio/intercom/directional/west{
+ freerange = 1;
+ listening = 0;
+ name = "Common Channel"
+ },
+/obj/item/radio/intercom/directional/south{
+ freerange = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Private Channel";
+ pixel_x = -8
+ },
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai)
+"xjg" = (
+/mob/living/basic/bot/cleanbot/medbay,
+/turf/open/floor/iron/white,
+/area/station/medical/storage)
+"xjh" = (
+/turf/closed/wall,
+/area/station/security/checkpoint/customs)
+"xjm" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/ordnance_freezer_chamber_input{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/airless,
+/area/station/science/ordnance/freezerchamber)
+"xjA" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Central Primary Hallway - Fore"
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xjC" = (
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/camera/autoname/directional/south,
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/station/service/library)
+"xjH" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/virology)
+"xjI" = (
+/obj/structure/cable,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/box/white{
+ color = "#52B4E9"
+ },
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+"xkj" = (
+/obj/effect/spawner/random/maintenance,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xko" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"xkq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/office)
+"xkr" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xkv" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"xkw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/command/storage/satellite)
+"xkE" = (
+/obj/machinery/recharge_station,
+/obj/effect/landmark/start/hangover,
+/obj/effect/spawner/random/trash/graffiti{
+ pixel_y = -32;
+ spawn_loot_chance = 50
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"xkV" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xkY" = (
+/obj/structure/table,
+/obj/item/instrument/harmonica,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/prison)
+"xld" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/stack/rods/fifty,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/simple/supply/visible{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xlf" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/item/pen/red,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"xlv" = (
+/obj/machinery/airalarm/directional/south,
+/obj/machinery/computer/mech_bay_power_console{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/science/robotics/mechbay)
+"xly" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/iron/dark,
+/area/station/service/chapel)
+"xlF" = (
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xlH" = (
+/obj/structure/cable,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"xlU" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+"xlW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"xmb" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xme" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible,
+/obj/effect/turf_decal/siding/purple/corner,
+/obj/effect/turf_decal/siding/purple/corner{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"xml" = (
+/obj/machinery/computer/message_monitor{
+ dir = 4
+ },
+/obj/machinery/airalarm/directional/west,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"xmD" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/medical/memeorgans,
+/obj/structure/closet/crate/freezer,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"xmT" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 1
+ },
+/turf/open/space,
+/area/space/nearstation)
+"xnk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"xno" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/storage)
+"xnr" = (
+/turf/open/floor/carpet,
+/area/station/commons/vacant_room/office)
+"xnt" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"xnv" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"xnT" = (
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/south,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/effect/turf_decal/trimline/dark_red/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/security/warden)
+"xnU" = (
+/obj/machinery/shower/directional/east,
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"xoa" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/landmark/start/geneticist,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"xoj" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xop" = (
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xor" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"xoK" = (
+/obj/effect/landmark/start/botanist,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xpb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white/side{
+ dir = 1
+ },
+/area/station/commons/fitness)
+"xpi" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"xpo" = (
+/turf/open/floor/carpet,
+/area/station/commons/dorms)
+"xpB" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"xpC" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xpE" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"xpH" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/bluespace_vendor/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xpL" = (
+/obj/structure/closet/secure_closet/chief_medical,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/item/screwdriver,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+"xpY" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/incinerator_input{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/maintenance/disposal/incinerator)
+"xpZ" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Telecomms - Server Room - Aft-Starboard";
+ network = list("ss13","tcomms")
+ },
+/obj/structure/cable,
+/obj/machinery/power/apc/auto_name/directional/east,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+"xqc" = (
+/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xqn" = (
+/obj/effect/spawner/random/trash/mess,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"xqv" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/item/storage/bag/tray,
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"xqI" = (
+/obj/machinery/computer/security/labor{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+"xqL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"xrd" = (
+/obj/machinery/door/morgue{
+ name = "Private Study";
+ req_access = list("library")
+ },
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/engine/cult,
+/area/station/service/library)
+"xrr" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"xrv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xrG" = (
+/obj/structure/fireaxecabinet/directional/west,
+/obj/machinery/camera/directional/west{
+ c_tag = "Atmospherics - Port"
+ },
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos)
+"xrN" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"xrS" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/engineering/main)
+"xrW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"xsd" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"xsn" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/testlab)
+"xsy" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/storage/gas)
+"xsB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/port/aft)
+"xsH" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"xsV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ id = "kitchen_counter";
+ name = "Kitchen Counter Shutters"
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/obj/structure/table/reinforced,
+/obj/structure/displaycase/forsale/kitchen{
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/service/kitchen)
+"xtp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"xtr" = (
+/obj/machinery/door/airlock/public/glass{
+ name = "Space Bridge Access"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/button/door/directional/north{
+ id = "supplybridge";
+ name = "Shuttle Bay Space Bridge Control"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "north-maint-viewingdeck"
+ },
+/obj/effect/mapping_helpers/airlock/unres{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xtu" = (
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"xtw" = (
+/obj/item/stack/rods,
+/turf/open/space/basic,
+/area/space/nearstation)
+"xtz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"xtH" = (
+/obj/effect/turf_decal/siding/thinplating_new/corner,
+/obj/effect/turf_decal/trimline/brown/filled/corner,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xtY" = (
+/obj/machinery/computer/security/telescreen/auxbase/directional/south,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted,
+/turf/open/floor/iron,
+/area/station/construction/mining/aux_base)
+"xtZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/turf/open/space/basic,
+/area/space/nearstation)
+"xug" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/port)
+"xuA" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xuD" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xuH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"xuK" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/iron/solarpanel/airless,
+/area/station/solars/port/fore)
+"xuS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/junction{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xuV" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/aft/lesser)
+"xvd" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/delivery,
+/obj/effect/landmark/start/hangover/closet,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"xvf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"xvn" = (
+/obj/machinery/shower/directional/west,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"xvt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/commons/fitness/recreation)
+"xvI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/science/genetics)
+"xvR" = (
+/obj/structure/table,
+/obj/item/paper/guides/jobs/engi/gravity_gen,
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/obj/effect/spawner/random/bureaucracy/pen,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"xvZ" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"xwa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/disposal/delivery_chute,
+/obj/structure/window/spawner/directional/east,
+/obj/structure/window/spawner/directional/west,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"xwf" = (
+/obj/structure/weightmachine/weightlifter,
+/turf/open/floor/iron/dark/side{
+ dir = 4
+ },
+/area/station/security/prison)
+"xwl" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "roboticsprivacy2";
+ name = "Robotics Shutters"
+ },
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/station/science/robotics/lab)
+"xww" = (
+/turf/closed/wall/r_wall,
+/area/station/engineering/storage/tech)
+"xwB" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 6
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/water,
+/area/station/service/hydroponics/garden)
+"xwD" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xwP" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xwS" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Monkey Pen";
+ req_access = list("genetics")
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/grass,
+/area/station/science/genetics)
+"xwV" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"xwZ" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/station/maintenance/fore)
"xxg" = (
/obj/effect/turf_decal/stripes/line{
@@ -66795,6 +112860,7 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/iron/dark,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"xxs" = (
/obj/effect/turf_decal/delivery,
/obj/structure/table,
@@ -66808,6 +112874,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/solars/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xxF" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -66827,6 +112895,19 @@
/obj/structure/sign/poster/contraband/random/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/starboard/greater)
+<<<<<<< HEAD
+=======
+"xxQ" = (
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/item/reagent_containers/cup/glass/mug/britcup{
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/science/research)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xxU" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -66841,6 +112922,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/security/evidence)
+<<<<<<< HEAD
"xyd" = (
/obj/effect/turf_decal/trimline/red/filled/corner{
dir = 1
@@ -66854,6 +112936,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xyp" = (
/obj/machinery/status_display/evac/directional/north,
/obj/structure/cable,
@@ -66884,6 +112968,43 @@
/obj/machinery/duct,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"xyz" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"xyA" = (
+/obj/structure/table,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/stack/ducts/fifty,
+/obj/item/plunger,
+/obj/item/plunger,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"xyI" = (
+/obj/effect/turf_decal/siding/white{
+ dir = 10
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/sign/clock/directional/south,
+/turf/open/water,
+/area/station/service/hydroponics/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xyM" = (
/obj/structure/cable,
/turf/open/floor/plating,
@@ -66940,6 +113061,7 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"xzB" = (
/obj/structure/table,
/obj/effect/turf_decal/siding{
@@ -66957,6 +113079,12 @@
/obj/item/multitool,
/turf/open/floor/iron,
/area/station/science/lab)
+=======
+"xzx" = (
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xAb" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -66982,6 +113110,15 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics)
+<<<<<<< HEAD
+=======
+"xAi" = (
+/obj/machinery/vending/autodrobe,
+/obj/structure/sign/poster/contraband/clown/directional/east,
+/obj/structure/sign/poster/contraband/random/directional/north,
+/turf/open/floor/wood,
+/area/station/service/theater)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xAl" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -67022,6 +113159,7 @@
/area/station/commons/locker)
"xAW" = (
/obj/effect/turf_decal/stripes/line{
+<<<<<<< HEAD
dir = 8
},
/obj/structure/cable,
@@ -67286,6 +113424,275 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 1
},
+=======
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"xBq" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/drone_bay)
+"xBw" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Starboard Quarter Solar Access"
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/turf/open/floor/plating,
+/area/station/maintenance/solars/starboard/aft)
+"xBx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xBF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/ai_monitored/command/storage/eva)
+"xBX" = (
+/obj/machinery/firealarm/directional/east,
+/turf/closed/wall,
+/area/station/security/checkpoint/customs)
+"xCf" = (
+/obj/item/clothing/suit/jacket/straight_jacket,
+/obj/item/electropack,
+/obj/structure/table,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"xCg" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/security/courtroom)
+"xCl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/commons/vacant_room/commissary)
+"xCo" = (
+/obj/structure/rack,
+/obj/item/storage/box/flashes{
+ pixel_x = 3
+ },
+/obj/item/storage/box/teargas{
+ pixel_x = 1;
+ pixel_y = -2
+ },
+/obj/item/gun/grenadelauncher,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/security/armory)
+"xCx" = (
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/structure/table/glass,
+/obj/item/book/manual/hydroponics_pod_people,
+/obj/effect/turf_decal/trimline/green/filled/corner{
+ dir = 1
+ },
+/obj/machinery/requests_console/directional/west{
+ department = "Hydroponics";
+ name = "Hydroponics Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/supplies,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xCz" = (
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/ordnance/storage)
+"xCD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xCF" = (
+/obj/structure/transit_tube/curved{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"xCH" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"xCR" = (
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chem_lockdown";
+ name = "Chemistry Shutters"
+ },
+/obj/machinery/door/window/left/directional/north{
+ name = "Chemistry Desk";
+ req_access = list("plumbing")
+ },
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"xCS" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/tcomms,
+/obj/item/folder/blue,
+/obj/item/pen,
+/turf/open/floor/iron/grimy,
+/area/station/tcommsat/computer)
+"xCT" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Chapel Office - Backroom"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/service/chapel/office)
+"xDa" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain/private)
+"xDu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"xDw" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"xDz" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/aft)
+"xDD" = (
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/station/science/cytology)
+"xEe" = (
+/obj/item/storage/box/syringes,
+/obj/item/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xEf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/lobby)
+"xEg" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine/plasma,
+/area/station/engineering/atmos)
+"xEr" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/exit/departure_lounge)
+"xEt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"xEz" = (
+/obj/structure/table/glass,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+"xEC" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/science/lab)
+"xEJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"xEN" = (
+/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible,
+/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xER" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/airlock/external{
name = "Arrival Airlock";
space_dir = 2
@@ -67353,6 +113760,7 @@
/area/station/engineering/supermatter/room)
"xGD" = (
/obj/structure/cable,
+<<<<<<< HEAD
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -67439,6 +113847,97 @@
/obj/effect/turf_decal/tile/green/fourcorners,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+=======
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/turf/open/floor/iron,
+/area/station/science/research)
+"xGF" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"xGT" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/station/cargo/warehouse)
+"xGX" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"xHC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot_white,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xIp" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/event_spawn,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"xIx" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"xID" = (
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
+"xIG" = (
+/obj/structure/sign/departments/medbay/alt,
+/turf/closed/wall,
+/area/station/medical/medbay/lobby)
+"xII" = (
+/obj/machinery/vending/wardrobe/hydro_wardrobe,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/poster/official/random/directional/east,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron,
+/area/station/service/hydroponics)
+"xIK" = (
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/enzyme{
+ pixel_x = -7;
+ pixel_y = 13
+ },
+/obj/item/reagent_containers/condiment/flour{
+ pixel_x = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xIM" = (
/obj/machinery/computer/operating{
dir = 8
@@ -67456,6 +113955,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
"xJg" = (
/obj/structure/cable,
/obj/structure/sign/warning/secure_area/directional/north,
@@ -67465,6 +113965,8 @@
},
/turf/open/floor/plating,
/area/station/maintenance/aft/greater)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xJv" = (
/obj/machinery/light/directional/north,
/turf/open/floor/iron/recharge_floor,
@@ -67473,6 +113975,29 @@
/obj/structure/sign/warning/docking,
/turf/closed/wall,
/area/station/hallway/primary/port)
+<<<<<<< HEAD
+=======
+"xJI" = (
+/obj/machinery/light_switch/directional/west,
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/beaker/large,
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/dropper,
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_y = 10
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xJK" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel/fifty,
@@ -67523,6 +114048,18 @@
},
/turf/open/floor/wood,
/area/station/commons/vacant_room/office)
+<<<<<<< HEAD
+=======
+"xLA" = (
+/obj/machinery/computer/records/security{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/security/checkpoint/supply)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xLR" = (
/obj/structure/table,
/obj/item/stack/sheet/iron/fifty,
@@ -67534,6 +114071,7 @@
},
/turf/open/floor/iron,
/area/station/construction/mining/aux_base)
+<<<<<<< HEAD
"xLV" = (
/obj/machinery/door/airlock/maintenance,
/obj/effect/mapping_helpers/airlock/unres{
@@ -67545,6 +114083,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/fore)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xMl" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=15-Court";
@@ -67603,11 +114143,14 @@
/obj/structure/cable,
/turf/open/floor/grass,
/area/station/medical/virology)
+<<<<<<< HEAD
"xNl" = (
/obj/structure/cable,
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/security/checkpoint/supply)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xNo" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -67726,6 +114269,7 @@
/obj/machinery/status_display/ai/directional/east,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"xPe" = (
/obj/structure/flora/bush/flowers_yw,
/turf/open/floor/grass,
@@ -69010,11 +115554,35 @@
/turf/open/floor/iron/dark,
/area/station/service/cafeteria)
"ykS" = (
+=======
+"xPm" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/obj/structure/table,
+/obj/machinery/fax{
+ fax_name = "Research Director's Office";
+ name = "Research Director's Fax Machine"
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+"xPy" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Atmospherics - Hypertorus Fusion Reactor Chamber Fore"
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmospherics_engine)
+"xPN" = (
+/obj/structure/cable,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/disposalpipe/segment{
dir = 4
},
+<<<<<<< HEAD
/obj/effect/turf_decal/tile/bar{
dir = 1
},
@@ -69090,6 +115658,1248 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
+=======
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"xQh" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xQx" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/effect/turf_decal/siding/purple,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"xQC" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+"xQI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering - Entrance"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"xQJ" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/ai)
+"xQO" = (
+/obj/machinery/exodrone_launcher,
+/turf/open/floor/plating,
+/area/station/cargo/drone_bay)
+"xQT" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/wood,
+/area/station/security/office)
+"xQY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/medbay/lobby)
+"xRc" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+"xRf" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/lesser)
+"xRh" = (
+/obj/machinery/door/airlock/external{
+ name = "Atmospherics External Access"
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/atmos,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"xRR" = (
+/obj/structure/bodycontainer/morgue/beeper_off,
+/obj/structure/bodycontainer/morgue/beeper_off{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/warning{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/neutral/mid_joiner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/dark/smooth_half{
+ dir = 4
+ },
+/area/station/medical/morgue)
+"xRY" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"xRZ" = (
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"xSO" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/light_switch/directional/south,
+/turf/open/floor/wood/large,
+/area/station/service/theater)
+"xSQ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xST" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/west,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xTe" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "qmroom"
+ },
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/qm)
+"xTg" = (
+/obj/structure/chair/comfy{
+ dir = 4
+ },
+/obj/machinery/camera/directional/west{
+ c_tag = "Science Break Room";
+ network = list("ss13","rd")
+ },
+/obj/machinery/light_switch/directional/south,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/turf/open/floor/iron,
+/area/station/science/research)
+"xTw" = (
+/turf/closed/wall/r_wall,
+/area/station/medical/medbay/central)
+"xTO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/medical/break_room)
+"xTT" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"xUb" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xUh" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/effect/landmark/start/hangover/closet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/commons/dorms)
+"xUm" = (
+/obj/machinery/computer/operating{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/sign/clock/directional/west,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/iron/dark,
+/area/station/medical/morgue)
+"xUu" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"xUx" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/dresser,
+/obj/structure/secure_safe/directional/north,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain/private)
+"xUB" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/obj/structure/sign/directions/command{
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/station/hallway/primary/fore)
+"xUE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/wideplating_new,
+/obj/structure/railing,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/station/service/hydroponics/garden)
+"xUH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/security/medical)
+"xUK" = (
+/obj/structure/sign/poster/contraband/missing_gloves,
+/turf/closed/wall,
+/area/station/commons/storage/primary)
+"xUX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/grimy,
+/area/station/service/chapel/office)
+"xUY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"xVq" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/item/radio/intercom/directional/west,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner{
+ dir = 1
+ },
+/area/station/engineering/atmos/pumproom)
+"xVu" = (
+/turf/closed/wall,
+/area/station/science/xenobiology)
+"xVx" = (
+/obj/machinery/camera/directional/west{
+ c_tag = "Engineering Supermatter Fore";
+ network = list("ss13","engine")
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+"xVA" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Distro Staging to Distro"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos/pumproom)
+"xVD" = (
+/obj/effect/turf_decal/trimline/purple/corner,
+/obj/structure/cable,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"xWm" = (
+/obj/structure/rack,
+/obj/item/restraints/handcuffs{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/restraints/handcuffs,
+/obj/item/restraints/handcuffs{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/office)
+"xWn" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/mix_input{
+ dir = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/engineering/atmos)
+"xWr" = (
+/obj/effect/turf_decal/trimline/red/filled/corner,
+/obj/machinery/light/directional/east,
+/obj/machinery/computer/security/telescreen/interrogation/directional/east,
+/turf/open/floor/iron,
+/area/station/security/brig)
+"xWE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/pharmacy)
+"xWF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/station/maintenance/aft/greater)
+"xWJ" = (
+/obj/machinery/drone_dispenser,
+/turf/open/floor/plating,
+/area/station/maintenance/department/science/central)
+"xWY" = (
+/obj/item/radio/intercom/directional/south,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/reagent_containers/condiment/enzyme{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/cafeteria,
+/area/station/service/kitchen)
+"xXh" = (
+/obj/machinery/photocopier{
+ pixel_y = 3
+ },
+/turf/open/floor/iron/dark,
+/area/station/security/office)
+"xXi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"xXm" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/station/engineering/atmos)
+"xXp" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/components/unary/passive_vent/layer2{
+ dir = 1
+ },
+/turf/open/space/basic,
+/area/space/nearstation)
+"xXv" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/tile/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/corner,
+/area/station/engineering/storage_shared)
+"xXw" = (
+/obj/machinery/bluespace_beacon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/teleporter)
+"xXC" = (
+/obj/effect/landmark/blobstart,
+/obj/structure/closet/secure_closet/detective,
+/turf/open/floor/iron/grimy,
+/area/station/security/detectives_office)
+"xXG" = (
+/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
+/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer5{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"xXK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/aisat/exterior)
+"xXM" = (
+/obj/structure/reagent_dispensers/wall/peppertank/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
+"xXN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/command/captain,
+/obj/effect/landmark/navigate_destination,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/captain/private)
+"xXR" = (
+/obj/effect/decal/cleanable/oil,
+/obj/structure/railing/corner/end{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"xXW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/station/service/theater)
+"xYq" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/cardboard,
+/obj/item/radio/off,
+/obj/structure/light_construct/directional/north,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/plating,
+/area/station/maintenance/port/aft)
+"xYu" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+"xYy" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"xYD" = (
+/obj/effect/spawner/structure/window/reinforced/plasma,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/engineering/supermatter/room)
+"xYH" = (
+/obj/item/kirbyplants/random/dead,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"xYM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/cryo_cell,
+/turf/open/floor/iron/dark/textured,
+/area/station/medical/cryo)
+"xYQ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/plating,
+/area/station/maintenance/disposal/incinerator)
+"xYT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"xYV" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/white,
+/area/station/science/research)
+"xYW" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/fore/lesser)
+"xYZ" = (
+/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible,
+/turf/closed/wall/r_wall,
+/area/station/science/ordnance/burnchamber)
+"xZb" = (
+/obj/effect/spawner/random/structure/grille,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"xZd" = (
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/station/security/courtroom)
+"xZu" = (
+/obj/structure/sink/kitchen/directional/east{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink"
+ },
+/obj/structure/mirror/directional/west,
+/turf/open/floor/wood,
+/area/station/maintenance/port/aft)
+"xZv" = (
+/obj/machinery/newscaster/directional/north,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/toolbox/mechanical,
+/obj/machinery/camera/directional/north,
+/obj/structure/cable,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"xZx" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"xZB" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry)
+"xZW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+"yaf" = (
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"yag" = (
+/obj/effect/turf_decal/trimline/purple/filled/line,
+/obj/effect/turf_decal/bot_white,
+/obj/structure/cable,
+/obj/machinery/monkey_recycler,
+/turf/open/floor/iron,
+/area/station/science/xenobiology)
+"yaD" = (
+/obj/structure/table,
+/obj/item/stack/rods/fifty,
+/obj/item/wrench,
+/obj/item/storage/box/lights/mixed,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"yaE" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"yaF" = (
+/obj/structure/table,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/pipe_dispenser,
+/obj/item/pipe_dispenser,
+/obj/item/pipe_dispenser,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"yaO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"ybl" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/incident_display/delam/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"ybn" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"ybu" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/security/execution/education)
+"yby" = (
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/chapel,
+/area/station/service/chapel)
+"ybN" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"yce" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/spawner/random/structure/crate,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"ycf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/cargo/miningoffice)
+"ych" = (
+/obj/machinery/camera/directional/east{
+ c_tag = "Xenobiology Lab - Pen #5";
+ network = list("ss13","rd","xeno")
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/engine,
+/area/station/science/xenobiology)
+"yci" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/duct,
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"ycj" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecomms Server Room"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/mapping_helpers/airlock/access/all/engineering/tcoms,
+/turf/open/floor/iron/dark,
+/area/station/tcommsat/server)
+"yco" = (
+/obj/item/radio/intercom/directional/south,
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"ycr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ycv" = (
+/obj/effect/spawner/random/engineering/tracking_beacon,
+/turf/open/floor/iron/white,
+/area/station/science/xenobiology)
+"ycw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible,
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"ycz" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/storage/tcomms)
+"ycM" = (
+/turf/closed/wall/r_wall,
+/area/station/security/warden)
+"ycN" = (
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/commons/locker)
+"ydb" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Port to Filter"
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"ydj" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible,
+/obj/machinery/atmospherics/components/trinary/filter/flipped/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"ydp" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+"ydq" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/greater)
+"ydv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/fore)
+"ydG" = (
+/obj/effect/turf_decal/arrows/red{
+ dir = 4;
+ pixel_x = -15
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/atmospherics_engine)
+"ydM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible/layer5,
+/obj/structure/sign/poster/official/wtf_is_co2/directional/south,
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos)
+"yec" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Fuel Pipe to Incinerator"
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+"yeq" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
+"yeu" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/computer/gateway_control{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/gateway)
+"yey" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/security/execution/transfer)
+"yeA" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start/hangover,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+"yeI" = (
+/obj/structure/mop_bucket,
+/obj/item/mop,
+/obj/structure/sign/poster/random/directional/north,
+/turf/open/floor/plating,
+/area/station/maintenance/starboard/aft)
+"yeV" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/item/clothing/shoes/cowboy/black,
+/obj/machinery/camera/directional/north{
+ c_tag = "Head of Security's Office"
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hos)
+"yfg" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 8;
+ id = "chem_lockdown";
+ name = "Chemistry Shutters"
+ },
+/turf/open/floor/plating,
+/area/station/medical/chemistry)
+"yfm" = (
+/obj/effect/turf_decal/trimline/dark_red/mid_joiner,
+/obj/effect/turf_decal/trimline/dark_red/line,
+/turf/open/floor/iron/white/smooth_half,
+/area/station/commons/fitness)
+"yfq" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/port)
+"yfw" = (
+/obj/effect/landmark/generic_maintenance_landmark,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/duct,
+/obj/effect/spawner/random/trash/soap{
+ spawn_scatter_radius = 1
+ },
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/freezer,
+/area/station/commons/toilet/restrooms)
+"yfx" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/monitored/nitrous_input{
+ dir = 1
+ },
+/turf/open/floor/engine/n2o,
+/area/station/engineering/atmos)
+"yfL" = (
+/turf/closed/wall,
+/area/station/ai_monitored/command/storage/eva)
+"yfT" = (
+/obj/structure/table/wood,
+/obj/item/pen/red,
+/obj/item/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/station/service/library)
+"ygb" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/yellow/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/break_room)
+"ygp" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/structure/cable,
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/station/engineering/transit_tube)
+"ygt" = (
+/obj/structure/table/wood,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/structure/cable,
+/obj/machinery/button/door/directional/east{
+ id = "corporate_privacy";
+ name = "corporate showroom shutters control";
+ req_access = list("command")
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/carpet,
+/area/station/command/corporate_showroom)
+"ygR" = (
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/station/construction/storage_wing)
+"ygS" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/hallway/primary/central)
+"yhm" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/disposaloutlet{
+ dir = 4;
+ name = "Cargo Deliveries"
+ },
+/obj/effect/turf_decal/siding/white,
+/obj/effect/turf_decal/trimline/brown/warning,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/medical/medbay/lobby)
+"yhu" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/tile/purple/opposingcorners,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/iron,
+/area/station/science/research)
+"yhK" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
+"yhL" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageSort2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/door/window/left/directional/east{
+ name = "Crate Security Door";
+ req_access = list("shipping")
+ },
+/turf/open/floor/plating,
+/area/station/cargo/sorting)
+"yhO" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/station/security/prison)
+"yia" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/purple{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/science/explab)
+"yib" = (
+/obj/structure/lattice/catwalk,
+/obj/item/toy/plush/lizard_plushie/space/green{
+ desc = "He stared into the void and listened. He didn't expect an answer...";
+ name = "Void-Stares-Back"
+ },
+/obj/structure/marker_beacon/purple,
+/turf/open/space/basic,
+/area/space/nearstation)
+"yij" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry)
+"yim" = (
+/obj/structure/table,
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay Paramedic Dispatch";
+ name = "medical camera";
+ network = list("ss13","medical")
+ },
+/obj/machinery/fax{
+ fax_name = "Medical";
+ name = "Medical Fax Machine"
+ },
+/obj/structure/noticeboard/directional/north,
+/obj/structure/sign/clock/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+"yiJ" = (
+/obj/structure/chair/sofa/right/brown,
+/obj/item/toy/plush/moth{
+ name = "Mender Moff"
+ },
+/turf/open/floor/carpet,
+/area/station/medical/psychology)
+"yjc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/station/commons/lounge)
+"yjd" = (
+/turf/closed/wall,
+/area/station/command/gateway)
+"yje" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/cup/glass/bottle/vodka,
+/turf/open/floor/iron/white,
+/area/station/medical/abandoned)
+"yjw" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/table/wood,
+/obj/effect/spawner/random/bureaucracy/stamp,
+/turf/open/floor/wood,
+/area/station/commons/vacant_room/office)
+"ykb" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Deliveries"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/supply/shipping,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/brown/fourcorners,
+/turf/open/floor/iron,
+/area/station/cargo/sorting)
+"ykn" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/airlock/external{
+ name = "Arrival Airlock"
+ },
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
+"yko" = (
+/obj/structure/table,
+/obj/item/paper_bin/construction,
+/obj/item/airlock_painter,
+/obj/item/rcl/pre_loaded,
+/turf/open/floor/iron,
+/area/station/commons/storage/tools)
+"yks" = (
+/obj/structure/window/spawner/directional/west,
+/turf/open/floor/carpet,
+/area/station/service/theater)
+"ykI" = (
+/obj/effect/landmark/start/hangover,
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/station/holodeck/rec_center)
+"ykK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/commons/fitness/recreation)
+"ykL" = (
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/fore)
+"ykR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/door/window/right/directional/west{
+ name = "Jim Norton's Quebecois Coffee";
+ req_one_access = list("service","maint_tunnels")
+ },
+/obj/effect/turf_decal/trimline/green/line,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+"ykS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ylf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/right/directional/west{
+ name = "First Aid Supplies";
+ req_access = list("medical")
+ },
+/obj/item/clothing/glasses/blindfold{
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/blindfold,
+/obj/item/clothing/ears/earmuffs{
+ pixel_y = 3
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/eyepatch,
+/obj/item/clothing/suit/jacket/straight_jacket,
+/turf/open/floor/iron/dark,
+/area/station/medical/office)
+"ylt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/turf/open/floor/circuit/green,
+/area/station/science/robotics/mechbay)
+"ylI" = (
+/obj/effect/turf_decal/siding/purple{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+"ylM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron,
+/area/station/commons/dorms)
+"ylO" = (
+/obj/machinery/firealarm/directional/north,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/trimline/red/filled/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+"ylQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+"ylU" = (
+/obj/structure/filingcabinet/employment,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/wood,
+/area/station/service/lawoffice)
+"ylZ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/item/radio/intercom/directional/north,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/security/brig)
"yme" = (
@@ -79474,10 +127284,17 @@ lMJ
aaa
aaa
aaa
+<<<<<<< HEAD
jkA
aaa
aaa
jkA
+=======
+mWd
+aaa
+aaa
+mWd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -81284,7 +129101,11 @@ aDa
aDa
iYU
oSc
+<<<<<<< HEAD
wBx
+=======
+xtY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aDb
rew
lGL
@@ -81351,7 +129172,11 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
mrj
+=======
+nLZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -81839,7 +129664,11 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
jkA
+=======
+mWd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -82335,7 +130164,11 @@ cUd
sCz
oHw
xOO
+<<<<<<< HEAD
cUL
+=======
+bqg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ahe
slD
nyF
@@ -82352,7 +130185,11 @@ jUb
lvY
sZK
heE
+<<<<<<< HEAD
mmw
+=======
+kzZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xZu
dMk
nBy
@@ -82547,7 +130384,11 @@ lMJ
lMJ
lMJ
jXu
+<<<<<<< HEAD
myS
+=======
+pHK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mXz
oFR
ycr
@@ -82627,19 +130468,31 @@ aox
lMJ
aaa
aaa
+<<<<<<< HEAD
vnP
+=======
+qWg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
aaa
aaa
+<<<<<<< HEAD
jhN
+=======
+bxr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
lZV
aaa
aaa
+<<<<<<< HEAD
vnP
+=======
+qWg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -82804,8 +130657,13 @@ aaa
lMJ
aaa
nmg
+<<<<<<< HEAD
wFI
btD
+=======
+cHR
+jEa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
jXu
jXu
@@ -82817,7 +130675,11 @@ nmg
jXu
kBS
rOz
+<<<<<<< HEAD
alG
+=======
+mlH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sHu
cVL
jZW
@@ -82828,7 +130690,11 @@ twr
sHu
aPk
jXu
+<<<<<<< HEAD
uEM
+=======
+vzG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qDD
crk
slD
@@ -83318,7 +131184,11 @@ aaa
aaa
lMJ
qGV
+<<<<<<< HEAD
nZs
+=======
+kHO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tvR
aaa
aaa
@@ -83669,7 +131539,11 @@ qPC
rKQ
xjH
xjH
+<<<<<<< HEAD
uUK
+=======
+fIR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
lMJ
@@ -83861,7 +131735,11 @@ aaa
fcq
uEw
fcq
+<<<<<<< HEAD
wGP
+=======
+duW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uhI
vrP
hve
@@ -83902,7 +131780,11 @@ uxS
uxS
uxS
uxS
+<<<<<<< HEAD
tgz
+=======
+jBO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUb
jUb
jUb
@@ -84132,26 +132014,42 @@ kOK
kOK
htE
xxg
+<<<<<<< HEAD
jSh
+=======
+nMY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jzp
dGQ
kEm
ifF
olq
njE
+<<<<<<< HEAD
uYU
+=======
+onN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pOa
lEu
uOH
pOa
sXI
+<<<<<<< HEAD
mmN
+=======
+cYY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tYZ
jUb
hWj
coJ
uxS
+<<<<<<< HEAD
oDV
+=======
+fNI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uxS
bCE
wGz
@@ -84406,7 +132304,11 @@ pOa
pOa
jUb
aaD
+<<<<<<< HEAD
dtD
+=======
+hWD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
etv
jUb
fYq
@@ -84415,7 +132317,11 @@ jUb
dyd
jXO
jUb
+<<<<<<< HEAD
exz
+=======
+wgl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUb
kXU
jUb
@@ -84429,7 +132335,11 @@ aaa
xjH
ocN
ark
+<<<<<<< HEAD
juY
+=======
+uGq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iam
kHk
gqI
@@ -84697,7 +132607,11 @@ rKQ
rKQ
xjH
xjH
+<<<<<<< HEAD
sYw
+=======
+ktw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
lMJ
@@ -84839,7 +132753,11 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
cNX
+=======
+xtw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
fcJ
aaa
@@ -84860,7 +132778,11 @@ aaa
aaa
lMJ
rqa
+<<<<<<< HEAD
oJi
+=======
+fiX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iQd
aaa
aaa
@@ -84921,9 +132843,15 @@ pSw
pAe
aZL
jgk
+<<<<<<< HEAD
pge
pAe
oPW
+=======
+qnr
+pAe
+rzB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pAe
jUb
cBc
@@ -85117,13 +133045,21 @@ aox
aox
jXu
jXu
+<<<<<<< HEAD
imF
+=======
+ojz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
lMJ
lMJ
lMJ
pnI
+<<<<<<< HEAD
eYC
+=======
+vuz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xDu
pcS
pnI
@@ -85145,12 +133081,21 @@ aaa
fcq
fcq
pck
+<<<<<<< HEAD
vTO
uEw
nJG
wSb
iez
ctu
+=======
+lku
+uEw
+nJG
+jjn
+jQr
+kKd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mjg
dHc
dHc
@@ -85367,14 +133312,22 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
jkA
+=======
+mWd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
lMJ
lMJ
nmg
vEV
+<<<<<<< HEAD
mrU
+=======
+rnf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
paD
paD
@@ -85388,7 +133341,11 @@ lMJ
lMJ
lMJ
aox
+<<<<<<< HEAD
ugZ
+=======
+uNZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hxo
aSZ
lXG
@@ -85396,6 +133353,7 @@ hxo
lXG
deU
hxo
+<<<<<<< HEAD
ahb
msn
lMJ
@@ -85409,6 +133367,21 @@ wUt
fcq
oyu
pQX
+=======
+iNH
+kyu
+lMJ
+fcq
+fur
+fur
+wEz
+aaq
+aOA
+wUt
+fcq
+jPE
+auh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
crr
crr
crr
@@ -85429,7 +133402,11 @@ pOa
pOa
uOH
jUb
+<<<<<<< HEAD
gRS
+=======
+xIK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bar
nBp
dqN
@@ -85456,7 +133433,11 @@ jUb
aaa
aaa
rKQ
+<<<<<<< HEAD
iJT
+=======
+iyC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rKQ
aaa
aaa
@@ -85598,6 +133579,7 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
aaa
aaa
aaa
@@ -85744,6 +133726,154 @@ lMJ
rrt
aaa
aaa
+=======
+aaa
+aaa
+aaa
+aaa
+aaa
+rrt
+aaa
+lMJ
+lMJ
+lMJ
+lMJ
+xuK
+xuK
+xuK
+eqf
+eqf
+raz
+raz
+eqf
+xuK
+xuK
+xuK
+lMJ
+lMJ
+jfG
+kmW
+jfG
+qvJ
+jfG
+jfG
+jfG
+jXu
+kXA
+mwo
+jXu
+qRU
+kqh
+com
+hKg
+hKg
+fQW
+kat
+hKg
+pnI
+hKg
+aaa
+aaa
+aaa
+hxo
+bnA
+riU
+oDJ
+lAa
+fyz
+hxo
+aaa
+aaa
+cbz
+cbz
+dBE
+vQs
+vQs
+vQs
+hor
+vQs
+vQs
+iSk
+nzD
+uxa
+uxa
+bNQ
+aal
+sEk
+aal
+dPQ
+xYy
+vJB
+fjD
+pUl
+lMY
+pOa
+mrN
+gXe
+vwi
+tql
+pOa
+aDl
+jUb
+tWr
+qKs
+dPJ
+hBC
+jUb
+nYy
+jUb
+ifh
+jUb
+pSw
+jUb
+sQy
+dqN
+dqN
+dqN
+cNS
+eNV
+dqN
+eNV
+jUb
+jUb
+gkU
+shK
+jUb
+jUb
+xjH
+xjH
+bVK
+xjH
+xjH
+lMJ
+xjH
+xjH
+rKQ
+rKQ
+rKQ
+rKQ
+xjH
+xjH
+fIR
+aaa
+aaa
+aaa
+lzJ
+cqk
+lzJ
+lzJ
+lzJ
+lzJ
+lzJ
+lzJ
+lMJ
+lMJ
+lMJ
+lMJ
+rrt
+aaa
+aaa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -85885,6 +134015,7 @@ dqo
eXy
wCf
wVa
+<<<<<<< HEAD
pQw
jXu
jXu
@@ -85893,6 +134024,16 @@ jXu
pJp
agk
wWg
+=======
+jTl
+jXu
+jXu
+qTL
+jXu
+pJp
+rud
+emU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bZz
qvY
kRe
@@ -85912,6 +134053,7 @@ dZB
hxo
hxo
hxo
+<<<<<<< HEAD
cJp
hbW
nhe
@@ -85920,6 +134062,16 @@ hxg
qMp
dKY
dTe
+=======
+pYM
+eOb
+gvA
+vQs
+ePj
+tnF
+dKY
+kif
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQs
dHc
dHc
@@ -85969,7 +134121,11 @@ shK
jUb
tzt
xjH
+<<<<<<< HEAD
rIm
+=======
+sMo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sOM
lDj
xjH
@@ -86143,6 +134299,7 @@ jfG
jfG
gYE
lBm
+<<<<<<< HEAD
pSq
ybN
hsL
@@ -86150,6 +134307,15 @@ jXu
qrL
njh
wmv
+=======
+ecm
+ybN
+tJB
+jXu
+qrL
+iLT
+vdg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bZz
pPh
aFd
@@ -86161,6 +134327,7 @@ uvw
yeq
yeq
yeq
+<<<<<<< HEAD
nbM
ykO
rAi
@@ -86182,11 +134349,38 @@ vQs
gxk
hyW
qUN
+=======
+cvv
+wcy
+kkk
+fXZ
+sUc
+vsO
+vsO
+uAu
+rmS
+dme
+exQ
+vQs
+cna
+hjt
+gEx
+bGu
+slZ
+vQs
+puW
+hyW
+pTf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iOc
qwG
fjD
rEj
+<<<<<<< HEAD
vTL
+=======
+vCu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cwc
kXa
fjD
@@ -86232,6 +134426,10 @@ vYJ
xjH
aaa
aaa
+<<<<<<< HEAD
+=======
+lMJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lMJ
lMJ
mDi
@@ -86396,6 +134594,7 @@ aaa
qvJ
nxi
bWw
+<<<<<<< HEAD
ndv
cfX
iPE
@@ -86406,11 +134605,24 @@ smy
jXu
iGB
hlW
+=======
+mqn
+dwI
+iPE
+vfv
+wXv
+qCm
+tXO
+jXu
+iGB
+duc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
paD
paD
jpG
kRe
nVG
+<<<<<<< HEAD
sbo
hKg
hKg
@@ -86437,6 +134649,34 @@ doN
oyC
vQs
spy
+=======
+qOZ
+hKg
+hKg
+ouu
+jKc
+sCs
+nxG
+xop
+hhR
+aok
+coz
+xXR
+cmX
+nxG
+nxG
+bPc
+aok
+wbp
+vQs
+lPn
+tnk
+eED
+sTU
+cJT
+vQs
+qlz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hyW
rEO
iOc
@@ -86448,7 +134688,11 @@ vsr
fRG
vsr
wfZ
+<<<<<<< HEAD
ezu
+=======
+soa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pOa
myZ
sXI
@@ -86470,7 +134714,11 @@ liC
jUb
aRz
uSz
+<<<<<<< HEAD
iCD
+=======
+oWQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vJy
njc
ctq
@@ -86484,8 +134732,13 @@ jUb
fRg
xjH
tAc
+<<<<<<< HEAD
vAm
jEf
+=======
+wqJ
+prx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xjH
aaa
aaa
@@ -86653,12 +134906,17 @@ aaa
qvJ
nIj
gYC
+<<<<<<< HEAD
tro
+=======
+ggZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
isO
gYE
uEC
wgw
twr
+<<<<<<< HEAD
idT
jXu
bZz
@@ -86692,6 +134950,41 @@ eGO
cua
mmt
jDa
+=======
+fpn
+jXu
+bZz
+vRr
+paD
+hZg
+dSG
+apC
+sUD
+sWU
+mUz
+jIl
+hWC
+cEY
+tqo
+cEY
+cEY
+aok
+xrv
+aok
+xHC
+aok
+xgb
+aok
+xHC
+aok
+vlk
+fqe
+iWZ
+ojW
+hpj
+uSO
+pSY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQs
tiD
hyW
@@ -86699,7 +134992,11 @@ rEO
iOc
rcW
fjD
+<<<<<<< HEAD
cUF
+=======
+nhS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fjD
cdv
fjD
@@ -86754,7 +135051,11 @@ gAf
tSw
tSw
aaa
+<<<<<<< HEAD
ieS
+=======
+gda
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
sGL
@@ -86910,12 +135211,17 @@ aaa
qvJ
kVR
jCM
+<<<<<<< HEAD
unb
+=======
+lWL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wvR
pQu
vEH
jXu
vVp
+<<<<<<< HEAD
mrZ
npy
oHn
@@ -86949,6 +135255,41 @@ lYm
mzY
fsS
qcD
+=======
+wgQ
+fmG
+jmU
+jBl
+ycf
+unc
+xyz
+jGb
+uMj
+poj
+hnV
+tPt
+gUH
+dAk
+dAk
+rhn
+qnj
+iqt
+lUx
+iqt
+jNR
+iqt
+rlr
+iqt
+ckB
+iqt
+lvh
+ubj
+xbZ
+kZI
+nbd
+vKn
+fNz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQs
vQs
hyW
@@ -86987,7 +135328,11 @@ xUu
mue
xUu
kIR
+<<<<<<< HEAD
stq
+=======
+tMS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xUu
gjk
kIR
@@ -86997,7 +135342,11 @@ xUu
nCL
iCX
oGf
+<<<<<<< HEAD
kRa
+=======
+sPq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rab
iTH
bhS
@@ -87167,6 +135516,7 @@ aaa
qvJ
adD
eks
+<<<<<<< HEAD
cXD
eqi
whc
@@ -87174,6 +135524,15 @@ ujS
jXu
gQl
vms
+=======
+jox
+cVC
+eZo
+qmE
+jXu
+whs
+xkj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
beo
sLU
@@ -87186,6 +135545,7 @@ qTf
oor
oor
hDX
+<<<<<<< HEAD
xNl
sqN
hNT
@@ -87209,6 +135569,31 @@ dHa
xwB
vQs
wEm
+=======
+hrC
+kuS
+muq
+oRO
+bgx
+uYB
+aok
+mml
+aok
+uEP
+aok
+cfH
+mmR
+vlk
+fqe
+vHa
+nNB
+qoY
+rPp
+rPp
+ljH
+vQs
+mQa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rEO
mux
pOa
@@ -87264,7 +135649,11 @@ rKf
tSw
laL
tSw
+<<<<<<< HEAD
xJg
+=======
+aBQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qEf
qEf
aIl
@@ -87424,13 +135813,22 @@ pma
pma
pma
hZQ
+<<<<<<< HEAD
mwi
kRW
+=======
+ntm
+kHV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
jXu
jXu
jXu
+<<<<<<< HEAD
wXs
+=======
+tCF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
jXu
jXu
@@ -87442,6 +135840,7 @@ cBZ
wyP
oor
jqr
+<<<<<<< HEAD
rrw
xNl
xNl
@@ -87467,6 +135866,33 @@ fkH
vQs
hyW
ffJ
+=======
+xLA
+hrC
+hrC
+mmR
+kwh
+iqt
+nut
+aok
+pkM
+aok
+jBu
+aok
+hKQ
+mmR
+gxu
+vQs
+vde
+tGU
+hYl
+caV
+eMK
+eIc
+vQs
+hyW
+qzC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kOQ
lxM
kDS
@@ -87532,7 +135958,11 @@ gnL
ckz
dWA
ecz
+<<<<<<< HEAD
uUK
+=======
+fIR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
lMJ
aaa
@@ -87665,9 +136095,15 @@ lMJ
aaa
aaa
cmB
+<<<<<<< HEAD
ryn
bHI
lHy
+=======
+wsG
+opF
+sbX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jTi
wyn
iOr
@@ -87679,14 +136115,21 @@ tOm
tOm
ntM
pgJ
+<<<<<<< HEAD
oDd
hZQ
iMK
+=======
+pyR
+hZQ
+uQL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
twr
gQg
pCk
twr
xgB
+<<<<<<< HEAD
mkB
lml
jLp
@@ -87717,13 +136160,50 @@ aYy
juq
juq
nLA
+=======
+hJO
+duG
+omV
+fhn
+cuh
+jBp
+wsk
+qHt
+dxo
+hlE
+oor
+aKN
+uha
+tMY
+hDX
+aok
+sbP
+bgx
+aok
+aok
+xtH
+qDW
+qDW
+qDW
+ocS
+eaA
+vAT
+xGT
+xGT
+bHv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQs
vQs
vQs
vQs
vQs
+<<<<<<< HEAD
umw
rsa
+=======
+upM
+pqc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rkM
pOa
hKp
@@ -87922,8 +136402,13 @@ lMJ
aaa
aaa
cmB
+<<<<<<< HEAD
ihJ
ovq
+=======
+nNo
+tCC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qDS
tVo
ese
@@ -87931,6 +136416,7 @@ iOr
aaa
raz
raz
+<<<<<<< HEAD
rIR
mEJ
bWs
@@ -87940,10 +136426,22 @@ ktG
lsG
kLT
oZa
+=======
+pQh
+uEs
+qCM
+uEs
+aFZ
+ktG
+hQy
+hYG
+dwH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fUr
fUr
fUr
fUr
+<<<<<<< HEAD
mlY
mtV
ceY
@@ -87951,11 +136449,21 @@ jTL
jXu
fit
otF
+=======
+bkJ
+iIE
+cAf
+dve
+jXu
+pVV
+qqr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iId
tkf
wZo
oor
hvo
+<<<<<<< HEAD
bqP
okS
oor
@@ -87978,6 +136486,30 @@ pZK
oMX
fYU
iCM
+=======
+uwM
+uwf
+oor
+ylO
+tYU
+hLL
+dfk
+dfk
+rQD
+nsh
+vWD
+sCc
+liU
+nrB
+smB
+tik
+sxk
+xwa
+fjw
+cwY
+sbF
+flG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bzH
hyW
rEO
@@ -88006,7 +136538,11 @@ kRA
jUb
xYq
dqN
+<<<<<<< HEAD
rhs
+=======
+baG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUb
rvI
jUb
@@ -88019,7 +136555,11 @@ oZO
bMS
jUb
dqN
+<<<<<<< HEAD
bdE
+=======
+vCC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jUb
jdH
oBv
@@ -88191,6 +136731,7 @@ aaa
tOm
tOm
tOm
+<<<<<<< HEAD
xxE
aqW
ueS
@@ -88208,11 +136749,31 @@ twr
jXu
hKg
lJQ
+=======
+tsi
+hTG
+gJM
+srk
+qGP
+cLN
+pkT
+sHu
+eMY
+cVL
+jXu
+kIJ
+sPO
+twr
+jXu
+hKg
+oMx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hKg
hKg
hKg
oor
jmR
+<<<<<<< HEAD
nwA
pvZ
mKj
@@ -88238,6 +136799,33 @@ xau
iev
mor
mJf
+=======
+hWK
+fea
+iHS
+cqy
+ebg
+ebg
+fwb
+kQO
+qvV
+tMn
+sFi
+cHG
+snZ
+xgx
+dfk
+uyf
+edN
+uya
+yhL
+nQR
+hYx
+eMf
+iev
+sus
+sly
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxF
sVY
cyk
@@ -88437,7 +137025,11 @@ aaa
aaa
iOr
sQq
+<<<<<<< HEAD
sFk
+=======
+rVb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
viQ
dTQ
rOP
@@ -88454,25 +137046,38 @@ pma
hZQ
jXu
jXu
+<<<<<<< HEAD
aHW
+=======
+hsx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
jXu
jXu
jXu
+<<<<<<< HEAD
oTW
+=======
+alA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lpS
lpS
lpS
ykL
lpS
lpS
+<<<<<<< HEAD
pFF
+=======
+xoj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lls
jXu
jXu
jXu
jXu
cbz
+<<<<<<< HEAD
xyd
gOC
gYY
@@ -88495,6 +137100,30 @@ iev
iev
lkv
flY
+=======
+bLY
+gQa
+dit
+uBj
+uBj
+bDn
+xzx
+hIp
+qCS
+bJX
+xgx
+rzo
+quT
+iev
+gPN
+ebd
+ebd
+jBy
+iev
+iev
+bBy
+qZO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pYn
sVY
psr
@@ -88557,7 +137186,11 @@ tSw
gOp
bCM
vKd
+<<<<<<< HEAD
cPa
+=======
+ikY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tSw
lMJ
aaa
@@ -88711,12 +137344,20 @@ tdg
hkj
sQp
kuW
+<<<<<<< HEAD
pDw
+=======
+qHa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ujT
dYi
iDG
jXu
+<<<<<<< HEAD
idT
+=======
+fpn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
knQ
bPM
sHu
@@ -88725,11 +137366,16 @@ jXu
bPM
rNP
mgv
+<<<<<<< HEAD
xmh
+=======
+qgl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lpS
lpS
bkF
cbz
+<<<<<<< HEAD
sxN
vWA
srr
@@ -88751,6 +137397,29 @@ hvB
sqt
iev
hUV
+=======
+jMb
+kKO
+vQT
+hBo
+gWz
+kQv
+cgZ
+hIp
+ksM
+lQf
+vKC
+fwd
+mwP
+oTw
+nLx
+sHX
+uyh
+hvB
+sqt
+iev
+djn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iVs
fLd
fpy
@@ -88968,12 +137637,21 @@ tdg
hkj
hkj
kuW
+<<<<<<< HEAD
lBj
wkG
mUF
peu
jXu
idT
+=======
+uth
+xBq
+mUF
+obF
+jXu
+fpn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
jXu
jXu
@@ -88985,6 +137663,7 @@ jXu
jXu
jXu
kAI
+<<<<<<< HEAD
hwD
ufm
qtu
@@ -89008,6 +137687,31 @@ hOh
lAi
bzH
nlK
+=======
+gfa
+eOl
+vjg
+mLp
+tvv
+xTe
+xTe
+tvv
+kQP
+wdM
+asT
+dHi
+kkB
+lVp
+bzH
+bzH
+mzj
+sml
+rmL
+hOh
+lAi
+bzH
+azz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uxa
mmm
vjv
@@ -89230,7 +137934,11 @@ qST
xMx
qrF
jXu
+<<<<<<< HEAD
tgE
+=======
+vxO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
aaa
aaa
@@ -89242,6 +137950,7 @@ aaa
aaa
jXu
twr
+<<<<<<< HEAD
hfB
tCN
kQP
@@ -89261,6 +137970,27 @@ nEt
bUb
kas
nlY
+=======
+nsT
+heR
+kQP
+hqD
+kQP
+eTt
+nwm
+izI
+kQP
+eRd
+vlP
+qxJ
+vNp
+hvk
+bzH
+dGC
+uud
+wbW
+fWn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jHW
vjU
bzH
@@ -89460,7 +138190,11 @@ tGX
aXa
aKl
lds
+<<<<<<< HEAD
tmy
+=======
+mzm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hXQ
bVF
fGP
@@ -89482,12 +138216,20 @@ tdg
tdg
tdg
fru
+<<<<<<< HEAD
lXd
+=======
+elz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uzb
phP
rgL
jXu
+<<<<<<< HEAD
nut
+=======
+paU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
aaf
rlU
@@ -89499,6 +138241,7 @@ rlU
aaf
jXu
sxn
+<<<<<<< HEAD
qks
rdq
xBj
@@ -89518,6 +138261,27 @@ tJQ
bsv
qat
kas
+=======
+ciE
+dUd
+rtz
+fpV
+tQp
+bEK
+ydp
+cNb
+mXO
+kUG
+rVn
+qxJ
+sik
+ryV
+paQ
+wyS
+ekb
+wpO
+wbW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ubn
hld
iev
@@ -89537,7 +138301,11 @@ mjr
nxz
ueD
sVY
+<<<<<<< HEAD
wRM
+=======
+wDH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rSx
pEH
pEH
@@ -89545,7 +138313,11 @@ pOa
shl
cIW
pOa
+<<<<<<< HEAD
kNJ
+=======
+jwp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qCL
uIM
ahg
@@ -89744,7 +138516,11 @@ jXu
jXu
jXu
jXu
+<<<<<<< HEAD
cHr
+=======
+otQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
aaa
rlU
@@ -89756,6 +138532,7 @@ rlU
aaa
jXu
jXu
+<<<<<<< HEAD
xLV
kQP
sgU
@@ -89779,6 +138556,31 @@ bLj
rnh
iev
bah
+=======
+ken
+kQP
+hQc
+dFg
+wyV
+iqo
+wyV
+cJt
+mXO
+alu
+aUm
+jvv
+bNN
+rod
+mhM
+dfK
+wuo
+tPW
+ayz
+bLj
+rnh
+iev
+nJJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nqo
qsX
sVY
@@ -89806,7 +138608,11 @@ xYM
aez
ajK
aSe
+<<<<<<< HEAD
kdl
+=======
+jeL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jxc
tuC
iMv
@@ -89832,7 +138638,11 @@ abX
xTO
lEP
lEP
+<<<<<<< HEAD
wab
+=======
+chn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tBJ
tBJ
tBJ
@@ -90001,13 +138811,18 @@ sOP
twr
fnJ
jXu
+<<<<<<< HEAD
mKh
+=======
+wgm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fsQ
aaa
rlU
qrg
cpi
cpi
+<<<<<<< HEAD
pNa
qpD
hvf
@@ -90036,6 +138851,36 @@ blt
bzH
bzH
mMI
+=======
+nSn
+qpD
+qYC
+pNC
+uqX
+loR
+kQP
+ewc
+dFg
+wyV
+wyV
+wyV
+oxX
+mXO
+vdW
+oac
+fhB
+hxd
+dHz
+aqG
+geR
+ekb
+lsU
+bQl
+pCs
+bzH
+bzH
+pNk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ivB
qaw
sVY
@@ -90059,7 +138904,11 @@ pOa
sQY
nPt
qSk
+<<<<<<< HEAD
uAw
+=======
+pBs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lgC
avb
uPi
@@ -90258,12 +139107,17 @@ dEH
pOi
bMu
jXu
+<<<<<<< HEAD
sga
+=======
+agi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fsQ
aaa
rlU
trx
uWn
+<<<<<<< HEAD
tND
fqF
eUz
@@ -90293,6 +139147,37 @@ oQV
exw
bzH
iHZ
+=======
+spf
+czD
+lBg
+tWU
+wWe
+aTU
+jzE
+kQP
+ezw
+aSv
+aLW
+jle
+ukm
+dLh
+kQP
+pUk
+upN
+qxJ
+ajq
+eml
+bzH
+bvl
+nKu
+gxM
+jRo
+qCx
+roG
+bzH
+mnP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tEr
iOc
sVY
@@ -90511,6 +139396,7 @@ sjP
aaa
nmg
hwo
+<<<<<<< HEAD
jdQ
knQ
dLM
@@ -90532,10 +139418,34 @@ kQP
kQP
aoh
aoh
+=======
+rBY
+knQ
+cDV
+sLf
+uEA
+fsQ
+aaa
+rlU
+vbF
+wHW
+wHW
+okj
+rlU
+qYC
+pNC
+lpt
+cNg
+kQP
+kQP
+mXO
+mXO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kQP
kQP
kQP
kQP
+<<<<<<< HEAD
aEp
clf
iRR
@@ -90550,6 +139460,22 @@ nLV
wwv
wAm
gsl
+=======
+rcR
+hIu
+liX
+jUs
+nDG
+bzH
+bzH
+usJ
+kFa
+lak
+rUd
+cXE
+ykb
+cJS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ybn
fLp
sVY
@@ -90573,7 +139499,11 @@ clp
etn
ayH
pOa
+<<<<<<< HEAD
hap
+=======
+bjK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jqQ
mbV
hEA
@@ -90617,7 +139547,11 @@ gwS
oxT
sEE
hrG
+<<<<<<< HEAD
xBl
+=======
+lPB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQg
gYU
pIs
@@ -90772,18 +139706,28 @@ wQj
jXu
jXu
jXu
+<<<<<<< HEAD
vVm
jXu
aaa
rlU
dro
lXs
+=======
+fOB
+jXu
+aaa
+rlU
+vis
+dhz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ixT
oXK
rlU
aaa
aEH
aHt
+<<<<<<< HEAD
rQe
uSb
aHt
@@ -90807,6 +139751,31 @@ plu
xwv
aqG
iHZ
+=======
+loR
+hTM
+aHt
+aHt
+aHt
+eaQ
+aHt
+qlW
+jfg
+lay
+udU
+isA
+eKG
+iit
+pWb
+bzH
+wTv
+sul
+pkF
+dtE
+dSH
+aqG
+mnP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xOw
iOc
sVY
@@ -90879,7 +139848,11 @@ wZe
jsr
wyC
gYU
+<<<<<<< HEAD
sEO
+=======
+rbF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rxY
ulE
aaa
@@ -91028,8 +140001,13 @@ jXu
jXu
jXu
sHu
+<<<<<<< HEAD
iuX
gxU
+=======
+lRA
+lFF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
aaf
rlU
@@ -91041,9 +140019,15 @@ rlU
lMJ
aEH
rhW
+<<<<<<< HEAD
liA
gJb
iwD
+=======
+oRR
+lug
+cGq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wcs
hMn
ygR
@@ -91053,6 +140037,7 @@ mPK
lgg
kWP
lgg
+<<<<<<< HEAD
iVQ
lnf
oEn
@@ -91064,6 +140049,19 @@ aqG
aqG
aqG
fOc
+=======
+uLE
+cSu
+nPN
+bzH
+aqG
+aqG
+mxx
+aqG
+aqG
+aqG
+uGU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mFo
npY
qwR
@@ -91086,7 +140084,11 @@ sVY
xxk
ahr
bMY
+<<<<<<< HEAD
pmw
+=======
+yim
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rvq
fFi
iWD
@@ -91304,6 +140306,7 @@ cFp
vvH
cFp
guX
+<<<<<<< HEAD
vVg
ykR
ipL
@@ -91321,6 +140324,25 @@ xDL
xDL
xDL
xWI
+=======
+saD
+ykR
+bLh
+pPH
+hSg
+uTN
+uVm
+sSV
+alw
+anX
+nyb
+nyb
+xYT
+nyb
+nyb
+nyb
+qjH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vhB
guR
lsf
@@ -91343,7 +140365,11 @@ bBA
txz
wYe
bMY
+<<<<<<< HEAD
aaL
+=======
+pUM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mna
gVn
cXz
@@ -91538,7 +140564,11 @@ eWA
sjP
aaa
aaa
+<<<<<<< HEAD
jhN
+=======
+bxr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXu
rOz
sHu
@@ -91560,6 +140590,7 @@ nZh
hSf
pID
qSp
+<<<<<<< HEAD
bYF
jWM
jfX
@@ -91567,6 +140598,15 @@ xTS
iFC
iBt
koU
+=======
+cOj
+tcr
+jfX
+aUC
+iFC
+iBt
+nrM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yaE
tmK
htd
@@ -91818,9 +140858,15 @@ xnt
ifn
uOi
guX
+<<<<<<< HEAD
aQP
kSN
iXv
+=======
+ocB
+kSN
+qTF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
euo
xML
gWL
@@ -92073,6 +141119,7 @@ kkX
ddP
bVk
bNP
+<<<<<<< HEAD
rRz
guX
kSH
@@ -92080,6 +141127,15 @@ mLD
tEA
jWR
uUB
+=======
+asi
+guX
+qIp
+mLD
+sEM
+jWR
+fbE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pAk
ykS
hPM
@@ -92349,7 +141405,11 @@ oIa
pJR
uJx
sRT
+<<<<<<< HEAD
oWD
+=======
+vsU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gaU
flu
jbd
@@ -92361,9 +141421,15 @@ nIR
tOh
lTM
dYb
+<<<<<<< HEAD
vJs
sCt
kPk
+=======
+psv
+mZz
+cCN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dYb
dYb
tOh
@@ -92374,9 +141440,15 @@ nvI
oNP
ehE
rlw
+<<<<<<< HEAD
gcR
oVs
cbK
+=======
+bTm
+ylf
+tzI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bMY
uET
iZF
@@ -92602,14 +141674,24 @@ oIa
gja
wvo
xCl
+<<<<<<< HEAD
pgd
pJR
iFl
+=======
+nMz
+pJR
+egp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kfA
rWH
oOE
aVd
+<<<<<<< HEAD
geh
+=======
+cKN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mig
wMx
cMQ
@@ -92639,12 +141721,21 @@ ePX
svQ
duu
pKP
+<<<<<<< HEAD
tgG
rQd
cJm
pSB
bJG
eYM
+=======
+cQz
+rQd
+cJm
+jGw
+bJG
+gbn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bqX
ulR
qXL
@@ -92657,7 +141748,11 @@ qXL
oqk
xZB
hIJ
+<<<<<<< HEAD
qJt
+=======
+vhb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lrZ
kiz
nmQ
@@ -92852,16 +141947,28 @@ iBq
mFi
iBq
iBq
+<<<<<<< HEAD
jEC
kON
fDc
oIa
erw
+=======
+vxE
+kON
+fDc
+oIa
+cpn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
koa
srP
nuB
pJR
+<<<<<<< HEAD
liS
+=======
+gAk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qAA
uFQ
eIy
@@ -92873,12 +141980,21 @@ qRI
urA
nIR
hyN
+<<<<<<< HEAD
sQh
kwB
dTr
rIL
bwN
kmn
+=======
+uaN
+jIg
+dTr
+rIL
+bwN
+omd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ukk
rGm
gqX
@@ -92888,18 +142004,30 @@ qPJ
luN
wde
jJd
+<<<<<<< HEAD
ueI
nsg
+=======
+dQL
+umS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qPJ
bgS
taO
dlH
jsP
cOR
+<<<<<<< HEAD
urO
xbY
scB
cpF
+=======
+jvr
+xbY
+scB
+rHk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sXT
sTK
bqX
@@ -92915,7 +142043,11 @@ dVN
iqz
iqz
vZF
+<<<<<<< HEAD
jnR
+=======
+xCR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kiz
svp
fxW
@@ -93113,7 +142245,11 @@ hZZ
htd
uoe
oIa
+<<<<<<< HEAD
nOx
+=======
+nnq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vnE
pzT
jOv
@@ -93121,11 +142257,19 @@ pJR
pJR
pJR
pJR
+<<<<<<< HEAD
naI
rGj
odd
pJR
uDf
+=======
+iiE
+rGj
+rJr
+pJR
+oUB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qRI
urA
nIR
@@ -93142,21 +142286,36 @@ gqX
htd
oGK
qPJ
+<<<<<<< HEAD
cEe
+=======
+rQk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
waH
vbV
ixr
gzW
+<<<<<<< HEAD
ijf
+=======
+rxa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eqc
kyQ
kHg
jhk
cOR
+<<<<<<< HEAD
baB
ijZ
tYt
jBX
+=======
+vgZ
+ijZ
+tYt
+qLk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pXM
iNc
bqX
@@ -93382,7 +142541,11 @@ kEp
aVd
kfC
pJR
+<<<<<<< HEAD
nSa
+=======
+aHN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qRI
urA
tYW
@@ -93399,12 +142562,20 @@ rym
htd
oGK
qPJ
+<<<<<<< HEAD
rha
+=======
+bKv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nsb
izD
evY
sli
+<<<<<<< HEAD
aig
+=======
+oFG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lsJ
gQG
tFr
@@ -93428,7 +142599,11 @@ dVN
iqz
iqz
iqz
+<<<<<<< HEAD
tpY
+=======
+ubF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hZV
skW
mXn
@@ -93615,10 +142790,17 @@ qWF
aaa
aJS
aJS
+<<<<<<< HEAD
kRE
pQG
wtB
bjf
+=======
+akF
+pQG
+wtB
+vyv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aJS
aaa
ihq
@@ -93634,7 +142816,11 @@ siL
grl
noA
pJR
+<<<<<<< HEAD
hSb
+=======
+fGs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mIl
fJp
bSj
@@ -93662,10 +142848,17 @@ qbE
qbE
qbE
qPJ
+<<<<<<< HEAD
gSk
gQG
oBO
skj
+=======
+klj
+gQG
+oBO
+jNl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pKP
xpL
eWp
@@ -93685,7 +142878,11 @@ bjy
iqz
tqd
pbz
+<<<<<<< HEAD
tTZ
+=======
+dpl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hZV
bAI
idL
@@ -93834,7 +143031,11 @@ sjP
sjP
sjP
sjP
+<<<<<<< HEAD
gIj
+=======
+dkX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yey
jTZ
aBL
@@ -93891,18 +143092,30 @@ tUH
vPW
lDo
pJR
+<<<<<<< HEAD
lwL
hip
fJp
iXu
+=======
+gvl
+hip
+fJp
+wBu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jLQ
fgS
jrk
dhX
nIR
gBD
+<<<<<<< HEAD
cIH
mvm
+=======
+twl
+bcx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rhK
rKJ
wFe
@@ -93915,7 +143128,11 @@ ebM
uRA
mTk
yhm
+<<<<<<< HEAD
gxo
+=======
+rbs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jHA
lln
nBB
@@ -94130,12 +143347,20 @@ aaa
aJS
oOl
rxx
+<<<<<<< HEAD
eOu
+=======
+viF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aPv
oWF
eQg
aJS
+<<<<<<< HEAD
gTO
+=======
+mSI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aUx
qhF
htd
@@ -94149,16 +143374,26 @@ aKb
pUd
pJR
lJn
+<<<<<<< HEAD
eRC
htG
oDC
+=======
+psy
+htG
+bIq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pJR
mQq
ndS
urA
pFG
gBD
+<<<<<<< HEAD
kCA
+=======
+dzX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fRu
hVE
xXw
@@ -94199,7 +143434,11 @@ uYI
iqz
bxE
hZV
+<<<<<<< HEAD
yem
+=======
+xUm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gPl
nZm
wvB
@@ -94211,7 +143450,11 @@ isk
iUm
bVx
fWc
+<<<<<<< HEAD
rRd
+=======
+muZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jay
mRy
wBW
@@ -94385,7 +143628,11 @@ ixP
qWF
aaa
aJS
+<<<<<<< HEAD
oDB
+=======
+dWf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nhP
aOc
aPw
@@ -94432,7 +143679,11 @@ asm
kqm
vLf
kXD
+<<<<<<< HEAD
sbD
+=======
+kWO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rvE
whx
cIK
@@ -94456,7 +143707,11 @@ uYI
iqz
iaK
hZV
+<<<<<<< HEAD
ayG
+=======
+vzt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jBU
kgx
kgx
@@ -94644,7 +143899,11 @@ aaa
aJS
bpu
wzH
+<<<<<<< HEAD
eKl
+=======
+nwL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aPv
iIQ
aRV
@@ -94662,7 +143921,11 @@ dsQ
sVz
aNe
jiI
+<<<<<<< HEAD
cMJ
+=======
+kvr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jnl
dNz
dNz
@@ -94671,8 +143934,13 @@ tNg
vpg
ebx
aks
+<<<<<<< HEAD
fnj
wxE
+=======
+hux
+bbT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ilq
kAp
jnI
@@ -94689,6 +143957,7 @@ xEX
hYr
qAf
lrR
+<<<<<<< HEAD
oxy
nFM
tIx
@@ -94702,6 +143971,21 @@ eIO
sGn
fvE
dBv
+=======
+qwI
+xJI
+tIx
+wmT
+hCt
+uUb
+rXW
+bSs
+rla
+eIO
+sGn
+fvE
+dYG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iqz
iqz
iqz
@@ -94713,7 +143997,11 @@ hbO
iqz
ogk
hZV
+<<<<<<< HEAD
dYW
+=======
+daa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uiw
kys
kWE
@@ -94876,7 +144164,11 @@ lAM
aaa
aaa
rJB
+<<<<<<< HEAD
qYb
+=======
+kaU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nqD
sfK
rTw
@@ -95157,10 +144449,17 @@ qWF
aaa
aJS
aJS
+<<<<<<< HEAD
iOQ
vrJ
fEO
hsu
+=======
+hlB
+vrJ
+fEO
+cFr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aJS
aaa
ihq
@@ -95172,8 +144471,13 @@ tKN
aaf
dsQ
mZL
+<<<<<<< HEAD
aSB
yhz
+=======
+usQ
+aGQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
acf
hmq
dJX
@@ -95191,8 +144495,13 @@ aaf
inX
pRh
uCH
+<<<<<<< HEAD
jeV
jMT
+=======
+mWY
+mtb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSo
nNY
htd
@@ -95209,7 +144518,11 @@ oHG
slC
dHN
fVY
+<<<<<<< HEAD
pCI
+=======
+mVf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fhe
ocQ
eIO
@@ -95233,7 +144546,11 @@ jLy
kgx
hKB
vLo
+<<<<<<< HEAD
gxj
+=======
+aAb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tSw
dbX
iUm
@@ -95433,10 +144750,17 @@ nxO
qXF
qXF
aMB
+<<<<<<< HEAD
jAJ
duI
jnt
usV
+=======
+tVk
+duI
+jnt
+cdC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kcn
qsL
dho
@@ -95446,29 +144770,51 @@ ndS
qRI
qRI
jzN
+<<<<<<< HEAD
hGm
qeZ
nBs
cvU
tGQ
+=======
+sYh
+qeZ
+nBs
+eLa
+vyi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nNY
htd
tHR
sTz
xIG
+<<<<<<< HEAD
gRV
eAL
xQY
kcF
jih
+=======
+bKB
+eAL
+xQY
+kcF
+cYJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oar
keK
lXA
mVE
hxq
+<<<<<<< HEAD
cUm
nqB
uHh
+=======
+nJn
+nqB
+kxa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eIO
hKG
fvE
@@ -95480,7 +144826,11 @@ iqz
iqz
sTW
cYx
+<<<<<<< HEAD
sPh
+=======
+cXH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
joj
dWI
hZV
@@ -95652,7 +145002,11 @@ aeq
aeq
aeq
aeq
+<<<<<<< HEAD
pce
+=======
+dRX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
riY
aeq
vDh
@@ -95690,6 +145044,7 @@ dUj
gGy
hmq
fUj
+<<<<<<< HEAD
rgV
duI
duI
@@ -95697,6 +145052,15 @@ aif
ddm
vKL
sGV
+=======
+qcD
+duI
+duI
+lwt
+ddm
+vKL
+gmH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lSz
aks
qzz
@@ -95713,11 +145077,16 @@ sNl
aZR
lYL
pBa
+<<<<<<< HEAD
vzJ
+=======
+aNQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxy
nxy
aYJ
hEc
+<<<<<<< HEAD
mPX
gSV
vuf
@@ -95725,16 +145094,34 @@ lsg
rvE
tZJ
uRd
+=======
+bFN
+qJn
+hYA
+jsh
+rvE
+tZJ
+vjX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tZJ
eIO
wKC
fvE
+<<<<<<< HEAD
pKr
usr
hxk
hOs
hgB
wpN
+=======
+kKT
+kMk
+wPH
+xyA
+hgB
+jxm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unt
bqX
bqX
@@ -95905,7 +145292,11 @@ aaa
aaa
aeq
xCo
+<<<<<<< HEAD
jHp
+=======
+loY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tTP
fdQ
uou
@@ -95917,7 +145308,11 @@ fYJ
ycM
tYQ
dsk
+<<<<<<< HEAD
feZ
+=======
+ewC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iAN
xnT
ycM
@@ -95942,12 +145337,21 @@ uoe
tKN
aaf
dho
+<<<<<<< HEAD
uak
gGy
qVc
dMY
lnO
ggs
+=======
+wss
+gGy
+qVc
+dMY
+jYL
+tpA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aAt
duI
pCO
@@ -95960,10 +145364,17 @@ fix
yeA
tnm
jzN
+<<<<<<< HEAD
jSp
dkL
uOd
fOT
+=======
+sUy
+dkL
+uOd
+bRp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jzN
qyI
qaP
@@ -95980,12 +145391,20 @@ rvE
sIG
rvE
rvE
+<<<<<<< HEAD
vqN
+=======
+sgc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lLq
lLq
eIO
qbZ
+<<<<<<< HEAD
iou
+=======
+lRT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bqX
bqX
bqX
@@ -95993,7 +145412,11 @@ pJV
bqX
bqX
bqX
+<<<<<<< HEAD
iRU
+=======
+cJL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fjq
wvh
iEv
@@ -96159,7 +145582,11 @@ aaa
jLw
aaa
aaa
+<<<<<<< HEAD
vRJ
+=======
+cTk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aeq
dXs
tJE
@@ -96205,11 +145632,19 @@ gGy
cwX
gGy
nEC
+<<<<<<< HEAD
hnx
duI
gGy
oLD
eNQ
+=======
+pJY
+duI
+gGy
+oLD
+klI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lPZ
lyN
piz
@@ -96217,10 +145652,17 @@ lLk
fix
haP
jzN
+<<<<<<< HEAD
lvn
eQe
koi
sZL
+=======
+fEC
+eQe
+qtq
+iAA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSo
cgF
koW
@@ -96431,7 +145873,11 @@ mbk
ntP
bfj
hMy
+<<<<<<< HEAD
heM
+=======
+aZr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rbw
gnm
eVa
@@ -96466,7 +145912,11 @@ qNV
iOp
wOR
ljL
+<<<<<<< HEAD
ovE
+=======
+mrG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lPZ
mJE
tWV
@@ -96688,7 +146138,11 @@ ewj
bkl
wZU
pMy
+<<<<<<< HEAD
jRd
+=======
+oGH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
orx
eeq
sDS
@@ -96717,6 +146171,7 @@ owv
dUj
gGy
dMY
+<<<<<<< HEAD
cIg
nEC
jts
@@ -96724,6 +146179,15 @@ duI
gGy
bIH
cmA
+=======
+raJ
+nEC
+qMf
+duI
+gGy
+bIH
+iMi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lPZ
lyN
wXP
@@ -96731,10 +146195,17 @@ eGV
fix
rwi
jzN
+<<<<<<< HEAD
gJx
gzi
wOO
nwx
+=======
+wyp
+gzi
+cyU
+wpo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSo
iXb
kdx
@@ -96926,7 +146397,11 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
aFb
+=======
+tLb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iTZ
ahj
ahj
@@ -96970,7 +146445,11 @@ tGL
tKN
aaf
dho
+<<<<<<< HEAD
gcN
+=======
+vSh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gGy
gGy
dMY
@@ -96988,10 +146467,17 @@ fix
mIu
haP
jzN
+<<<<<<< HEAD
akQ
nvc
nBs
hsG
+=======
+tNC
+nvc
+nBs
+mun
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jzN
bcq
sRf
@@ -97021,9 +146507,15 @@ fma
fma
kor
aQS
+<<<<<<< HEAD
kED
kQe
adC
+=======
+qCY
+kQe
+qYt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qDa
oIg
oIg
@@ -97202,10 +146694,17 @@ ayV
gFR
khm
uok
+<<<<<<< HEAD
vre
ezg
uVv
vwL
+=======
+bzV
+ezg
+uVv
+pdI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pjh
gpc
gGo
@@ -97232,6 +146731,7 @@ dUj
qVc
wNh
veO
+<<<<<<< HEAD
pbR
duI
duI
@@ -97239,6 +146739,15 @@ lxB
ppB
nEC
sGV
+=======
+iAj
+duI
+duI
+wtX
+ppB
+nEC
+gmH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ebx
vQe
kHn
@@ -97260,17 +146769,29 @@ rgZ
suW
hJF
cZK
+<<<<<<< HEAD
pds
cXg
nyy
gVl
nsj
+=======
+euw
+cXg
+nyy
+gVl
+usg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fma
ebV
dZb
ebV
fma
+<<<<<<< HEAD
dOj
+=======
+xgi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sck
iwA
puP
@@ -97281,9 +146802,15 @@ dPY
xWJ
oIg
cId
+<<<<<<< HEAD
aGW
oIg
odg
+=======
+rQl
+oIg
+wBq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bEC
lsV
aXW
@@ -97296,7 +146823,11 @@ jjs
dKC
xLu
dKC
+<<<<<<< HEAD
aRx
+=======
+cbp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ctL
oPD
iUm
@@ -97489,10 +147020,17 @@ lNH
qXF
qXF
aMB
+<<<<<<< HEAD
pvl
duI
jnt
tqb
+=======
+mvZ
+duI
+jnt
+pOK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sLd
mRn
dho
@@ -97505,8 +147043,13 @@ jzN
aAI
gzi
krL
+<<<<<<< HEAD
ukP
tGQ
+=======
+cqm
+vyi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wpx
htd
tHR
@@ -97537,10 +147080,17 @@ ujJ
ujJ
ujJ
oIg
+<<<<<<< HEAD
dSd
poS
byf
eeD
+=======
+cDM
+poS
+byf
+kBu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oir
wal
tzg
@@ -97716,10 +147266,17 @@ duF
cJj
erx
lsP
+<<<<<<< HEAD
phd
eaP
lTj
nOg
+=======
+vYF
+eaP
+lTj
+jau
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
afj
qGs
gCD
@@ -97742,8 +147299,13 @@ tKN
aaf
dsQ
kGc
+<<<<<<< HEAD
bYU
viN
+=======
+dTV
+gkD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nXm
wNh
veO
@@ -97761,8 +147323,13 @@ aaf
inX
sxA
cPU
+<<<<<<< HEAD
sDY
jGp
+=======
+ygt
+dqu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oSo
wpx
htd
@@ -98000,7 +147567,11 @@ aaf
dsQ
dsQ
dho
+<<<<<<< HEAD
szD
+=======
+rhL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sLd
qXF
aMB
@@ -98037,7 +147608,11 @@ iug
nZf
uTP
eut
+<<<<<<< HEAD
ygj
+=======
+vlY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uwK
wmg
jAt
@@ -98270,7 +147845,11 @@ bcT
xPN
vQe
kmZ
+<<<<<<< HEAD
lSV
+=======
+buL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pha
sdp
vxB
@@ -98286,7 +147865,11 @@ xdX
pZc
fak
jUh
+<<<<<<< HEAD
ycQ
+=======
+vsI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cZK
wfA
cBV
@@ -98294,16 +147877,26 @@ wsD
cBV
xlv
eut
+<<<<<<< HEAD
mvr
tjz
nhQ
+=======
+bUo
+tjc
+jtS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bFH
mMl
lhT
cqT
lhT
iMG
+<<<<<<< HEAD
okn
+=======
+dpg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bBo
gwf
gfZ
@@ -98311,7 +147904,11 @@ gqm
jZP
aIO
jrb
+<<<<<<< HEAD
iAy
+=======
+vEC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eOo
rRJ
edH
@@ -98516,8 +148113,13 @@ aaf
dho
dho
dho
+<<<<<<< HEAD
oHD
cBO
+=======
+iNB
+wfD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dho
syo
syo
@@ -98533,7 +148135,11 @@ qKg
qKg
qKg
lVl
+<<<<<<< HEAD
lip
+=======
+pic
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tvE
psp
wBF
@@ -98790,7 +148396,11 @@ nse
bmb
lwg
aAK
+<<<<<<< HEAD
kAg
+=======
+xbg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tvE
qJU
hPM
@@ -98808,7 +148418,11 @@ eKA
azF
eKA
uqp
+<<<<<<< HEAD
hIL
+=======
+kaF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bse
eIV
gcU
@@ -98816,7 +148430,11 @@ noN
bCc
bCc
eER
+<<<<<<< HEAD
toH
+=======
+kPy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eut
dEV
gwf
@@ -98832,7 +148450,11 @@ aHi
hrh
txG
eKP
+<<<<<<< HEAD
inp
+=======
+uBG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kXG
svS
ove
@@ -99024,6 +148646,7 @@ sey
hPM
hvr
syo
+<<<<<<< HEAD
nSj
vNG
ybC
@@ -99033,6 +148656,17 @@ tyY
aPs
ttT
kAv
+=======
+bUt
+vNG
+tIR
+tyY
+ogL
+tyY
+aPs
+cUX
+guO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nOq
xDa
vwP
@@ -99042,7 +148676,11 @@ lSz
wxk
tvE
uHa
+<<<<<<< HEAD
mxk
+=======
+aqt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yeu
vNf
cGj
@@ -99069,11 +148707,19 @@ obN
gwf
dMz
tga
+<<<<<<< HEAD
lMA
nJH
gso
nQX
grU
+=======
+btG
+nJH
+gso
+nQX
+iYO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tga
kzQ
gwf
@@ -99283,7 +148929,11 @@ kGq
syo
oOz
tLi
+<<<<<<< HEAD
jCv
+=======
+nnh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tyY
vFx
tyY
@@ -99311,10 +148961,17 @@ kON
ylQ
bGC
wHu
+<<<<<<< HEAD
cBv
ibw
ibw
azo
+=======
+gVE
+ibw
+ibw
+nIP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gFQ
aDm
non
@@ -99326,11 +148983,19 @@ gVO
gwf
hCK
eut
+<<<<<<< HEAD
brN
hca
lqW
xIM
bfy
+=======
+fZw
+wRD
+lqW
+xIM
+qTU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eut
beZ
gwf
@@ -99509,7 +149174,11 @@ wVt
jzD
wxj
kZG
+<<<<<<< HEAD
oMa
+=======
+ihN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kYg
kYg
ylZ
@@ -99520,7 +149189,11 @@ sWV
sWV
sWV
qJb
+<<<<<<< HEAD
fEn
+=======
+rJh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hME
olw
olw
@@ -99546,11 +149219,19 @@ eCB
tyY
xFx
sxR
+<<<<<<< HEAD
qpK
sqJ
gPA
tFv
jVu
+=======
+jxv
+sqJ
+gPA
+lZM
+qrw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
syo
lSz
vQe
@@ -99604,7 +149285,11 @@ dIW
iTc
qfQ
cLk
+<<<<<<< HEAD
wqr
+=======
+oxR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
svS
dKC
qkX
@@ -99780,7 +149465,11 @@ xNo
woV
bkZ
xNU
+<<<<<<< HEAD
bHT
+=======
+uZL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nVy
tGI
daC
@@ -99798,12 +149487,20 @@ syo
mIH
iFX
ifM
+<<<<<<< HEAD
oeF
+=======
+hiZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rDT
syL
rDT
tZD
+<<<<<<< HEAD
rrP
+=======
+snu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ifM
pdY
pXA
@@ -99825,7 +149522,11 @@ htd
saU
tgI
mvR
+<<<<<<< HEAD
cuh
+=======
+jRO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bPi
gpB
sky
@@ -99861,7 +149562,11 @@ fhi
fhi
fhi
bft
+<<<<<<< HEAD
sZJ
+=======
+jws
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gyQ
iVt
iNi
@@ -100037,8 +149742,13 @@ jAP
fEn
xXC
xNU
+<<<<<<< HEAD
kbW
hPm
+=======
+eJd
+xlf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lWg
byw
glv
@@ -100058,9 +149768,15 @@ alg
rEg
uGj
tyY
+<<<<<<< HEAD
wYw
nCB
pVR
+=======
+iDh
+nCB
+wll
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gpS
xuH
jdv
@@ -100082,7 +149798,11 @@ htd
saU
ooP
mvR
+<<<<<<< HEAD
inT
+=======
+rVT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iQi
fGv
knY
@@ -100113,7 +149833,11 @@ fMn
gal
fgH
gyQ
+<<<<<<< HEAD
sol
+=======
+hSl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fhi
fhi
fhi
@@ -100262,7 +149986,11 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
aFb
+=======
+tLb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gdb
ikZ
gdb
@@ -100339,14 +150067,24 @@ htd
dhU
dkW
mvR
+<<<<<<< HEAD
cOk
aSf
qqp
+=======
+bXc
+tLH
+lnu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
otB
bdv
jXK
sQB
+<<<<<<< HEAD
xzB
+=======
+gLU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
buT
oOB
kZx
@@ -100376,12 +150114,21 @@ fhi
fhi
uEo
fiS
+<<<<<<< HEAD
yaU
hNu
yaU
yaU
yaU
yaU
+=======
+rXT
+eRn
+rXT
+rXT
+rXT
+rXT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lMJ
uGg
nFa
@@ -100540,11 +150287,19 @@ pyY
sNB
xWm
mLL
+<<<<<<< HEAD
nXB
vkb
cLl
sWV
kCU
+=======
+xWr
+vkb
+cLl
+sWV
+unK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mOt
clq
aKa
@@ -100568,7 +150323,11 @@ qBC
syo
xUx
cRU
+<<<<<<< HEAD
kqj
+=======
+oRn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sjS
xNd
tyY
@@ -100587,7 +150346,11 @@ icj
hda
mdy
naw
+<<<<<<< HEAD
fCP
+=======
+pQO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bwr
srp
eEH
@@ -100605,7 +150368,11 @@ dlG
ipM
rsD
qos
+<<<<<<< HEAD
aaj
+=======
+sLF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kZx
oBz
gTo
@@ -100633,12 +150400,21 @@ huj
fhi
xEU
iqx
+<<<<<<< HEAD
aJh
hAv
aJh
qvi
vsD
cxT
+=======
+xYZ
+gil
+xYZ
+oet
+dXU
+kgC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lMJ
uGg
nFa
@@ -100853,7 +150629,11 @@ htd
mrJ
lvs
xJa
+<<<<<<< HEAD
est
+=======
+kxW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gWH
ivR
mxI
@@ -100890,12 +150670,21 @@ fhi
fhi
fhi
twy
+<<<<<<< HEAD
wtY
gYG
clD
eIv
snj
cxT
+=======
+nJA
+nZL
+bEv
+cgP
+rtj
+kgC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lMJ
uGg
nFa
@@ -101040,7 +150829,11 @@ aaa
rrt
lMJ
mxn
+<<<<<<< HEAD
ulk
+=======
+mwj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psw
asM
mxn
@@ -101092,7 +150885,11 @@ vLb
jmT
jZR
mJN
+<<<<<<< HEAD
bBC
+=======
+cwP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sqM
hBr
jef
@@ -101125,9 +150922,15 @@ hNz
iTO
aEW
mzg
+<<<<<<< HEAD
dAf
tEt
nxQ
+=======
+rHh
+tEt
+tKR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fjb
prU
aJd
@@ -101139,6 +150942,7 @@ jVy
jTN
vAH
kIY
+<<<<<<< HEAD
iaF
gyQ
yfh
@@ -101153,6 +150957,22 @@ ghS
hLV
vsD
cxT
+=======
+rbd
+gyQ
+rbD
+jwj
+ujk
+jvo
+aHH
+iYE
+dTN
+dEF
+dTN
+cOT
+dXU
+kgC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lMJ
uGg
wpn
@@ -101309,7 +151129,11 @@ gMZ
cju
gMZ
mFf
+<<<<<<< HEAD
wdp
+=======
+mYb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sHt
qrn
qRg
@@ -101366,7 +151190,11 @@ htd
cfe
ddO
sLE
+<<<<<<< HEAD
mXK
+=======
+cEv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iQO
eeT
tUn
@@ -101382,7 +151210,11 @@ myB
vWz
hkE
pke
+<<<<<<< HEAD
iNX
+=======
+msJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xKK
xKK
rJA
@@ -101608,12 +151440,20 @@ xCD
xCD
xCD
xCD
+<<<<<<< HEAD
nzg
+=======
+byQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hio
vtu
cWT
xBx
+<<<<<<< HEAD
nPo
+=======
+bdb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
smG
smG
gtU
@@ -101639,13 +151479,20 @@ olG
ohH
dTS
gtV
+<<<<<<< HEAD
fqh
tEt
jtg
+=======
+enF
+tEt
+rMr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xff
eSl
gTU
kYU
+<<<<<<< HEAD
gzZ
vEo
biz
@@ -101657,6 +151504,19 @@ ove
iHv
gIK
oWG
+=======
+ote
+vEo
+iXp
+svS
+kMd
+hxe
+cuO
+ove
+iHv
+gIK
+buv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xLu
ktz
svS
@@ -101856,7 +151716,11 @@ uZj
ghl
xZW
uOX
+<<<<<<< HEAD
aBV
+=======
+myG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rac
bvJ
bvJ
@@ -101880,7 +151744,11 @@ fCt
uDr
uDr
sLE
+<<<<<<< HEAD
mVo
+=======
+teq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vIB
qOM
tUn
@@ -101888,8 +151756,13 @@ ftj
wXF
doM
tZo
+<<<<<<< HEAD
viy
dyz
+=======
+bXg
+oFT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gvS
oYZ
oYZ
@@ -101921,8 +151794,13 @@ dpN
dpN
egk
mwY
+<<<<<<< HEAD
uVs
kCm
+=======
+bIa
+vYl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nFa
nFa
rDB
@@ -102068,7 +151946,11 @@ aaa
rrt
lMJ
mxn
+<<<<<<< HEAD
aml
+=======
+osH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gTt
sdu
fad
@@ -102113,8 +151995,13 @@ dZm
vFB
fRS
twN
+<<<<<<< HEAD
sGX
uoS
+=======
+lkc
+hhN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pBi
hkG
xEJ
@@ -102125,6 +152012,7 @@ uWU
oyY
dfp
tRL
+<<<<<<< HEAD
hNh
eQE
bNf
@@ -102136,6 +152024,19 @@ wYB
kMG
sWq
xIH
+=======
+hrM
+eQE
+bNf
+vZM
+eQE
+hcm
+fEg
+wYB
+kMG
+wSI
+oBM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kCZ
kMG
tlK
@@ -102150,7 +152051,11 @@ nBj
gYe
vQb
mdu
+<<<<<<< HEAD
xmG
+=======
+xPm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ohZ
sac
huq
@@ -102170,7 +152075,11 @@ nFa
svS
mHy
mHy
+<<<<<<< HEAD
kJc
+=======
+kVq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pdi
kRV
svS
@@ -102325,7 +152234,11 @@ aaa
aaa
aaa
mxn
+<<<<<<< HEAD
oRk
+=======
+yeV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hUB
qmf
jTH
@@ -102347,7 +152260,11 @@ fRW
qnS
uxb
hAk
+<<<<<<< HEAD
tFm
+=======
+gzO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eqn
jSb
kAF
@@ -102385,7 +152302,11 @@ lYR
loh
nxH
mVY
+<<<<<<< HEAD
tmx
+=======
+pQC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eQE
reJ
pcc
@@ -102419,7 +152340,11 @@ fnh
mMX
moF
klT
+<<<<<<< HEAD
uhd
+=======
+iWT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
svS
dKC
lMW
@@ -102630,22 +152555,36 @@ twN
rac
ekR
wCL
+<<<<<<< HEAD
kIb
+=======
+gPh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hkG
wPE
fGH
gwc
aLk
pAr
+<<<<<<< HEAD
cPP
cqI
wSU
+=======
+wjK
+cqI
+vtK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eQE
oWH
nBf
eQE
rVG
+<<<<<<< HEAD
tou
+=======
+kqZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wYB
iji
cAG
@@ -102686,9 +152625,15 @@ ouX
bHt
snE
fFo
+<<<<<<< HEAD
jTe
wcO
rMH
+=======
+pOk
+hBI
+krN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kYD
lMJ
lMJ
@@ -102892,6 +152837,7 @@ gvm
uhP
cXQ
gwc
+<<<<<<< HEAD
mzc
owi
cUy
@@ -102899,6 +152845,15 @@ hyX
fQh
eQE
dmn
+=======
+pof
+owi
+nxA
+hyX
+rrz
+eQE
+eEf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rOM
eQE
qrQ
@@ -102914,9 +152869,15 @@ bWM
tUn
jGv
wXF
+<<<<<<< HEAD
pkz
sBz
ipl
+=======
+uqO
+enS
+jwP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cbg
bix
vQb
@@ -102924,8 +152885,13 @@ ekQ
uhT
wtP
bDm
+<<<<<<< HEAD
qBL
hXg
+=======
+lpR
+obQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQb
jbg
gwf
@@ -102945,7 +152911,11 @@ guG
unP
gKK
otj
+<<<<<<< HEAD
pXy
+=======
+fvK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kYD
lMJ
aaa
@@ -103149,11 +153119,19 @@ uFf
qVt
wxG
gwc
+<<<<<<< HEAD
fDl
oCn
gWl
epO
gVa
+=======
+jjF
+oCn
+gWl
+epO
+qrO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eQE
nnl
qfB
@@ -103161,7 +153139,11 @@ dDH
pkK
ocC
nmf
+<<<<<<< HEAD
kep
+=======
+lHe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gFL
xlF
xlF
@@ -103177,8 +153159,13 @@ jvL
vfh
kHN
tAg
+<<<<<<< HEAD
gpb
psu
+=======
+tcx
+nhr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vYE
wnY
nfs
@@ -103202,7 +153189,11 @@ guG
iAs
coe
tfV
+<<<<<<< HEAD
gwA
+=======
+nRQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oLS
lMJ
aaa
@@ -103376,7 +153367,11 @@ eek
wst
mPE
knf
+<<<<<<< HEAD
kxZ
+=======
+gGf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dIO
dIO
dIO
@@ -103406,7 +153401,11 @@ nGK
rPN
bIi
bTl
+<<<<<<< HEAD
rtG
+=======
+lIB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dDq
dUo
utS
@@ -103415,9 +153414,15 @@ eQE
mFC
wHL
eQE
+<<<<<<< HEAD
ahu
eLI
qqT
+=======
+rem
+eLI
+ltW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jyF
gFL
byW
@@ -103434,7 +153439,11 @@ sIW
bRb
cKm
tAg
+<<<<<<< HEAD
yle
+=======
+byE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
poq
vYE
lAH
@@ -103459,7 +153468,11 @@ guG
gYl
nrm
egF
+<<<<<<< HEAD
xxs
+=======
+stI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kYD
lMJ
aaa
@@ -103658,9 +153671,15 @@ twN
qFo
lWm
gvm
+<<<<<<< HEAD
nlS
jgw
kSR
+=======
+vLM
+wSs
+rRm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fGH
lBA
uky
@@ -103675,13 +153694,21 @@ eQE
tIb
ndk
cve
+<<<<<<< HEAD
agP
+=======
+xEe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xoK
oxd
xlF
xlF
aWg
+<<<<<<< HEAD
cia
+=======
+jgK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tUn
dQT
wXF
@@ -103691,7 +153718,11 @@ sIW
jSk
rkT
tAg
+<<<<<<< HEAD
cci
+=======
+vEv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pkx
hBB
wnY
@@ -103715,7 +153746,11 @@ sEZ
evE
xsn
ucm
+<<<<<<< HEAD
wor
+=======
+tUc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gkc
kYD
lMJ
@@ -103763,13 +153798,21 @@ lMJ
dxK
aaf
aaf
+<<<<<<< HEAD
axS
+=======
+weq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kJi
pgU
qRS
pnk
kJi
+<<<<<<< HEAD
axS
+=======
+weq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -103915,9 +153958,15 @@ aeb
bvJ
lWm
kdN
+<<<<<<< HEAD
jgw
jGA
kiK
+=======
+wSs
+jGA
+mgo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fGH
fhQ
sFB
@@ -104129,7 +154178,11 @@ peF
liO
sSs
gkM
+<<<<<<< HEAD
fMU
+=======
+bcw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uKL
uKL
mKu
@@ -104210,7 +154263,11 @@ gSH
tBp
wCq
dQA
+<<<<<<< HEAD
sKj
+=======
+ewh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
elJ
qNA
gwf
@@ -104434,11 +154491,19 @@ qpM
qVt
fGH
eHS
+<<<<<<< HEAD
sln
mal
gMy
hPK
pxM
+=======
+bpq
+mal
+gMy
+hPK
+xqv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rmj
fWW
rTQ
@@ -104482,7 +154547,11 @@ jJm
bLd
bLd
oWk
+<<<<<<< HEAD
jMW
+=======
+csz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
guG
fJc
dVX
@@ -104648,7 +154717,11 @@ rwE
tgo
tgo
lOU
+<<<<<<< HEAD
hJe
+=======
+nmI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lnc
sBa
obw
@@ -104691,16 +154764,28 @@ qcQ
nsk
fVC
fZV
+<<<<<<< HEAD
aoc
+=======
+dWg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mal
cfA
hPK
pgK
+<<<<<<< HEAD
rKF
dVm
hFq
uIs
pWp
+=======
+idR
+dVm
+xWY
+uIs
+rwa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aJI
iJK
wYB
@@ -104726,7 +154811,11 @@ sbK
ejL
aPX
elJ
+<<<<<<< HEAD
cza
+=======
+wGH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
emh
fQo
oWk
@@ -104744,8 +154833,13 @@ qBF
nCG
tqx
bOm
+<<<<<<< HEAD
ati
bNv
+=======
+fhU
+cdS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kYD
aaa
aaa
@@ -104791,13 +154885,21 @@ lMJ
dxK
aaf
aaf
+<<<<<<< HEAD
axS
+=======
+weq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kJi
vpl
cDb
xOI
kJi
+<<<<<<< HEAD
axS
+=======
+weq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -104948,6 +155050,7 @@ qcQ
kZn
fGH
gwc
+<<<<<<< HEAD
kYX
mal
mEI
@@ -104960,13 +155063,31 @@ uIs
fLu
oLF
cTR
+=======
+bUk
+mal
+eVy
+hPK
+cFl
+msT
+lPi
+cuM
+uIs
+ffL
+oLF
+nGE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wYB
kCZ
soU
gkx
gkx
nbJ
+<<<<<<< HEAD
cia
+=======
+jgK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tUn
eLh
lQI
@@ -105176,9 +155297,15 @@ hJv
iEE
ejl
pFd
+<<<<<<< HEAD
htX
lqQ
sdt
+=======
+nwa
+lqQ
+nYO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
geV
hvO
ued
@@ -105205,14 +155332,22 @@ wKu
jIk
hZn
cgl
+<<<<<<< HEAD
mNw
+=======
+uZu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mal
cfA
mqu
mJk
itg
tEy
+<<<<<<< HEAD
ilw
+=======
+nEB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uIs
bjl
vqp
@@ -105441,7 +155576,11 @@ jBY
aKk
lXl
nzS
+<<<<<<< HEAD
gnJ
+=======
+gpk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qXB
kbo
tbd
@@ -105467,7 +155606,11 @@ mal
bDK
oRs
pem
+<<<<<<< HEAD
rWF
+=======
+eEa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
huG
huG
huG
@@ -105480,7 +155623,11 @@ uHo
beO
lXr
cZm
+<<<<<<< HEAD
uZh
+=======
+cXc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tUn
kmN
bGL
@@ -105497,7 +155644,11 @@ wXF
mOD
fAI
tUn
+<<<<<<< HEAD
cHN
+=======
+tId
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
okQ
hEV
bLd
@@ -105510,7 +155661,11 @@ eWy
bLd
lpD
wYl
+<<<<<<< HEAD
cRZ
+=======
+tit
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fPD
eQY
hpv
@@ -105712,6 +155867,7 @@ aSk
tlZ
lje
klZ
+<<<<<<< HEAD
oCq
fqD
jgw
@@ -105720,6 +155876,16 @@ oEu
gZV
jTs
oMC
+=======
+bqC
+fqD
+wSs
+pur
+oEu
+gZV
+jTs
+xsV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jXE
klS
tpF
@@ -105736,8 +155902,13 @@ kCZ
nKI
bZq
vrn
+<<<<<<< HEAD
vDO
haS
+=======
+tUt
+gOa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unL
unL
ouR
@@ -105754,9 +155925,15 @@ wXF
wXF
wXF
wXF
+<<<<<<< HEAD
czN
gMQ
czN
+=======
+bcb
+gMQ
+bcb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oWk
clj
fwP
@@ -105975,7 +156152,11 @@ okX
tZX
ogb
uhW
+<<<<<<< HEAD
kIw
+=======
+eSC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
obG
jqd
jzT
@@ -106206,6 +156387,7 @@ lnc
obw
rUo
lqQ
+<<<<<<< HEAD
fik
iCJ
qgy
@@ -106213,6 +156395,15 @@ jPA
miq
miq
yaC
+=======
+fzr
+iCJ
+qgy
+ldg
+bYN
+bYN
+krt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qXB
psZ
qXB
@@ -106232,12 +156423,20 @@ gpf
ouk
jTM
wBT
+<<<<<<< HEAD
vab
+=======
+sxX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
obG
sEx
gIm
sbM
+<<<<<<< HEAD
lhu
+=======
+qKD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aNN
huG
rzk
@@ -106248,7 +156447,11 @@ bJp
wYB
foB
siz
+<<<<<<< HEAD
lnV
+=======
+pCL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unL
laf
aJn
@@ -106270,7 +156473,11 @@ gcV
nNe
dBb
aHM
+<<<<<<< HEAD
lRv
+=======
+xxQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oWk
ddu
fwP
@@ -106463,6 +156670,7 @@ lnc
fDC
qdy
lqQ
+<<<<<<< HEAD
jNX
jzC
tZV
@@ -106470,6 +156678,15 @@ kld
aOt
uHw
fpG
+=======
+wRF
+jzC
+oCO
+xUE
+jYu
+vmU
+xyI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qXB
kbo
qXB
@@ -106501,11 +156718,19 @@ obG
wPU
gKS
huG
+<<<<<<< HEAD
lfV
wYB
wjm
siz
qek
+=======
+olP
+wYB
+gAx
+siz
+hxz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unL
uNd
unL
@@ -106720,6 +156945,7 @@ lnc
cUP
mil
lqQ
+<<<<<<< HEAD
ozg
xPe
ehy
@@ -106727,6 +156953,15 @@ vZR
gif
dsa
sLJ
+=======
+lbH
+mie
+pRM
+ivb
+otG
+ftQ
+xwB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qXB
psZ
qXB
@@ -106750,10 +156985,17 @@ iEZ
uWK
gFO
rHz
+<<<<<<< HEAD
tjR
ejx
xSI
mvG
+=======
+aFW
+dqX
+qLp
+bpY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
obG
izZ
tNQ
@@ -106997,6 +157239,7 @@ vFB
fRS
sGH
obG
+<<<<<<< HEAD
eBp
vCu
suK
@@ -107004,6 +157247,15 @@ dLT
oqN
fEy
mFq
+=======
+aEA
+mZc
+iUe
+dLT
+qiY
+wAt
+utE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xXW
nst
lih
@@ -107017,6 +157269,7 @@ cCR
unL
aLu
unL
+<<<<<<< HEAD
piR
ltX
epk
@@ -107024,6 +157277,15 @@ vOK
pnx
unL
aqq
+=======
+xII
+ltX
+kbR
+vOK
+pnx
+unL
+kbN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gXd
szJ
heS
@@ -107041,7 +157303,11 @@ wZg
ojo
xfV
sBS
+<<<<<<< HEAD
oXv
+=======
+wCb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oWk
bLd
bLd
@@ -107264,7 +157530,11 @@ unL
unL
unL
unL
+<<<<<<< HEAD
csy
+=======
+cEx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vRU
iks
cwb
@@ -107280,7 +157550,11 @@ unL
unL
fGW
unL
+<<<<<<< HEAD
agf
+=======
+vtI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mma
iMQ
rAo
@@ -107298,7 +157572,11 @@ pOw
gqa
cln
sgB
+<<<<<<< HEAD
ltV
+=======
+pbb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gFQ
aaa
aaa
@@ -107490,7 +157768,11 @@ psZ
bSY
kbo
kbo
+<<<<<<< HEAD
rKX
+=======
+eqt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psZ
psZ
psZ
@@ -107502,10 +157784,17 @@ psZ
psZ
qXB
gAU
+<<<<<<< HEAD
dqR
oUK
eRR
tjV
+=======
+cDO
+oUK
+eRR
+fAA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cdX
sDE
hjS
@@ -107516,14 +157805,24 @@ ggM
ggM
dLq
lzL
+<<<<<<< HEAD
nGZ
+=======
+vag
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lzL
lzL
scG
unL
+<<<<<<< HEAD
tSy
vQA
fjm
+=======
+xAi
+vQA
+glP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
deX
rJk
ofe
@@ -107553,9 +157852,15 @@ tUn
gFQ
gFQ
gFQ
+<<<<<<< HEAD
seE
ejH
seE
+=======
+aHR
+ejH
+aHR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gFQ
aaa
aaa
@@ -107806,7 +158111,11 @@ lMJ
lMJ
lMJ
lMJ
+<<<<<<< HEAD
fGB
+=======
+uzl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -108015,7 +158324,11 @@ gLo
ofk
uXd
fDL
+<<<<<<< HEAD
hdx
+=======
+hSt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qhw
naN
fMN
@@ -108042,7 +158355,11 @@ gIS
xNG
gYV
lFo
+<<<<<<< HEAD
iiC
+=======
+dQy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pDR
unL
hLs
@@ -108053,7 +158370,11 @@ hum
jCx
cZF
uaG
+<<<<<<< HEAD
qcH
+=======
+vPu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pQy
ovX
xYQ
@@ -108259,7 +158580,11 @@ rpx
dPy
loA
poc
+<<<<<<< HEAD
dgy
+=======
+oDH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uXd
tfg
tfg
@@ -108312,7 +158637,11 @@ lWq
lWq
lWq
qIq
+<<<<<<< HEAD
sDB
+=======
+iCj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rDm
smg
crg
@@ -108516,12 +158845,20 @@ oKx
gLK
joo
sHT
+<<<<<<< HEAD
jvE
+=======
+rkx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uXd
dVc
bYp
gXu
+<<<<<<< HEAD
rnD
+=======
+hSi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uXd
gMG
dWG
@@ -108533,7 +158870,11 @@ nLz
fEL
rSi
pCt
+<<<<<<< HEAD
jkr
+=======
+qHm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sqE
mEO
gnS
@@ -108568,7 +158909,11 @@ dRj
lWq
lWq
lWq
+<<<<<<< HEAD
mUM
+=======
+tLg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pnH
jUi
pnH
@@ -108800,7 +159145,11 @@ mbJ
ncd
gYO
flE
+<<<<<<< HEAD
yer
+=======
+fcA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cVj
uKz
fnT
@@ -108826,7 +159175,11 @@ nmR
dQO
fIZ
ydj
+<<<<<<< HEAD
mit
+=======
+aBW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vQh
pnH
lZk
@@ -109044,7 +159397,11 @@ woL
jLo
nwC
nLz
+<<<<<<< HEAD
kyG
+=======
+iSU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hYE
rEd
sby
@@ -109292,7 +159649,11 @@ cnK
jPe
dPy
poc
+<<<<<<< HEAD
omp
+=======
+afM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cnK
giH
aJj
@@ -109302,11 +159663,19 @@ fbf
nie
qtm
fyJ
+<<<<<<< HEAD
hkF
cuc
adz
tUw
lUl
+=======
+oWm
+cuc
+adz
+tUw
+rHq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
peX
kRi
klw
@@ -109335,11 +159704,19 @@ sfz
wao
hum
rMT
+<<<<<<< HEAD
xtX
yec
xhb
uQk
vJo
+=======
+svK
+yec
+xhb
+uQk
+waf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vzc
gUY
pnH
@@ -109871,7 +160248,11 @@ aaa
aaa
aaa
aaa
+<<<<<<< HEAD
ewD
+=======
+oCX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wmL
kLC
wmL
@@ -110129,7 +160510,11 @@ lKu
aaa
aaa
wmL
+<<<<<<< HEAD
nRq
+=======
+apS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qkq
ooz
wmL
@@ -110354,7 +160739,11 @@ dkC
dwz
dwz
frE
+<<<<<<< HEAD
aQr
+=======
+cyE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uwQ
siy
lgL
@@ -110389,7 +160778,11 @@ wmL
cvO
uNO
hUd
+<<<<<<< HEAD
rpr
+=======
+uWk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aaa
aaa
aaa
@@ -111098,7 +161491,11 @@ qLw
tdf
mdk
kYG
+<<<<<<< HEAD
jGS
+=======
+dqE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oFH
oFH
sSz
@@ -111158,7 +161555,11 @@ oMA
eYu
agN
bXs
+<<<<<<< HEAD
kzw
+=======
+tLc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
juH
pJA
hLJ
@@ -111408,7 +161809,11 @@ lMJ
aaa
aaa
uaR
+<<<<<<< HEAD
sxt
+=======
+btC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wRL
tyj
myr
@@ -111612,10 +162017,17 @@ hko
uLp
qTX
kYG
+<<<<<<< HEAD
hts
iHy
vSC
gdy
+=======
+uJz
+iHy
+vSC
+eKw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vPV
qsv
aYk
@@ -111665,10 +162077,17 @@ dxK
aaa
aaa
oMA
+<<<<<<< HEAD
cpw
jjD
mYa
lme
+=======
+enG
+fpD
+qmi
+vOz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tsy
sRa
ppC
@@ -111881,8 +162300,13 @@ dRA
wCe
khu
hUu
+<<<<<<< HEAD
xVE
ops
+=======
+kxC
+oMh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mEG
nRp
dtY
@@ -111925,7 +162349,11 @@ uaR
jHX
oQk
toR
+<<<<<<< HEAD
nHl
+=======
+ePT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
syV
jsi
eoZ
@@ -112395,9 +162823,15 @@ wsI
fia
sRW
hKi
+<<<<<<< HEAD
efX
lLB
kDv
+=======
+apO
+lLB
+qRq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rzT
cWy
xRZ
@@ -112646,7 +163080,11 @@ gHI
svo
jXz
fJy
+<<<<<<< HEAD
ggG
+=======
+bJQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mRv
kyZ
bDq
@@ -112905,7 +163343,11 @@ fJy
fJy
fJy
pnJ
+<<<<<<< HEAD
uAo
+=======
+dKl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fJy
byR
iFh
@@ -113166,9 +163608,15 @@ rLZ
fJy
ygp
tyE
+<<<<<<< HEAD
xuu
bDq
bMW
+=======
+qNO
+bDq
+rRR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
laE
eQJ
uBp
@@ -113210,7 +163658,11 @@ kWc
xiL
bus
hMv
+<<<<<<< HEAD
lVT
+=======
+iTQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vGq
avx
vBf
@@ -113220,7 +163672,11 @@ qQJ
vGq
bjs
gyI
+<<<<<<< HEAD
rWp
+=======
+lPS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xiL
kvO
bPB
@@ -113435,7 +163891,11 @@ efd
nwK
fFC
uVf
+<<<<<<< HEAD
mHH
+=======
+qqs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gDq
ich
jnQ
@@ -114751,7 +165211,11 @@ oyj
xiL
mtu
lHh
+<<<<<<< HEAD
glW
+=======
+iNK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
faD
iWc
cXP
@@ -114761,7 +165225,11 @@ vvD
cXP
lVB
iWc
+<<<<<<< HEAD
wQS
+=======
+gkC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xlH
mtu
xiL
@@ -115521,19 +165989,31 @@ hbK
hbK
oyj
xiL
+<<<<<<< HEAD
eqo
+=======
+rMe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rwx
vFh
dac
evD
pJf
+<<<<<<< HEAD
eMC
+=======
+ycv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tIe
min
min
wFy
ohD
+<<<<<<< HEAD
rOZ
+=======
+bZb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xiL
lmn
hbK
@@ -115781,13 +166261,21 @@ xiL
hWa
imw
iHH
+<<<<<<< HEAD
aJw
+=======
+mcF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rrL
rSW
min
ckI
sCv
+<<<<<<< HEAD
nfC
+=======
+mDC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
toM
eOP
hWa
@@ -116810,7 +167298,11 @@ goW
msN
xiL
jlU
+<<<<<<< HEAD
uVj
+=======
+kGR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lyL
mao
mCu
@@ -117067,7 +167559,11 @@ rDf
uhs
fjd
jlU
+<<<<<<< HEAD
fHZ
+=======
+oGj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZN
msR
xkv
@@ -117581,11 +168077,19 @@ hbK
mgS
hbK
jlU
+<<<<<<< HEAD
jDN
jDN
wIE
jDN
jDN
+=======
+kcu
+kcu
+gyK
+kcu
+kcu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jlU
hbK
mTg
@@ -117838,11 +168342,19 @@ tmU
fGy
wyo
jlU
+<<<<<<< HEAD
orl
jDN
wIE
jDN
jDN
+=======
+dLm
+kcu
+gyK
+kcu
+kcu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jlU
qgn
mCV
@@ -118095,11 +168607,19 @@ pWT
rDf
uLa
jlU
+<<<<<<< HEAD
jDN
jDN
lLV
fpR
jDN
+=======
+kcu
+kcu
+jQz
+nJr
+kcu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jlU
lUS
pHt
@@ -118352,11 +168872,19 @@ hbK
wrc
wrc
jlU
+<<<<<<< HEAD
jDN
jDN
jDN
jDN
jDN
+=======
+kcu
+kcu
+kcu
+kcu
+kcu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jlU
wrc
wrc
@@ -118610,9 +169138,15 @@ aaa
lMJ
jlU
jlU
+<<<<<<< HEAD
jDN
aOV
jDN
+=======
+kcu
+aYl
+kcu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jlU
jlU
lMJ
@@ -122929,7 +173463,11 @@ aTV
aTV
bjP
tri
+<<<<<<< HEAD
aQw
+=======
+bny
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pfe
brY
giA
@@ -123442,7 +173980,11 @@ uUX
azv
dKG
bjQ
+<<<<<<< HEAD
vMI
+=======
+nhU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pQv
tSP
qiH
@@ -123692,7 +174234,11 @@ aVn
tIa
aWN
aTV
+<<<<<<< HEAD
tms
+=======
+qeQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aTV
aTV
aWN
@@ -124470,7 +175016,11 @@ iCV
mCL
pIE
bjQ
+<<<<<<< HEAD
fMa
+=======
+dqy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rNs
tSP
mZW
@@ -124733,7 +175283,11 @@ txh
bjQ
giA
hSe
+<<<<<<< HEAD
okp
+=======
+lBN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pDe
ueE
jGr
@@ -125244,7 +175798,11 @@ ldP
xgE
uFw
tXz
+<<<<<<< HEAD
wkA
+=======
+jGN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gfU
gfU
gfU
diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm
index e761aa5f42d..90a0c56273c 100644
--- a/_maps/map_files/Mining/Lavaland.dmm
+++ b/_maps/map_files/Mining/Lavaland.dmm
@@ -3894,6 +3894,16 @@
dir = 4
},
/area/mine/lounge)
+<<<<<<< HEAD
+=======
+"uT" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/components/unary/outlet_injector/layer2{
+ dir = 1
+ },
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/mine/maintenance/service)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uU" = (
/turf/closed/mineral/random/labormineral/volcanic,
/area/lavaland/surface/outdoors)
@@ -6737,6 +6747,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/smooth_edge,
/area/mine/laborcamp)
+<<<<<<< HEAD
"LZ" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/components/unary/outlet_injector/layer2{
@@ -6744,6 +6755,8 @@
},
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/mine/maintenance/service)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ma" = (
/obj/structure/stone_tile/block/cracked,
/obj/structure/stone_tile{
@@ -41493,7 +41506,11 @@ pU
pU
pU
uj
+<<<<<<< HEAD
LZ
+=======
+uT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pU
pU
pU
diff --git a/_maps/map_files/NorthStar/north_star.dmm b/_maps/map_files/NorthStar/north_star.dmm
index b949209410e..0e1f8b4ea9a 100644
--- a/_maps/map_files/NorthStar/north_star.dmm
+++ b/_maps/map_files/NorthStar/north_star.dmm
@@ -833,6 +833,20 @@
/obj/structure/disposalpipe/trunk,
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"akr" = (
+/obj/machinery/button/door/directional/south{
+ id = "captain_privacy";
+ name = "Privacy Shutters"
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/hand_tele,
+/turf/open/floor/wood/tile,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"akt" = (
/obj/effect/turf_decal/tile/red/diagonal_edge,
/obj/structure/closet/secure_closet/brig{
@@ -1553,6 +1567,29 @@
/obj/structure/extinguisher_cabinet/directional/east,
/turf/open/floor/wood/large,
/area/station/service/library/artgallery)
+<<<<<<< HEAD
+=======
+"atP" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance-aft"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig Aft Entrance"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"atT" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/structure/flora/bush/flowers_br/style_random,
@@ -7931,6 +7968,7 @@
dir = 1
},
/area/station/hallway/floor2/aft)
+<<<<<<< HEAD
"bYk" = (
/obj/structure/closet/secure_closet/hos,
/obj/machinery/button/door/directional/west{
@@ -7943,6 +7981,8 @@
},
/turf/open/floor/wood,
/area/station/command/heads_quarters/hos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bYp" = (
/obj/structure/rack,
/obj/effect/spawner/random/engineering/material,
@@ -10202,6 +10242,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark/side,
/area/station/hallway/floor1/fore)
+<<<<<<< HEAD
"cBl" = (
/obj/machinery/door/airlock/security/glass{
name = "Brig Fore Entrance"
@@ -10214,6 +10255,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cBq" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
@@ -10998,6 +11041,7 @@
/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/iron/white,
/area/station/science/cytology)
+<<<<<<< HEAD
"cLJ" = (
/obj/machinery/keycard_auth/wall_mounted/directional/north{
pixel_x = 9
@@ -11011,6 +11055,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cLQ" = (
/obj/machinery/door/airlock{
name = "Locker Room"
@@ -13524,6 +13570,14 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/aft)
+<<<<<<< HEAD
+=======
+"dvB" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/smartfridge/drying,
+/turf/open/floor/iron/kitchen,
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dvC" = (
/obj/machinery/door/airlock/public/glass{
name = "Garden"
@@ -14993,6 +15047,21 @@
"dPH" = (
/turf/closed/wall/r_wall,
/area/station/security/brig)
+<<<<<<< HEAD
+=======
+"dPS" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Fore Entrance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dPT" = (
/obj/machinery/light/small/red/directional/east,
/obj/effect/spawner/random/trash/mess,
@@ -20398,6 +20467,7 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/hallway/floor2/fore)
+<<<<<<< HEAD
"foi" = (
/obj/structure/chair/wood{
dir = 4
@@ -20405,6 +20475,8 @@
/obj/machinery/keycard_auth/wall_mounted/directional/north,
/turf/open/floor/carpet,
/area/station/command/heads_quarters/captain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fok" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 1
@@ -20904,6 +20976,27 @@
name = "boxing ring"
},
/area/station/commons/fitness)
+<<<<<<< HEAD
+=======
+"fvA" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig-entrance-aft"
+ },
+/obj/machinery/door/airlock/security/glass{
+ id_tag = "outerbrig";
+ name = "Brig Aft Entrance"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "Brig Lockdown"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fvD" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -24843,12 +24936,15 @@
dir = 1
},
/area/station/hallway/floor4/fore)
+<<<<<<< HEAD
"gxo" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
dir = 4
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance/testlab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gxr" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -26899,6 +26995,21 @@
dir = 4
},
/area/station/cargo/miningdock)
+<<<<<<< HEAD
+=======
+"hai" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/structure/rack,
+/obj/item/stack/sheet/iron/ten,
+/obj/item/circuitboard/machine/exoscanner,
+/obj/item/circuitboard/machine/exoscanner,
+/obj/item/circuitboard/machine/exoscanner,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron/corner,
+/area/station/cargo/drone_bay)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"haj" = (
/obj/effect/landmark/start/psychologist,
/turf/open/floor/iron/white/small{
@@ -29606,6 +29717,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/light,
/area/station/maintenance/floor4/starboard/aft)
+<<<<<<< HEAD
+=======
+"hJJ" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/obj/item/kirbyplants/random,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hJK" = (
/obj/structure/chair{
dir = 8
@@ -29795,6 +29920,7 @@
dir = 1
},
/area/station/hallway/floor4/fore)
+<<<<<<< HEAD
"hLN" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
cycle_id = "brig-entrance-aft"
@@ -29813,6 +29939,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron/dark,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hLP" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -30227,6 +30355,21 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
+=======
+"hSD" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/machinery/button/door/directional/west{
+ id = "hosprivacy";
+ name = "Privacy Shutters Control";
+ pixel_y = 6
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/west{
+ pixel_y = -8
+ },
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hSH" = (
/obj/machinery/door/airlock{
id_tag = "CabinS";
@@ -30649,6 +30792,7 @@
/obj/effect/mapping_helpers/airlock/access/any/engineering/maintenance,
/turf/open/floor/pod/light,
/area/station/maintenance/floor1/port/aft)
+<<<<<<< HEAD
"hXH" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater/layer2{
dir = 1
@@ -30656,6 +30800,8 @@
/obj/machinery/light/directional/south,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hXI" = (
/obj/structure/chair/wood{
dir = 1
@@ -30899,6 +31045,20 @@
/obj/machinery/light/cold/no_nightlight/directional/north,
/turf/open/floor/iron,
/area/station/hallway/floor2/aft)
+<<<<<<< HEAD
+=======
+"ibK" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ name = "port bay 2";
+ shuttle_id = "ferry_home";
+ width = 5
+ },
+/turf/open/space/openspace,
+/area/space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ibL" = (
/obj/structure/cable,
/obj/machinery/power/smes/engineering,
@@ -34407,6 +34567,10 @@
dir = 8
},
/obj/item/radio/intercom/directional/north,
+<<<<<<< HEAD
+=======
+/obj/structure/detectiveboard/directional/east,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/carpet,
/area/station/security/detectives_office)
"iWW" = (
@@ -35048,6 +35212,7 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningdock)
+<<<<<<< HEAD
"jfr" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
cycle_id = "brig-entrance-aft"
@@ -35068,6 +35233,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron/dark,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jfs" = (
/obj/docking_port/stationary/laborcamp_home/kilo{
dir = 2
@@ -37825,6 +37992,7 @@
},
/turf/open/floor/catwalk_floor,
/area/station/maintenance/floor3/port)
+<<<<<<< HEAD
"jQN" = (
/obj/machinery/keycard_auth/wall_mounted/directional/north{
pixel_x = -22
@@ -37833,6 +38001,8 @@
/obj/machinery/incident_display/bridge/directional/north,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jQS" = (
/obj/structure/cable,
/obj/effect/turf_decal/trimline/yellow,
@@ -38758,6 +38928,23 @@
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/iron/dark,
/area/station/hallway/floor2/fore)
+<<<<<<< HEAD
+=======
+"kcT" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/structure/sign/departments/exodrone/directional/west,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kcZ" = (
/obj/effect/turf_decal/delivery,
/obj/structure/table/reinforced,
@@ -39005,6 +39192,16 @@
dir = 1
},
/area/station/hallway/floor1/aft)
+<<<<<<< HEAD
+=======
+"kfg" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater/layer2{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kfm" = (
/obj/effect/turf_decal/trimline/purple,
/obj/machinery/airalarm/directional/south,
@@ -39390,10 +39587,13 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron/smooth_large,
/area/station/medical/psychology)
+<<<<<<< HEAD
"kkT" = (
/obj/effect/spawner/random/structure/twelve_percent_spirit_board,
/turf/open/floor/iron/white/textured_large,
/area/station/service/chapel/office)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"klc" = (
/obj/structure/railing{
dir = 4
@@ -42262,6 +42462,17 @@
},
/turf/open/floor/carpet,
/area/station/command/heads_quarters/captain)
+<<<<<<< HEAD
+=======
+"kWD" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/north{
+ pixel_x = -22
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/incident_display/bridge/directional/north,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kWJ" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -45051,6 +45262,29 @@
/obj/structure/cable,
/turf/open/floor/catwalk_floor,
/area/station/maintenance/floor1/starboard/fore)
+<<<<<<< HEAD
+=======
+"lIh" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners{
+ dir = 8
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east{
+ pixel_x = 25;
+ pixel_y = 16
+ },
+/obj/machinery/camera/directional/east{
+ c_tag = "Command - Research Director's Office"
+ },
+/obj/machinery/requests_console/directional/east{
+ department = "Research Director's Desk";
+ name = "Research Director's Requests Console"
+ },
+/obj/effect/mapping_helpers/requests_console/announcement,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/rd)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lIm" = (
/obj/structure/cable,
/obj/effect/turf_decal/trimline/white/corner,
@@ -46495,6 +46729,7 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/maintenance/floor1/port/aft)
+<<<<<<< HEAD
"lZz" = (
/obj/machinery/computer/security/qm{
dir = 8
@@ -46502,6 +46737,8 @@
/obj/machinery/keycard_auth/wall_mounted/directional/north,
/turf/open/floor/wood/large,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lZA" = (
/obj/structure/table/reinforced/plastitaniumglass,
/obj/item/experi_scanner,
@@ -50923,6 +51160,7 @@
/obj/machinery/newscaster/directional/north,
/turf/open/floor/iron,
/area/station/engineering/atmos/pumproom)
+<<<<<<< HEAD
"nfi" = (
/obj/machinery/camera/directional/north{
c_tag = "Medbay - Treatment Center";
@@ -50933,6 +51171,8 @@
/obj/structure/fluff/shower_drain,
/turf/open/floor/catwalk_floor/iron_white,
/area/station/medical/treatment_center)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nfm" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -51110,6 +51350,7 @@
/obj/structure/dresser,
/turf/open/floor/wood/tile,
/area/station/service/chapel/office)
+<<<<<<< HEAD
"ngU" = (
/obj/machinery/button/door/directional/south{
id = "captain_privacy";
@@ -51121,6 +51362,8 @@
/obj/item/hand_tele,
/turf/open/floor/wood/tile,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ngX" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/machinery/button/door/directional/south{
@@ -52421,6 +52664,10 @@
},
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/west,
+<<<<<<< HEAD
+=======
+/obj/machinery/vending/cytopro,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/science/cytology)
"nxm" = (
@@ -53368,6 +53615,15 @@
dir = 4
},
/area/station/hallway/floor3/aft)
+<<<<<<< HEAD
+=======
+"nJb" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nJk" = (
/obj/effect/turf_decal/trimline/purple/line{
dir = 1
@@ -53924,6 +54180,24 @@
/obj/machinery/light/floor,
/turf/open/floor/iron/dark,
/area/station/hallway/floor4/aft)
+<<<<<<< HEAD
+=======
+"nQY" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig Fore Entrance"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/obj/effect/mapping_helpers/airlock/access/all/security/general,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron/dark,
+/area/station/security/checkpoint)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nQZ" = (
/obj/effect/turf_decal/trimline/yellow/corner,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -55300,6 +55574,7 @@
},
/turf/open/floor/iron/dark,
/area/station/service/library/lounge)
+<<<<<<< HEAD
"ojB" = (
/obj/machinery/door/airlock/security/glass{
name = "Brig Fore Entrance"
@@ -55315,6 +55590,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ojM" = (
/obj/structure/chair/comfy{
dir = 4
@@ -57476,6 +57753,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/pod/light,
/area/station/maintenance/floor2/port/aft)
+<<<<<<< HEAD
"oNi" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer4{
dir = 1
@@ -57483,6 +57761,8 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/pumproom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oNn" = (
/obj/structure/bed/double,
/obj/item/bedsheet/cosmos/double,
@@ -60708,6 +60988,7 @@
/obj/structure/closet/crate/trashcart,
/turf/open/floor/pod/light,
/area/station/maintenance/floor3/starboard/aft)
+<<<<<<< HEAD
"pFM" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -60719,6 +61000,8 @@
/obj/item/kirbyplants/random,
/turf/open/floor/wood/large,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pFT" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/machinery/quantumpad,
@@ -62326,6 +62609,7 @@
dir = 1
},
/area/station/science/auxlab)
+<<<<<<< HEAD
"qaX" = (
/obj/docking_port/stationary{
dir = 8;
@@ -62337,6 +62621,8 @@
},
/turf/open/space/openspace,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qaY" = (
/obj/effect/spawner/random/engineering/tracking_beacon,
/obj/structure/cable,
@@ -63329,6 +63615,16 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/textured_large,
/area/station/engineering/lobby)
+<<<<<<< HEAD
+=======
+"qoI" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/captain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qoJ" = (
/obj/machinery/telecomms/processor/preset_two,
/turf/open/floor/circuit/telecomms,
@@ -64972,6 +65268,27 @@
"qHW" = (
/turf/closed/wall/r_wall,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
+=======
+"qIf" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_x = 6
+ },
+/obj/effect/landmark/start/chief_engineer,
+/obj/machinery/button/door/directional/south{
+ id = "ceprivacy";
+ name = "Privacy Shutters Control";
+ pixel_x = -6
+ },
+/turf/open/floor/iron/dark/textured,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qIv" = (
/obj/effect/turf_decal/trimline/purple/warning,
/turf/open/floor/pod/dark,
@@ -65163,11 +65480,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible/layer4,
/turf/open/floor/plating,
/area/station/hallway/floor1/aft)
+<<<<<<< HEAD
"qMO" = (
/obj/machinery/light/directional/east,
/obj/machinery/smartfridge/drying,
/turf/open/floor/iron/kitchen,
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qMV" = (
/obj/machinery/atmospherics/components/unary/portables_connector,
/obj/effect/turf_decal/bot,
@@ -66644,6 +66964,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/hallway/floor4/aft)
+<<<<<<< HEAD
"rez" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -66664,6 +66985,8 @@
dir = 1
},
/area/station/cargo/drone_bay)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"reD" = (
/obj/effect/spawner/random/structure/chair_maintenance{
dir = 8
@@ -67453,6 +67776,7 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
+<<<<<<< HEAD
"rqd" = (
/obj/structure/railing{
dir = 4
@@ -67467,6 +67791,8 @@
/obj/structure/sign/departments/exodrone/directional/west,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rqf" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 10
@@ -69933,6 +70259,29 @@
/obj/machinery/newscaster/directional/east,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+<<<<<<< HEAD
+=======
+"sbB" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/machinery/camera/autoname/directional/south,
+/obj/item/fuel_pellet{
+ pixel_x = -4;
+ pixel_y = -2
+ },
+/obj/item/fuel_pellet,
+/obj/item/fuel_pellet{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/structure/rack,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/corner{
+ dir = 1
+ },
+/area/station/cargo/drone_bay)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sbI" = (
/obj/structure/flora/bush/snow/style_random,
/turf/open/misc/snow/actually_safe{
@@ -71010,12 +71359,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/textured_large,
/area/station/cargo/storage)
+<<<<<<< HEAD
"ssc" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater/layer2{
dir = 1
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ssi" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -75272,6 +75624,16 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/command/gateway)
+<<<<<<< HEAD
+=======
+"tud" = (
+/obj/machinery/computer/security/qm{
+ dir = 8
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/turf/open/floor/wood/large,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tun" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -78120,6 +78482,16 @@
},
/turf/open/floor/iron/checker,
/area/station/commons/vacant_room/commissary)
+<<<<<<< HEAD
+=======
+"uhC" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/pumproom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uhF" = (
/obj/machinery/light/small/directional/north,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
@@ -78256,6 +78628,16 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/medical/surgery/fore)
+<<<<<<< HEAD
+=======
+"ujl" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer4{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/engineering/atmos/pumproom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ujr" = (
/obj/effect/turf_decal/trimline/green/warning{
dir = 8
@@ -78575,6 +78957,15 @@
/obj/machinery/light/floor,
/turf/open/floor/iron/dark,
/area/station/science/breakroom)
+<<<<<<< HEAD
+=======
+"unQ" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance/testlab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"unV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/obj/effect/turf_decal/siding/wideplating,
@@ -79042,6 +79433,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/floor4/starboard/aft)
+<<<<<<< HEAD
"uvN" = (
/obj/structure/chair/office{
dir = 1
@@ -79060,6 +79452,8 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uvQ" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/firedoor/heavy,
@@ -79687,6 +80081,7 @@
},
/turf/open/floor/engine/airless,
/area/station/engineering/supermatter/waste)
+<<<<<<< HEAD
"uEv" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -79699,6 +80094,8 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron/corner,
/area/station/cargo/drone_bay)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uED" = (
/obj/effect/turf_decal/tile/yellow/half,
/obj/machinery/light/small/directional/east,
@@ -85488,6 +85885,7 @@
/obj/effect/mapping_helpers/airlock/unres,
/turf/open/floor/plating,
/area/station/maintenance/floor4/port/fore)
+<<<<<<< HEAD
"vZY" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
dir = 1
@@ -85495,6 +85893,8 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/dark,
/area/station/engineering/atmos/pumproom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wat" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{
dir = 8
@@ -87563,6 +87963,13 @@
},
/turf/open/floor/iron/dark,
/area/station/security/holding_cell)
+<<<<<<< HEAD
+=======
+"wzt" = (
+/obj/effect/spawner/random/structure/twelve_percent_spirit_board,
+/turf/open/floor/iron/white/textured_large,
+/area/station/service/chapel/office)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wzB" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/red/dim/directional/south,
@@ -90800,6 +91207,19 @@
/obj/machinery/duct,
/turf/open/floor/iron/dark,
/area/station/security/lockers)
+<<<<<<< HEAD
+=======
+"xqZ" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Medbay - Treatment Center";
+ name = "medbay camera";
+ network = list("ss13","medbay")
+ },
+/obj/machinery/shower/directional/south,
+/obj/structure/fluff/shower_drain,
+/turf/open/floor/catwalk_floor/iron_white,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xrh" = (
/obj/effect/turf_decal/tile/blue{
dir = 4
@@ -91563,6 +91983,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood,
/area/station/commons/dorms/apartment1)
+<<<<<<< HEAD
"xBq" = (
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 8
@@ -91583,6 +92004,8 @@
/obj/effect/mapping_helpers/requests_console/assistance,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xBt" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/effect/turf_decal/trimline/neutral/warning{
@@ -91873,6 +92296,22 @@
/obj/effect/turf_decal/siding/thinplating_new/corner,
/turf/open/floor/iron/smooth,
/area/station/cargo/sorting)
+<<<<<<< HEAD
+=======
+"xEv" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/north{
+ pixel_x = 9
+ },
+/obj/machinery/button/door/directional/north{
+ name = "CMO Privacy Shutters";
+ id = "cmoshutter";
+ req_access = list("cmo");
+ pixel_y = 25;
+ pixel_x = -5
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xEw" = (
/obj/machinery/computer/camera_advanced/base_construction/aux{
dir = 4
@@ -118564,7 +119003,11 @@ lyB
yef
wZu
vTt
+<<<<<<< HEAD
uEv
+=======
+hai
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aQK
uhw
rhs
@@ -118821,7 +119264,11 @@ gHw
hDa
fyg
xxQ
+<<<<<<< HEAD
rez
+=======
+sbB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aQK
jUP
prt
@@ -119335,7 +119782,11 @@ oKT
xsL
vDw
dty
+<<<<<<< HEAD
rqd
+=======
+kcT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eOz
eOz
onX
@@ -124217,7 +124668,11 @@ lWH
aaI
fFI
lWH
+<<<<<<< HEAD
lZz
+=======
+tud
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kHP
skM
jdT
@@ -137101,7 +137556,11 @@ wSm
kSF
cpE
lTo
+<<<<<<< HEAD
uvN
+=======
+qIf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xGI
kzE
kzE
@@ -138104,7 +138563,11 @@ kIe
fxo
uvD
ocv
+<<<<<<< HEAD
hXH
+=======
+kfg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rBP
iTu
iko
@@ -138361,7 +138824,11 @@ blI
gkx
xeO
vsL
+<<<<<<< HEAD
ssc
+=======
+nJb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rBP
fxd
haK
@@ -142736,7 +143203,11 @@ vxz
csf
buQ
nPZ
+<<<<<<< HEAD
vZY
+=======
+uhC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oIy
tyQ
iPN
@@ -142993,7 +143464,11 @@ eNk
qNf
jaK
aLh
+<<<<<<< HEAD
oNi
+=======
+ujl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oIy
yli
jCD
@@ -188731,7 +189206,11 @@ rhC
hge
oiO
afz
+<<<<<<< HEAD
xBq
+=======
+lIh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mis
txR
dDk
@@ -191588,7 +192067,11 @@ tam
oKR
xKq
nCG
+<<<<<<< HEAD
cLJ
+=======
+xEv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rBt
aDp
xug
@@ -197493,7 +197976,11 @@ voB
pZZ
gBz
sRR
+<<<<<<< HEAD
nfi
+=======
+xqZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jTK
dzM
dzM
@@ -241432,10 +241919,17 @@ ucA
ucA
ucA
ucA
+<<<<<<< HEAD
xIV
xIV
xIV
xIV
+=======
+ucA
+ucA
+ucA
+ucA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ucA
ucA
ucA
@@ -241689,10 +242183,17 @@ ucA
ucA
ucA
ucA
+<<<<<<< HEAD
xIV
xIV
qaX
xIV
+=======
+ucA
+ucA
+ibK
+ucA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ucA
ucA
ucA
@@ -241946,7 +242447,11 @@ ucA
ucA
ucA
ucA
+<<<<<<< HEAD
xIV
+=======
+ucA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
atB
tgX
rIc
@@ -251987,7 +252492,11 @@ vhd
fAz
gyr
gyr
+<<<<<<< HEAD
qMO
+=======
+dvB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sFt
sxt
sal
@@ -309278,7 +309787,11 @@ xJp
uxw
xjX
aNs
+<<<<<<< HEAD
jQN
+=======
+kWD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sZO
rlJ
nKL
@@ -311586,7 +312099,11 @@ aNs
aNs
rNN
vLW
+<<<<<<< HEAD
foi
+=======
+qoI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rbK
wnO
keg
@@ -313647,7 +314164,11 @@ dOa
qLW
nEa
gaB
+<<<<<<< HEAD
ngU
+=======
+akr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oKq
cWf
vlD
@@ -315685,7 +316206,11 @@ crp
crp
dWz
lYx
+<<<<<<< HEAD
gxo
+=======
+unQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wMU
aaN
pGz
@@ -317010,7 +317535,11 @@ xqY
mau
mau
mau
+<<<<<<< HEAD
bYk
+=======
+hSD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
raE
pke
fmG
@@ -318023,7 +318552,11 @@ gYS
gir
tnj
tEv
+<<<<<<< HEAD
cBl
+=======
+dPS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xFp
dGF
kHR
@@ -318280,7 +318813,11 @@ aBV
kyj
dfm
xnY
+<<<<<<< HEAD
ojB
+=======
+nQY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xyw
xyw
tnR
@@ -319816,7 +320353,11 @@ ipn
oJR
gjq
gYO
+<<<<<<< HEAD
pFM
+=======
+hJJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
liQ
liQ
xUQ
@@ -322392,7 +322933,11 @@ txa
mlH
vOE
nYZ
+<<<<<<< HEAD
jfr
+=======
+atP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hxz
vES
uyX
@@ -322906,7 +323451,11 @@ cmM
bVy
tnV
daD
+<<<<<<< HEAD
hLN
+=======
+fvA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kkK
fDA
emk
@@ -327766,7 +328315,11 @@ kTV
wlX
sxo
vyW
+<<<<<<< HEAD
kkT
+=======
+wzt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mcD
rNo
tKY
diff --git a/_maps/map_files/debug/runtimestation.dmm b/_maps/map_files/debug/runtimestation.dmm
index 2c544716475..91a0dbac44f 100644
--- a/_maps/map_files/debug/runtimestation.dmm
+++ b/_maps/map_files/debug/runtimestation.dmm
@@ -9,11 +9,23 @@
"ac" = (
/turf/open/space,
/area/space/nearstation)
+"ad" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/transit_tube/horizontal,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"ae" = (
/obj/structure/lattice,
/obj/structure/grille,
/turf/open/space,
/area/space/nearstation)
+"af" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/transit_tube/crossing/horizontal,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"ag" = (
/turf/closed/wall/r_wall,
/area/station/security/brig)
@@ -55,17 +67,6 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/main)
-"ar" = (
-/obj/machinery/power/apc/auto_name/directional/east,
-/obj/structure/cable,
-/turf/open/floor/iron,
-/area/station/hallway/secondary/entry)
-"at" = (
-/obj/structure/table,
-/obj/item/storage/box/prisoner,
-/obj/item/paper/guides/jobs/security/labor_camp,
-/turf/open/floor/iron,
-/area/station/security/brig)
"av" = (
/turf/open/floor/iron/dark,
/area/station/engineering/gravity_generator)
@@ -92,13 +93,6 @@
"aD" = (
/turf/open/floor/iron,
/area/station/security/brig)
-"aG" = (
-/obj/machinery/gulag_item_reclaimer{
- dir = 8;
- pixel_x = 32
- },
-/turf/open/floor/iron,
-/area/station/security/brig)
"aH" = (
/obj/machinery/light/directional/east,
/obj/machinery/recharge_station,
@@ -108,6 +102,15 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/engineering/gravity_generator)
+"aK" = (
+/obj/structure/table,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/rcd_ammo/large,
+/obj/item/construction/rcd/combat,
+/obj/item/construction/plumbing,
+/turf/open/floor/iron,
+/area/station/command/bridge)
"aN" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
@@ -122,6 +125,18 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+"aS" = (
+/obj/structure/table,
+/obj/item/flashlight{
+ pixel_y = 5
+ },
+/obj/item/storage/toolbox/syndicate,
+/obj/item/stock_parts/power_store/cell/infinite,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+"aX" = (
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"aY" = (
/obj/machinery/light/directional/east,
/turf/open/floor/iron/dark,
@@ -140,6 +155,15 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+"bd" = (
+/obj/structure/table,
+/obj/item/weldingtool/experimental,
+/obj/item/inducer,
+/obj/item/storage/belt/utility/chief/full,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/main)
"bf" = (
/obj/machinery/suit_storage_unit/captain,
/turf/open/floor/iron,
@@ -164,6 +188,12 @@
},
/turf/open/floor/plating,
/area/station/engineering/atmos)
+"bo" = (
+/obj/structure/table,
+/obj/item/screwdriver/power,
+/obj/item/crowbar/power,
+/turf/open/floor/iron,
+/area/station/engineering/main)
"bp" = (
/obj/machinery/light/directional/south,
/obj/structure/tank_dispenser,
@@ -219,9 +249,48 @@
"bE" = (
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+"bF" = (
+/obj/machinery/computer/rdconsole,
+/turf/open/floor/iron,
+/area/station/science)
+"bI" = (
+/obj/structure/table,
+/obj/item/card/emag,
+/obj/item/flashlight/emp/debug,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bJ" = (
+/obj/structure/table,
+/obj/item/card/id/advanced/centcom/ert{
+ pixel_x = 6;
+ pixel_y = -6
+ },
+/obj/item/card/id/advanced/chameleon,
+/obj/item/card/id/advanced/gold/captains_spare{
+ pixel_x = -6;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+"bK" = (
+/obj/structure/table,
+/obj/item/storage/backpack/holding,
+/obj/item/storage/part_replacer/bluespace/tier4,
+/turf/open/floor/iron,
+/area/station/command/bridge)
"bL" = (
/turf/closed/wall/r_wall,
/area/station/maintenance/aft)
+"bM" = (
+/obj/machinery/camera/directional/north,
+/obj/structure/table,
+/obj/item/construction/rld,
+/obj/item/construction/rcd/arcd,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
"bO" = (
/obj/machinery/door/poddoor,
/turf/open/floor/engine,
@@ -241,6 +310,17 @@
/obj/machinery/chem_dispenser/fullupgrade,
/turf/open/floor/iron/dark,
/area/station/medical/chemistry)
+"bT" = (
+/obj/machinery/gulag_item_reclaimer{
+ dir = 8;
+ pixel_x = 32
+ },
+/turf/open/floor/iron,
+/area/station/security/brig)
+"bY" = (
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"bZ" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -272,13 +352,6 @@
},
/turf/open/floor/iron,
/area/station/command/bridge)
-"ci" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=4-Southeast";
- location = "3-Northeast"
- },
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"cj" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -326,10 +399,6 @@
/obj/machinery/light/directional/west,
/turf/open/floor/iron,
/area/station/medical/chemistry)
-"cy" = (
-/obj/machinery/door/airlock,
-/turf/open/floor/iron,
-/area/station/construction)
"cI" = (
/obj/machinery/power/apc/auto_name/directional/east,
/obj/structure/cable,
@@ -354,12 +423,6 @@
/obj/machinery/door/airlock/public/glass,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
-"cX" = (
-/obj/machinery/door/airlock/external/glass/ruin,
-/obj/effect/turf_decal/stripes/full,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
-/turf/open/floor/iron,
-/area/station/cargo/storage)
"cY" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/iron,
@@ -373,6 +436,13 @@
"db" = (
/turf/closed/wall/mineral/plastitanium,
/area/station/hallway/secondary/entry)
+"dc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"de" = (
/obj/machinery/gulag_teleporter,
/turf/open/floor/iron,
@@ -416,12 +486,11 @@
/turf/open/floor/plating,
/area/station/commons/storage/primary)
"dq" = (
-/obj/machinery/light/directional/north,
-/obj/machinery/rnd/production/circuit_imprinter/department,
-/obj/machinery/power/apc/auto_name/directional/north,
-/obj/structure/cable,
+/obj/effect/turf_decal/plaque{
+ icon_state = "L2"
+ },
/turf/open/floor/iron,
-/area/station/science)
+/area/station/commons/storage/primary)
"dr" = (
/obj/effect/turf_decal/plaque{
icon_state = "L4"
@@ -524,12 +593,25 @@
},
/turf/open/floor/iron,
/area/station/construction)
+"dN" = (
+/obj/machinery/navbeacon{
+ location = "1-Southwest";
+ codes_txt = "patrol;next_patrol=2-Northwest"
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"dP" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
+"dQ" = (
+/obj/structure/table,
+/obj/machinery/light/directional/south,
+/obj/item/debug/human_spawner,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"dR" = (
/obj/machinery/light/directional/west,
/turf/open/floor/iron,
@@ -546,6 +628,11 @@
"dV" = (
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
+"dW" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera/directional/north,
+/turf/open/floor/iron,
+/area/station/construction)
"dX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -564,6 +651,12 @@
/obj/machinery/camera/autoname/directional/south,
/turf/open/floor/iron,
/area/station/construction)
+"ea" = (
+/obj/structure/table,
+/obj/machinery/camera/autoname/directional/south,
+/obj/item/gun/magic/wand/resurrection/debug,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"ec" = (
/obj/docking_port/stationary{
dir = 8;
@@ -576,6 +669,14 @@
},
/turf/open/floor/engine,
/area/station/hallway/secondary/entry)
+"ed" = (
+/obj/structure/sign/warning/pods,
+/turf/closed/wall/r_wall,
+/area/station/hallway/secondary/entry)
+"ef" = (
+/obj/machinery/door/airlock,
+/turf/open/floor/iron,
+/area/station/construction)
"eh" = (
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
@@ -645,6 +746,14 @@
/obj/effect/turf_decal/stripes/full,
/turf/open/floor/iron,
/area/station/engineering/main)
+"eC" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "cargounload"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
"eE" = (
/obj/docking_port/stationary{
dir = 8;
@@ -656,6 +765,11 @@
},
/turf/open/space/basic,
/area/space)
+"eF" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/entry)
"eJ" = (
/obj/docking_port/stationary{
dir = 4;
@@ -703,6 +817,17 @@
},
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+"eY" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "cargounload"
+ },
+/obj/machinery/door/poddoor{
+ id = "cargounload";
+ name = "Supply Dock Unloading Door"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
"fb" = (
/obj/machinery/door/airlock/external/ruin{
name = "Departure Lounge Airlock"
@@ -711,6 +836,17 @@
/obj/structure/fans/tiny,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+"fc" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargoload"
+ },
+/obj/machinery/door/poddoor{
+ id = "cargoload";
+ name = "Supply Dock Loading Door"
+ },
+/turf/open/floor/plating,
+/area/station/cargo/storage)
"ff" = (
/obj/docking_port/stationary{
dir = 2;
@@ -733,6 +869,18 @@
/obj/docking_port/stationary/escape_pod,
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
+"fj" = (
+/obj/structure/sign/warning/docking,
+/turf/closed/wall/r_wall,
+/area/station/hallway/secondary/entry)
+"fl" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "cargoload"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/station/cargo/storage)
"fm" = (
/obj/machinery/conveyor{
dir = 1;
@@ -740,6 +888,11 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+"fn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/sign/warning/vacuum/external,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/entry)
"fo" = (
/obj/machinery/conveyor_switch/oneway{
id = "cargoload"
@@ -775,6 +928,10 @@
/obj/structure/fans/tiny,
/turf/open/floor/plating,
/area/station/hallway/secondary/entry)
+"fB" = (
+/obj/machinery/status_display/supply,
+/turf/closed/wall/r_wall,
+/area/station/cargo/storage)
"fI" = (
/obj/machinery/door/airlock,
/turf/open/floor/plating,
@@ -810,6 +967,13 @@
/obj/machinery/keycard_auth/wall_mounted/directional/north,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+"fQ" = (
+/obj/machinery/computer/communications,
+/obj/machinery/status_display/evac{
+ pixel_y = 32
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
"fS" = (
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable,
@@ -870,15 +1034,20 @@
},
/turf/open/floor/plating,
/area/station/commons/storage/primary)
+"gi" = (
+/obj/structure/table,
+/obj/item/storage/toolbox/syndicate,
+/obj/item/debug/omnitool,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+"gk" = (
+/obj/structure/sign/departments/evac,
+/turf/closed/wall/r_wall,
+/area/station/hallway/secondary/exit/departure_lounge)
"gn" = (
/obj/machinery/camera/directional/north,
/turf/open/floor/iron,
/area/station/security/brig)
-"gt" = (
-/obj/machinery/power/apc/auto_name/directional/south,
-/obj/structure/cable,
-/turf/open/floor/iron,
-/area/station/engineering/atmos)
"gv" = (
/obj/machinery/light/directional/south,
/turf/open/floor/iron,
@@ -890,6 +1059,12 @@
/obj/machinery/light/directional/east,
/turf/open/floor/iron,
/area/station/construction)
+"gz" = (
+/obj/structure/table,
+/obj/item/card/id/advanced/gold/captains_spare,
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/secondary/exit/departure_lounge)
"gE" = (
/obj/machinery/camera/directional/north,
/turf/open/floor/iron,
@@ -914,12 +1089,16 @@
/obj/machinery/camera/directional/north,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
-"gP" = (
+"gJ" = (
/obj/structure/table,
-/obj/item/ammo_box/c10mm,
-/obj/item/gun/ballistic/automatic/pistol,
+/obj/item/storage/box/prisoner,
+/obj/item/paper/guides/jobs/security/labor_camp,
/turf/open/floor/iron,
-/area/station/command/bridge)
+/area/station/security/brig)
+"gW" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/closed/wall/r_wall,
+/area/station/engineering/gravity_generator)
"hm" = (
/obj/machinery/airalarm/directional/west,
/obj/effect/mapping_helpers/airalarm/unlocked,
@@ -943,13 +1122,13 @@
},
/turf/open/floor/iron,
/area/station/medical/chemistry)
-"ia" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=3-Northeast";
- location = "2-Northwest"
+"hS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
+/obj/structure/transit_tube/station,
/turf/open/floor/iron,
-/area/station/commons/storage/primary)
+/area/station/engineering/gravity_generator)
"ii" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -962,10 +1141,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/command/bridge)
-"iS" = (
-/obj/structure/sign/warning/docking,
-/turf/closed/wall/r_wall,
-/area/station/hallway/secondary/entry)
"jg" = (
/obj/effect/turf_decal/plaque{
icon_state = "L1"
@@ -979,18 +1154,36 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+"jz" = (
+/obj/structure/table/glass,
+/obj/item/disk/surgery/debug,
+/obj/item/storage/box/monkeycubes{
+ pixel_x = 6;
+ pixel_y = 1
+ },
+/obj/item/storage/box/monkeycubes{
+ pixel_x = -6;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/disk/data/debug{
+ pixel_y = 9;
+ pixel_x = 7
+ },
+/turf/open/floor/iron/white/corner,
+/area/station/medical/medbay)
"jL" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
-"jV" = (
-/obj/machinery/computer/communications,
-/obj/machinery/status_display/evac{
- pixel_y = 32
- },
+"jU" = (
+/obj/structure/table,
+/obj/item/melee/energy/axe,
/turf/open/floor/iron,
-/area/station/hallway/secondary/exit/departure_lounge)
+/area/station/commons/storage/primary)
"jZ" = (
/obj/machinery/sleeper/syndie/fullupgrade,
/obj/effect/turf_decal/tile/blue{
@@ -1014,26 +1207,6 @@
/obj/structure/server,
/turf/open/floor/iron/dark,
/area/station/science/explab)
-"kF" = (
-/obj/structure/table/glass,
-/obj/item/disk/surgery/debug,
-/obj/item/storage/box/monkeycubes{
- pixel_x = 6;
- pixel_y = 1
- },
-/obj/item/storage/box/monkeycubes{
- pixel_x = -6;
- pixel_y = 2
- },
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/item/disk/data/debug{
- pixel_y = 9;
- pixel_x = 7
- },
-/turf/open/floor/iron/white/corner,
-/area/station/medical/medbay)
"kS" = (
/turf/closed/wall/r_wall,
/area/station/medical/chemistry)
@@ -1047,24 +1220,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
-"lA" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=2-Northwest";
- location = "1-Southwest"
- },
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
-"lK" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Gravity Generator"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
-/obj/structure/cable,
-/turf/open/floor/iron,
-/area/station/engineering/gravity_generator)
"mb" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -1086,6 +1241,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
},
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/gravity_generator)
@@ -1100,10 +1256,12 @@
},
/turf/open/floor/iron,
/area/station/commons/storage/primary)
-"nP" = (
+"nT" = (
/obj/structure/table,
/obj/machinery/light/directional/south,
-/obj/item/debug/human_spawner,
+/obj/item/storage/medkit/regular,
+/obj/item/healthanalyzer/advanced,
+/obj/item/debug/omnitool/item_spawner,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
"od" = (
@@ -1132,6 +1290,12 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/engineering/main)
+"pe" = (
+/obj/machinery/door/airlock,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/commons/storage/primary)
"pr" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
@@ -1150,12 +1314,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
-"pA" = (
-/obj/machinery/door/airlock/external/glass/ruin,
-/obj/effect/turf_decal/stripes/full,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
-/turf/open/floor/iron,
-/area/station/cargo/storage)
"pL" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/effect/turf_decal/caution/stand_clear{
@@ -1163,6 +1321,13 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+"pY" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=1-Southwest";
+ location = "4-Southeast"
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"pZ" = (
/obj/machinery/light/directional/north,
/obj/machinery/camera/directional/north,
@@ -1178,14 +1343,18 @@
/obj/machinery/door/airlock,
/turf/open/floor/plating,
/area/station/engineering/atmos)
-"qe" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "cargounload"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
+"qg" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/turf_decal/stripes/full,
+/turf/open/floor/iron/dark,
/area/station/cargo/storage)
+"qq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/transit_tube/station/reverse,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"qv" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -1210,6 +1379,14 @@
"qQ" = (
/turf/open/floor/engine,
/area/station/cargo/miningoffice)
+"qR" = (
+/obj/effect/landmark/start,
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ location = "Center"
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"rh" = (
/obj/machinery/door/airlock,
/obj/structure/cable,
@@ -1238,25 +1415,9 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
-"rQ" = (
-/obj/machinery/door/airlock/external/glass/ruin,
-/obj/effect/turf_decal/stripes/full,
-/turf/open/floor/iron/dark,
-/area/station/cargo/storage)
"rT" = (
/turf/open/floor/circuit/green,
/area/station/cargo/bitrunning/den)
-"rZ" = (
-/obj/machinery/conveyor{
- dir = 8;
- id = "cargounload"
- },
-/obj/machinery/door/poddoor{
- id = "cargounload";
- name = "Supply Dock Unloading Door"
- },
-/turf/open/floor/plating,
-/area/station/cargo/storage)
"sr" = (
/obj/machinery/door/airlock/shell,
/turf/open/floor/iron/dark,
@@ -1267,12 +1428,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
-"sO" = (
-/obj/effect/turf_decal/plaque{
- icon_state = "L2"
- },
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"sT" = (
/obj/machinery/door/airlock,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -1280,16 +1435,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/engineering/main)
-"sU" = (
-/obj/effect/spawner/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/station/maintenance/department/bridge)
"tn" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/medical/chemistry)
+"tz" = (
+/obj/machinery/status_display/supply,
+/turf/closed/wall/r_wall,
+/area/station/commons/storage/primary)
"tE" = (
/obj/machinery/door/airlock/research,
/turf/open/floor/iron/dark,
@@ -1301,14 +1456,6 @@
},
/turf/open/space/basic,
/area/space)
-"tI" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargoload"
- },
-/obj/structure/plasticflaps,
-/turf/open/floor/plating,
-/area/station/cargo/storage)
"tQ" = (
/obj/machinery/door/airlock/public/glass,
/obj/structure/cable,
@@ -1320,13 +1467,6 @@
/obj/structure/bot,
/turf/open/floor/iron/dark,
/area/station/science/explab)
-"ub" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=1-Southwest";
- location = "4-Southeast"
- },
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"uf" = (
/obj/structure/fans/tiny/invisible,
/obj/effect/turf_decal/stripes/line{
@@ -1382,6 +1522,12 @@
/obj/machinery/door/airlock,
/turf/open/floor/plating,
/area/station/commons/storage/primary)
+"vw" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Gravity Generator"
+ },
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"vy" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -1408,17 +1554,6 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
-"vV" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/vacuum/external,
-/turf/open/floor/plating,
-/area/station/hallway/secondary/entry)
-"vX" = (
-/obj/structure/table,
-/obj/item/card/emag,
-/obj/item/flashlight/emp/debug,
-/turf/open/floor/iron,
-/area/station/command/bridge)
"wa" = (
/obj/effect/turf_decal/tile/blue{
dir = 8
@@ -1469,28 +1604,23 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
-"wT" = (
-/obj/structure/table,
-/obj/item/card/id/advanced/centcom/ert{
- pixel_x = 6;
- pixel_y = -6
- },
-/obj/item/card/id/advanced/chameleon,
-/obj/item/card/id/advanced/gold/captains_spare{
- pixel_x = -6;
- pixel_y = 6
+"wR" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=3-Northeast";
+ location = "2-Northwest"
},
/turf/open/floor/iron,
-/area/station/command/bridge)
+/area/station/commons/storage/primary)
"wU" = (
/turf/closed/wall/r_wall,
/area/station/science/explab)
-"wV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/light/directional/south,
-/obj/item/bitrunning_debug,
+"xq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/structure/transit_tube/station/dispenser/reverse/flipped,
/turf/open/floor/iron,
-/area/station/cargo/bitrunning/den)
+/area/station/engineering/gravity_generator)
"xD" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/obj/effect/turf_decal/tile/blue/half/contrasted,
@@ -1557,6 +1687,11 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+"zo" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/atmos)
"zS" = (
/obj/machinery/rnd/destructive_analyzer,
/obj/machinery/airalarm/directional/north,
@@ -1588,9 +1723,6 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
-"AM" = (
-/turf/open/floor/plating,
-/area/station/maintenance/department/bridge)
"Bp" = (
/obj/machinery/light/directional/west,
/obj/effect/turf_decal/stripes/line{
@@ -1623,21 +1755,16 @@
/obj/effect/turf_decal/tile/blue/half/contrasted,
/turf/open/floor/iron,
/area/station/command/bridge)
+"BG" = (
+/obj/structure/table,
+/obj/item/ammo_box/c10mm,
+/obj/item/gun/ballistic/automatic/pistol,
+/turf/open/floor/iron,
+/area/station/command/bridge)
"BM" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
-"Cb" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/electrical,
-/obj/item/multitool/circuit{
- pixel_x = -4
- },
-/obj/item/multitool{
- pixel_x = 4
- },
-/turf/open/floor/iron/dark,
-/area/station/science/explab)
"Ce" = (
/turf/open/floor/iron,
/area/station/medical/chemistry)
@@ -1672,12 +1799,6 @@
/obj/effect/turf_decal/stripes/full,
/turf/open/floor/iron/dark,
/area/station/medical/medbay)
-"CO" = (
-/obj/machinery/door/airlock,
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
-/turf/open/floor/iron,
-/area/station/construction)
"CQ" = (
/obj/machinery/light/directional/south,
/obj/effect/turf_decal/stripes/line{
@@ -1685,15 +1806,6 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
-"CS" = (
-/obj/structure/table,
-/obj/item/rcd_ammo/large,
-/obj/item/rcd_ammo/large,
-/obj/item/rcd_ammo/large,
-/obj/item/construction/rcd/combat,
-/obj/item/construction/plumbing,
-/turf/open/floor/iron,
-/area/station/command/bridge)
"CT" = (
/obj/machinery/component_printer,
/turf/open/floor/iron/dark,
@@ -1705,12 +1817,6 @@
/obj/structure/rack,
/turf/open/floor/iron/dark,
/area/station/science/explab)
-"Dk" = (
-/obj/structure/table,
-/obj/item/card/id/advanced/gold/captains_spare,
-/obj/machinery/keycard_auth/wall_mounted/directional/north,
-/turf/open/floor/iron,
-/area/station/hallway/secondary/exit/departure_lounge)
"DC" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/effect/turf_decal/stripes/corner,
@@ -1734,6 +1840,12 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+"DT" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/turf_decal/stripes/full,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
"DW" = (
/obj/machinery/computer/scan_consolenew{
dir = 1
@@ -1743,10 +1855,6 @@
},
/turf/open/floor/iron/white/corner,
/area/station/medical/medbay)
-"DX" = (
-/obj/structure/sign/departments/evac,
-/turf/closed/wall/r_wall,
-/area/station/hallway/secondary/exit/departure_lounge)
"Ef" = (
/obj/machinery/light/directional/north,
/obj/effect/turf_decal/tile/blue{
@@ -1754,10 +1862,6 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
-"Er" = (
-/obj/machinery/computer/rdconsole,
-/turf/open/floor/iron,
-/area/station/science)
"Es" = (
/obj/effect/turf_decal/stripes/line,
/obj/structure/cable,
@@ -1791,14 +1895,6 @@
/obj/machinery/meter/layer4,
/turf/open/floor/plating,
/area/station/engineering/atmos)
-"EQ" = (
-/obj/structure/table,
-/obj/machinery/light/directional/south,
-/obj/item/storage/medkit/regular,
-/obj/item/healthanalyzer/advanced,
-/obj/item/debug/omnitool/item_spawner,
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"ER" = (
/mob/living/carbon/human,
/obj/effect/turf_decal/tile/blue{
@@ -1816,23 +1912,22 @@
},
/turf/open/floor/iron,
/area/station/medical/chemistry)
-"Fm" = (
+"Fd" = (
+/obj/machinery/power/apc/auto_name/directional/west,
/obj/structure/table,
-/obj/item/gun/magic/wand/resurrection/debug,
-/obj/item/gun/magic/wand/death/debug{
- pixel_y = 10
+/obj/item/uplink/debug{
+ pixel_x = -4;
+ pixel_y = 4
},
-/obj/effect/turf_decal/tile/blue{
+/obj/item/uplink/nuclear/debug,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 8
},
-/obj/item/debug/human_spawner{
- pixel_x = 6;
- pixel_y = -4
- },
-/turf/open/floor/iron/white/corner{
- dir = 1
- },
-/area/station/medical/medbay)
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/unlocked,
+/turf/open/floor/iron,
+/area/station/command/bridge)
"Fy" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
@@ -1850,25 +1945,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/turf/open/floor/plating,
/area/station/engineering/atmos)
-"Ge" = (
-/obj/structure/table,
-/obj/item/weldingtool/experimental,
-/obj/item/inducer,
-/obj/item/storage/belt/utility/chief/full,
-/obj/machinery/power/apc/auto_name/directional/west,
-/obj/structure/cable,
-/turf/open/floor/iron,
-/area/station/engineering/main)
-"Gp" = (
-/obj/machinery/camera/directional/north,
-/obj/structure/table,
-/obj/item/construction/rld,
-/obj/item/construction/rcd/arcd,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 4
- },
-/turf/open/floor/iron,
-/area/station/command/bridge)
"GC" = (
/obj/machinery/atmospherics/pipe/layer_manifold{
dir = 4
@@ -1896,6 +1972,12 @@
/obj/machinery/chem_mass_spec,
/turf/open/floor/iron,
/area/station/medical/chemistry)
+"Hb" = (
+/obj/machinery/door/airlock,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/construction)
"Hc" = (
/obj/machinery/camera/directional/north,
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -1923,12 +2005,6 @@
/obj/machinery/camera/directional/north,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
-"In" = (
-/obj/structure/table,
-/obj/item/storage/backpack/holding,
-/obj/item/storage/part_replacer/bluespace/tier4,
-/turf/open/floor/iron,
-/area/station/command/bridge)
"Ir" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -1938,19 +2014,6 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/commons/storage/primary)
-"Iv" = (
-/obj/structure/table,
-/obj/item/organ/internal/cyberimp/bci{
- pixel_y = 5
- },
-/obj/item/organ/internal/cyberimp/bci{
- pixel_y = 5
- },
-/obj/item/organ/internal/cyberimp/bci{
- pixel_y = 5
- },
-/turf/open/floor/iron/dark,
-/area/station/science/explab)
"Iy" = (
/obj/structure/closet/secure_closet/research_director{
locked = 0
@@ -1965,11 +2028,6 @@
/obj/machinery/computer/quantum_console,
/turf/open/floor/iron,
/area/station/cargo/bitrunning/den)
-"IG" = (
-/obj/effect/turf_decal/stripes/line,
-/obj/machinery/camera/directional/north,
-/turf/open/floor/iron,
-/area/station/construction)
"IH" = (
/obj/structure/closet/secure_closet/engineering_welding{
locked = 0
@@ -1990,24 +2048,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/medical/chemistry)
-"Jd" = (
-/obj/machinery/door/airlock,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
-/turf/open/floor/plating,
-/area/station/commons/storage/primary)
-"Jk" = (
-/obj/structure/table,
-/obj/item/screwdriver/power,
-/obj/item/crowbar/power,
-/turf/open/floor/iron,
-/area/station/engineering/main)
-"Jp" = (
-/obj/machinery/gravity_generator/main,
-/obj/effect/turf_decal/tile/neutral/fourcorners,
-/turf/open/floor/iron/dark,
-/area/station/engineering/gravity_generator)
-"JK" = (
+"IX" = (
/obj/machinery/conveyor{
dir = 1;
id = "cargounload"
@@ -2015,17 +2056,24 @@
/obj/structure/sign/warning/vacuum/directional/east,
/turf/open/floor/iron,
/area/station/cargo/storage)
-"JL" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "cargoload"
- },
-/obj/machinery/door/poddoor{
- id = "cargoload";
- name = "Supply Dock Loading Door"
- },
+"Jd" = (
+/obj/machinery/door/airlock,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
-/area/station/cargo/storage)
+/area/station/commons/storage/primary)
+"Jp" = (
+/obj/machinery/gravity_generator/main,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/engineering/gravity_generator)
+"JJ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=4-Southeast";
+ location = "3-Northeast"
+ },
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"JV" = (
/obj/machinery/camera/autoname/directional/east,
/obj/effect/turf_decal/stripes/line{
@@ -2040,13 +2088,6 @@
/obj/effect/turf_decal/stripes/full,
/turf/open/floor/iron,
/area/station/engineering/main)
-"Kp" = (
-/obj/structure/table,
-/obj/machinery/reagentgrinder,
-/obj/machinery/airalarm/directional/north,
-/obj/effect/mapping_helpers/airalarm/unlocked,
-/turf/open/floor/iron/dark,
-/area/station/medical/chemistry)
"Ks" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/door/airlock,
@@ -2054,18 +2095,25 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/engineering/atmos)
-"Kw" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- location = "Center"
+"Kx" = (
+/obj/structure/table,
+/obj/item/analyzer,
+/obj/item/wrench,
+/obj/machinery/light/directional/south,
+/turf/open/floor/plating,
+/area/station/engineering/atmos)
+"Lb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/transit_tube/station/reverse/flipped{
+ dir = 1
+ },
+/obj/structure/transit_tube_pod{
+ dir = 4
},
/turf/open/floor/iron,
-/area/station/commons/storage/primary)
-"KF" = (
-/obj/structure/table,
-/obj/item/melee/energy/axe,
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
+/area/station/engineering/gravity_generator)
"Lq" = (
/obj/effect/turf_decal/stripes/full,
/obj/machinery/door/airlock/external/glass/ruin{
@@ -2077,10 +2125,15 @@
/obj/machinery/chem_dispenser/chem_synthesizer,
/turf/open/floor/iron/dark,
/area/station/medical/chemistry)
-"LP" = (
-/obj/machinery/status_display/supply,
-/turf/closed/wall/r_wall,
-/area/station/cargo/storage)
+"LD" = (
+/obj/item/surgery_tray/full/advanced,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron/white/corner,
+/area/station/medical/medbay)
"LS" = (
/obj/machinery/quantum_server,
/turf/open/floor/iron,
@@ -2138,15 +2191,6 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/engineering/gravity_generator)
-"MQ" = (
-/obj/structure/table,
-/obj/item/flashlight{
- pixel_y = 5
- },
-/obj/item/storage/toolbox/syndicate,
-/obj/item/stock_parts/power_store/cell/infinite,
-/turf/open/floor/iron,
-/area/station/engineering/main)
"Nb" = (
/obj/machinery/bci_implanter,
/turf/open/floor/iron/dark,
@@ -2155,12 +2199,6 @@
/obj/machinery/chem_recipe_debug,
/turf/open/floor/iron,
/area/station/medical/chemistry)
-"Nf" = (
-/obj/machinery/door/airlock,
-/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/station/commons/storage/primary)
"Ni" = (
/obj/structure/cable,
/obj/machinery/power/apc/auto_name/directional/north,
@@ -2181,10 +2219,6 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/cargo/storage)
-"NW" = (
-/obj/structure/sign/warning/pods,
-/turf/closed/wall/r_wall,
-/area/station/hallway/secondary/entry)
"NZ" = (
/obj/machinery/rnd/production/protolathe/department,
/turf/open/floor/iron,
@@ -2202,22 +2236,14 @@
dir = 1
},
/area/station/medical/medbay)
-"OC" = (
-/obj/machinery/power/apc/auto_name/directional/west,
+"Ov" = (
/obj/structure/table,
-/obj/item/uplink/debug{
- pixel_x = -4;
- pixel_y = 4
- },
-/obj/item/uplink/nuclear/debug,
-/obj/structure/cable,
-/obj/effect/turf_decal/tile/blue/half/contrasted{
- dir = 8
- },
-/obj/machinery/airalarm/directional/north,
-/obj/effect/mapping_helpers/airalarm/unlocked,
-/turf/open/floor/iron,
-/area/station/command/bridge)
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/bluespace,
+/obj/item/stock_parts/power_store/cell/bluespace,
+/obj/item/stock_parts/power_store/cell/bluespace,
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
"OF" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -2229,15 +2255,6 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
-"OJ" = (
-/obj/machinery/door/airlock,
-/turf/open/floor/plating,
-/area/station/medical/medbay)
-"OL" = (
-/obj/effect/spawner/structure/window/reinforced,
-/obj/structure/sign/warning/radiation/rad_area/directional/north,
-/turf/open/floor/plating,
-/area/station/engineering/gravity_generator)
"OO" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -2253,15 +2270,6 @@
/obj/item/disk/tech_disk/debug,
/turf/open/floor/iron,
/area/station/science)
-"OY" = (
-/turf/closed/wall/r_wall,
-/area/station/maintenance/department/bridge)
-"OZ" = (
-/obj/structure/table,
-/obj/item/storage/box/shipping,
-/obj/item/boulder_beacon,
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"Pc" = (
/obj/effect/turf_decal/plaque{
icon_state = "L13"
@@ -2271,12 +2279,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
-"Pi" = (
-/obj/structure/table,
-/obj/item/storage/toolbox/syndicate,
-/obj/item/debug/omnitool,
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"Pk" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/mapping_helpers/airalarm/unlocked,
@@ -2294,6 +2296,13 @@
/obj/machinery/meter/layer2,
/turf/open/floor/plating,
/area/station/engineering/atmos)
+"Px" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/unlocked,
+/turf/open/floor/iron/dark,
+/area/station/medical/chemistry)
"PJ" = (
/obj/machinery/airalarm/directional/east,
/obj/effect/mapping_helpers/airalarm/unlocked,
@@ -2305,14 +2314,13 @@
},
/turf/open/floor/iron/white/corner,
/area/station/medical/medbay)
-"Qa" = (
-/obj/machinery/power/apc/auto_name/directional/west,
+"Qi" = (
/obj/effect/turf_decal/stripes/line,
-/obj/structure/cable,
-/obj/machinery/airalarm/directional/north,
-/obj/effect/mapping_helpers/airalarm/unlocked,
+/obj/structure/transit_tube/station/dispenser/reverse{
+ dir = 1
+ },
/turf/open/floor/iron,
-/area/station/commons/storage/primary)
+/area/station/engineering/gravity_generator)
"Qu" = (
/obj/docking_port/stationary/mining_home{
dir = 8
@@ -2370,6 +2378,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/engineering/atmos)
+"Rx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/closet/radiation,
+/obj/structure/sign/warning/radiation/rad_area/directional/north,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"RD" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/blue{
@@ -2388,6 +2404,12 @@
dir = 1
},
/area/station/medical/medbay)
+"RE" = (
+/obj/machinery/door/airlock/external/glass/ruin,
+/obj/effect/turf_decal/stripes/full,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
"RM" = (
/obj/structure/closet/secure_closet/hop{
locked = 0
@@ -2410,6 +2432,12 @@
},
/turf/open/floor/iron/white/corner,
/area/station/medical/medbay)
+"SC" = (
+/obj/structure/table/reinforced,
+/obj/machinery/light/directional/south,
+/obj/item/bitrunning_debug,
+/turf/open/floor/iron,
+/area/station/cargo/bitrunning/den)
"SU" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/iron,
@@ -2429,6 +2457,14 @@
/obj/machinery/door/poddoor,
/turf/open/floor/engine,
/area/station/hallway/secondary/entry)
+"Ts" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Gravity Generator"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/engineering/gravity_generator)
"Tt" = (
/turf/open/floor/plating,
/area/station/maintenance/aft)
@@ -2437,13 +2473,6 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/engineering/atmos)
-"TK" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/obj/structure/cable,
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
"TR" = (
/obj/machinery/netpod,
/turf/open/floor/iron,
@@ -2469,21 +2498,6 @@
},
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
-"UO" = (
-/obj/structure/table,
-/obj/machinery/camera/autoname/directional/south,
-/obj/item/gun/magic/wand/resurrection/debug,
-/turf/open/floor/iron,
-/area/station/commons/storage/primary)
-"US" = (
-/obj/machinery/door/airlock/engineering/glass{
- name = "Gravity Generator"
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/turf/open/floor/iron/dark,
-/area/station/engineering/gravity_generator)
"Va" = (
/obj/machinery/power/smes/full,
/obj/effect/turf_decal/stripes/line{
@@ -2503,14 +2517,6 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/main)
-"VE" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/power_store/cell/bluespace,
-/obj/item/stock_parts/power_store/cell/bluespace,
-/obj/item/stock_parts/power_store/cell/bluespace,
-/turf/open/floor/iron/dark,
-/area/station/science/explab)
"We" = (
/obj/machinery/newscaster/directional/west,
/turf/open/floor/iron,
@@ -2519,19 +2525,6 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/engineering/atmos)
-"Ws" = (
-/obj/machinery/status_display/supply,
-/turf/closed/wall/r_wall,
-/area/station/commons/storage/primary)
-"Wu" = (
-/obj/item/surgery_tray/full/advanced,
-/obj/structure/table/glass,
-/obj/effect/turf_decal/tile/blue{
- dir = 8
- },
-/obj/machinery/light/directional/south,
-/turf/open/floor/iron/white/corner,
-/area/station/medical/medbay)
"WK" = (
/obj/structure/money_bot,
/turf/open/floor/iron/dark,
@@ -2561,14 +2554,6 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
-"Xs" = (
-/obj/machinery/conveyor{
- dir = 1;
- id = "cargoload"
- },
-/obj/structure/sign/warning/vacuum/directional/east,
-/turf/open/floor/iron,
-/area/station/cargo/storage)
"Xy" = (
/obj/machinery/door/airlock,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -2588,6 +2573,14 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/science)
+"XF" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "cargoload"
+ },
+/obj/structure/sign/warning/vacuum/directional/east,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
"XG" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -2599,6 +2592,19 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+"XN" = (
+/obj/structure/table,
+/obj/item/organ/internal/cyberimp/bci{
+ pixel_y = 5
+ },
+/obj/item/organ/internal/cyberimp/bci{
+ pixel_y = 5
+ },
+/obj/item/organ/internal/cyberimp/bci{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
"XU" = (
/obj/machinery/atmospherics/components/tank/air,
/obj/machinery/light/directional/north,
@@ -2611,18 +2617,29 @@
"Yd" = (
/turf/open/floor/iron,
/area/station/cargo/bitrunning/den)
-"Yo" = (
+"Ym" = (
/obj/structure/table,
-/obj/item/analyzer,
-/obj/item/wrench,
-/obj/machinery/light/directional/south,
-/turf/open/floor/plating,
-/area/station/engineering/atmos)
+/obj/item/storage/toolbox/electrical,
+/obj/item/multitool/circuit{
+ pixel_x = -4
+ },
+/obj/item/multitool{
+ pixel_x = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/explab)
"Yt" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/obj/machinery/meter,
/turf/open/floor/plating,
/area/station/engineering/atmos)
+"Yy" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/rnd/production/circuit_imprinter/department,
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/science)
"Yz" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -2635,13 +2652,6 @@
/obj/machinery/camera/autoname/directional/south,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
-"YQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
-/obj/structure/closet/radiation,
-/turf/open/floor/iron,
-/area/station/engineering/gravity_generator)
"Zd" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/mapping_helpers/airalarm/unlocked,
@@ -2652,6 +2662,31 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/iron,
/area/station/engineering/main)
+"Zo" = (
+/obj/structure/table,
+/obj/item/gun/magic/wand/resurrection/debug,
+/obj/item/gun/magic/wand/death/debug{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/item/debug/human_spawner{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 1
+ },
+/area/station/medical/medbay)
+"Zz" = (
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/unlocked,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"ZB" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
@@ -2662,6 +2697,12 @@
/obj/machinery/suit_storage_unit/ce,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+"ZK" = (
+/obj/structure/table,
+/obj/item/storage/box/shipping,
+/obj/item/boulder_beacon,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
"ZP" = (
/turf/open/floor/iron/dark,
/area/station/science/explab)
@@ -3519,7 +3560,7 @@ Ue
IF
Aj
uL
-wV
+SC
Ue
aa
aa
@@ -5826,7 +5867,7 @@ eh
eh
eh
eh
-ar
+eF
HW
fM
eh
@@ -5997,7 +6038,7 @@ aw
hm
aw
hr
-Yo
+Kx
ah
zS
bB
@@ -6024,7 +6065,7 @@ cN
Ni
vm
uQ
-VE
+Ov
Ir
aa
aa
@@ -6181,9 +6222,9 @@ GC
aN
bb
Ru
-gt
+zo
ah
-dq
+Yy
bD
QM
QM
@@ -6191,7 +6232,7 @@ rh
ZB
QV
FA
-CO
+Hb
Es
dn
dn
@@ -6207,8 +6248,8 @@ dL
cN
Pk
kp
-Iv
-Cb
+XN
+Ym
Ir
aa
aa
@@ -6552,7 +6593,7 @@ TT
ab
ab
bu
-OC
+Fd
ce
cp
bu
@@ -6828,14 +6869,14 @@ an
yN
ab
bv
-wT
+bJ
cf
xD
io
lu
QV
bE
-cy
+ef
cY
dn
dn
@@ -6927,7 +6968,7 @@ bu
XG
QV
bE
-cy
+ef
cY
dn
dn
@@ -7012,7 +7053,7 @@ aj
ac
ac
bv
-CS
+aK
cf
RM
bv
@@ -7204,7 +7245,7 @@ kS
QV
bE
cS
-Qa
+Zz
dp
dl
dl
@@ -7284,9 +7325,9 @@ ap
aA
We
Ma
-MQ
-Ge
-Jk
+aS
+bd
+bo
aj
hD
cj
@@ -7390,14 +7431,15 @@ bE
cS
qv
dJ
-ia
+wR
dJ
dJ
Kw
dJ
dJ
dJ
-lA
+dJ
+dN
dJ
dJ
cS
@@ -7472,7 +7514,7 @@ mk
bf
bp
aj
-Kp
+Px
tn
Ce
GZ
@@ -7481,7 +7523,7 @@ QV
bE
cS
jg
-sO
+dq
dJ
dJ
dJ
@@ -7491,7 +7533,7 @@ dJ
dJ
dJ
dJ
-Pi
+gi
cS
fI
ga
@@ -7555,12 +7597,12 @@ aa
aa
aa
aa
-OY
-OY
ak
ak
ak
-lK
+ak
+ak
+Ts
ak
ak
ak
@@ -7583,7 +7625,7 @@ dJ
dJ
dJ
dJ
-EQ
+nT
cS
fO
fO
@@ -7647,8 +7689,8 @@ aa
aa
aa
aa
-OY
-AM
+aa
+aa
ak
Va
Bp
@@ -7739,13 +7781,13 @@ aa
aa
aa
aa
-sU
-AM
+aa
+aa
ak
-YQ
-bh
-bh
-bh
+Rx
+aX
+aX
+aX
br
ak
bS
@@ -7761,12 +7803,11 @@ dt
dJ
dD
dJ
-dI
+qR
dJ
XZ
dJ
dJ
-dJ
UO
cS
fO
@@ -7831,14 +7872,14 @@ aa
aa
aa
aa
-OY
-AM
+aa
+aa
+ak
+gW
+Lb
+aX
+Qi
ak
-OL
-aI
-US
-aI
-aI
ak
Ly
EX
@@ -7859,7 +7900,7 @@ dJ
dJ
dJ
dJ
-OZ
+ZK
cS
fP
fO
@@ -7923,14 +7964,14 @@ aa
aa
aa
aa
-OY
-AM
-ak
-av
-av
-av
-av
-av
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
by
by
ck
@@ -7953,7 +7994,7 @@ dJ
dJ
nP
cS
-Dk
+gz
fO
fO
fO
@@ -8015,20 +8056,20 @@ aa
aa
aa
aa
-OY
-AM
-ak
-av
-MN
-MN
-MN
-av
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
by
Ot
cl
RD
cl
-Fm
+Zo
wa
cJ
by
@@ -8043,9 +8084,10 @@ dJ
dJ
ub
dJ
+dJ
kf
cS
-jV
+fQ
fO
fO
fO
@@ -8107,14 +8149,14 @@ aa
aa
aa
aa
-OY
-AM
-ak
-dT
-MN
-av
-Jp
-av
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
by
DD
cm
@@ -8126,14 +8168,14 @@ Sj
by
jk
dJ
-dJ
+JJ
dJ
dJ
yl
dJ
dJ
dJ
-dJ
+pY
dJ
dJ
cS
@@ -8141,7 +8183,7 @@ fS
fO
AD
fO
-DX
+gk
aa
aa
aa
@@ -8199,14 +8241,14 @@ aa
aa
aa
aa
-OY
-AM
-ak
-av
-MN
-MN
-MN
-av
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
by
ER
cm
@@ -8214,7 +8256,7 @@ cm
cm
Un
WL
-Wu
+LD
by
DC
Bz
@@ -8228,7 +8270,7 @@ MM
MM
MM
qw
-Nf
+pe
pr
Fy
Fy
@@ -8291,14 +8333,14 @@ aa
aa
aa
aa
-OY
-AM
-ak
-av
-av
-aY
-av
-av
+aa
+aa
+aa
+aI
+af
+bY
+ad
+aI
by
jZ
cm
@@ -8306,7 +8348,7 @@ cm
cm
cm
WL
-kF
+jz
by
dB
dx
@@ -8383,14 +8425,14 @@ aa
aa
aa
aa
-OY
-AM
-ak
-ak
-ak
-ak
-ak
-ak
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
by
er
cm
@@ -8407,7 +8449,7 @@ cS
cS
Is
Jd
-Ws
+tz
cS
cS
cS
@@ -8475,15 +8517,15 @@ aa
aa
aa
aa
-OY
-AM
-AM
-AM
-AM
-AM
-AM
-AM
-OJ
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
+by
wk
PK
PK
@@ -8567,14 +8609,14 @@ aa
aa
aa
aa
-OY
-OY
-OY
-OY
-OY
-OY
-OY
-OY
+aa
+aa
+aa
+aI
+af
+aX
+ad
+aI
by
by
by
@@ -8662,11 +8704,11 @@ aa
fg
fg
fg
-fg
-fg
-fg
-fg
-fg
+aI
+af
+aX
+ad
+aI
aa
aa
ck
@@ -8679,13 +8721,13 @@ by
ev
eA
eA
-JK
+IX
eN
Ao
QP
pL
eT
-Xs
+XF
fm
ev
et
@@ -8754,11 +8796,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+hS
+bY
+ad
+aI
aa
aa
ck
@@ -8772,11 +8814,11 @@ et
fh
fh
et
-rZ
-cX
+eY
+DT
et
-pA
-JL
+RE
+fc
et
fh
fh
@@ -8846,11 +8888,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
by
@@ -8864,11 +8906,11 @@ aa
aa
aa
fh
-qe
+eC
gH
ng
GV
-tI
+fl
fh
aa
aa
@@ -8938,11 +8980,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -8956,11 +8998,11 @@ aa
aa
aa
fh
-qe
+eC
An
ya
An
-tI
+fl
fh
aa
aa
@@ -9030,11 +9072,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -9048,11 +9090,11 @@ aa
aa
aa
et
-rZ
-rQ
-LP
-rQ
-JL
+eY
+qg
+fB
+qg
+fc
et
aa
aa
@@ -9122,11 +9164,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -9214,11 +9256,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+bY
+ad
+aI
aa
aa
aa
@@ -9306,11 +9348,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -9398,11 +9440,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -9490,11 +9532,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -9582,11 +9624,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+aI
+af
+aX
+ad
+aI
aa
aa
aa
@@ -9674,11 +9716,11 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
+ak
+qq
+bh
+xq
+ak
aa
aa
aa
@@ -9765,13 +9807,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+ak
+aI
+vw
+aI
+ak
+ak
aa
aa
aa
@@ -9857,13 +9899,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+av
+av
+av
+av
+av
+ak
aa
aa
aa
@@ -9949,13 +9991,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+av
+MN
+MN
+MN
+av
+ak
aa
aa
aa
@@ -10041,13 +10083,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+dT
+MN
+av
+Jp
+av
+ak
aa
aa
aa
@@ -10133,13 +10175,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+av
+MN
+MN
+MN
+av
+ak
aa
aa
aa
@@ -10225,13 +10267,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+av
+av
+aY
+av
+av
+ak
aa
aa
aa
@@ -10317,13 +10359,13 @@ aa
aa
aa
aa
-aa
-aa
-aa
-aa
-aa
-aa
-aa
+ak
+ak
+ak
+ak
+ak
+ak
+ak
aa
aa
aa
diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm
index 9f5cd41becb..f4647bfec47 100644
--- a/_maps/map_files/generic/CentCom.dmm
+++ b/_maps/map_files/generic/CentCom.dmm
@@ -196,6 +196,7 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/courtroom)
+<<<<<<< HEAD
"aV" = (
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -203,6 +204,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/briefing)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aW" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -712,10 +715,28 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/admin)
+<<<<<<< HEAD
"de" = (
/obj/effect/landmark/start/new_player,
/turf/cordon,
/area/misc/start)
+=======
+"df" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/stamp{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp/centcom,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dh" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 4
@@ -785,6 +806,23 @@
/obj/machinery/light/directional/south,
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/control)
+<<<<<<< HEAD
+=======
+"ds" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dv" = (
/obj/structure/railing/corner{
dir = 8
@@ -848,6 +886,7 @@
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks{
dir = 8
+<<<<<<< HEAD
},
/obj/machinery/status_display/evac/directional/east,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -1327,6 +1366,475 @@
name = "Thunderdome Admin"
},
/area/centcom/tdome/administration)
+=======
+ },
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"dJ" = (
+/obj/machinery/button/door/indestructible{
+ id = "thunderdomehea";
+ name = "Heavy Supply Control";
+ req_access = list("cent_thunder")
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"dK" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/wood/corner,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door/airlock/highsecurity,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"dL" = (
+/obj/effect/turf_decal/loading_area,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"dU" = (
+/obj/structure/bookcase/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/ai/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"dV" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/beanbag,
+/obj/item/gun/ballistic/shotgun/doublebarrel,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"dW" = (
+/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/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"ea" = (
+/obj/item/flashlight/lamp,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"ec" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/dark{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"eg" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/cup/glass/bottle/whiskey{
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"em" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"en" = (
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/silver_ids,
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster/directional/north,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"ep" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"eq" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/turf_decal/bot,
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"et" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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/open/floor/plating,
+/area/centcom/central_command_areas/courtroom)
+"eu" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"ev" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"ey" = (
+/obj/structure/flora/bush/leavy,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"eA" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/kirbyplants/organic/plant15{
+ pixel_x = -6;
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"eB" = (
+/obj/structure/bookcase/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"eD" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin)
+"eE" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/figure/dsquad{
+ pixel_x = -3;
+ pixel_y = 11
+ },
+/obj/item/flashlight/seclite,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"eF" = (
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/briefing)
+"eH" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/iron{
+ icon_state = "asteroid5";
+ name = "plating"
+ },
+/area/centcom/tdome/administration)
+"eI" = (
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"eK" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/obj/machinery/light/directional/south,
+/turf/open/misc/asteroid,
+/area/centcom/central_command_areas/evacuation)
+"eM" = (
+/obj/machinery/vending/cola,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"eN" = (
+/obj/structure/table/wood,
+/obj/structure/plaque/static_plaque/golden{
+ pixel_y = 32
+ },
+/obj/item/clothing/accessory/lawyers_badge{
+ desc = "A badge of upmost glory.";
+ name = "thunderdome badge"
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/tdome/observation)
+"eP" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/mob_spawn/corpse/human/intern,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"eR" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"eS" = (
+/obj/structure/table/wood,
+/obj/item/folder,
+/obj/item/pen/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"eV" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/taperecorder,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/briefing)
+"eX" = (
+/obj/effect/turf_decal/siding/wood/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/evacuation/ship)
+"eY" = (
+/obj/machinery/airalarm/directional/east,
+/obj/structure/filingcabinet/filingcabinet,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/ferry)
+"fa" = (
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"fb" = (
+/obj/machinery/flasher{
+ id = "tdomeflash";
+ name = "Thunderdome Flash"
+ },
+/turf/open/floor/circuit/green,
+/area/centcom/tdome/arena)
+"fc" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"fe" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/item/kirbyplants/organic/plant21,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/courtroom)
+"ff" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/green,
+/obj/item/clothing/shoes/sneakers/brown,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/head/helmet/swat,
+/obj/item/gun/energy/laser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"fh" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"fi" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/landmark/ert_spawn,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"fj" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/armory)
+"fk" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"fl" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"fm" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/evacuation)
+"fw" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"fA" = (
+/obj/machinery/vending/cola,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/fore)
+"fC" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"fE" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"fF" = (
+/obj/machinery/door/airlock/external/ruin{
+ name = "Backup Emergency Escape Shuttle"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"fG" = (
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/admin)
+"fI" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"fM" = (
+/obj/structure/filingcabinet/medical,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"fN" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light_switch/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"fP" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/admin)
+"fQ" = (
+/obj/machinery/power/smes/magical,
+/obj/structure/sign/warning/electric_shock/directional/east,
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"fR" = (
+/obj/item/food/egg/rainbow{
+ desc = "I bet you think you're pretty clever... well you are.";
+ name = "easter egg"
+ },
+/turf/open/space/basic,
+/area/space)
+"fT" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/space/basic,
+/area/space/nearstation)
+"fV" = (
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"fW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"fZ" = (
+/obj/effect/landmark/ctf,
+/turf/open/space/basic,
+/area/space)
+"ga" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/pointy/style_random,
+/obj/machinery/light/directional/south,
+/turf/open/floor/grass,
+/area/centcom/tdome/administration)
+"gd" = (
+/obj/machinery/door/airlock/highsecurity,
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"ge" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/maintenance_hatch,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"gf" = (
+/obj/machinery/vending/security,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gi" = (
/obj/docking_port/stationary{
dir = 4;
@@ -1480,6 +1988,22 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/armory)
+<<<<<<< HEAD
+=======
+"gY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gZ" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -1663,6 +2187,16 @@
/obj/item/soap/nanotrasen,
/turf/open/floor/iron/white,
/area/centcom/tdome/observation)
+<<<<<<< HEAD
+=======
+"ig" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/taperecorder,
+/obj/item/book/manual/wiki/security_space_law,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/ferry)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ih" = (
/obj/structure/bookcase/random,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -1778,11 +2312,14 @@
/obj/machinery/status_display/evac/directional/north,
/turf/open/floor/iron,
/area/centcom/central_command_areas/prison)
+<<<<<<< HEAD
"iB" = (
/turf/closed/indestructible/fakedoor{
name = "CentCom Cell"
},
/area/centcom/central_command_areas/prison/cells)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iC" = (
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks/beer{
@@ -2412,10 +2949,14 @@
"lb" = (
/obj/structure/table/wood,
/obj/machinery/door/window/left/directional/south,
+<<<<<<< HEAD
/obj/item/radio/intercom{
desc = "Talk smack through this.";
syndie = 1
},
+=======
+/obj/item/radio/intercom/syndicate,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/grimy,
/area/centcom/central_command_areas/courtroom)
"lc" = (
@@ -2428,10 +2969,14 @@
/area/centcom/central_command_areas/courtroom)
"ld" = (
/obj/structure/table/wood,
+<<<<<<< HEAD
/obj/item/radio/intercom{
desc = "Talk smack through this.";
syndie = 1
},
+=======
+/obj/item/radio/intercom/syndicate,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/window/brigdoor/right/directional/south{
name = "CentCom Stand";
req_access = list("cent_captain")
@@ -2600,10 +3145,8 @@
/obj/structure/chair{
dir = 8
},
-/obj/item/radio/intercom{
- desc = "Talk smack through this.";
- pixel_x = -32;
- syndie = 1
+/obj/item/radio/intercom/syndicate{
+ pixel_x = -32
},
/turf/open/floor/iron/grimy,
/area/centcom/central_command_areas/courtroom)
@@ -2669,10 +3212,14 @@
/area/centcom/central_command_areas/courtroom)
"mn" = (
/obj/structure/table/wood,
+<<<<<<< HEAD
/obj/item/radio/intercom{
desc = "Talk smack through this.";
syndie = 1
},
+=======
+/obj/item/radio/intercom/syndicate,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/grimy,
/area/centcom/central_command_areas/courtroom)
"mo" = (
@@ -2905,6 +3452,14 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/fore)
+<<<<<<< HEAD
+=======
+"nz" = (
+/obj/structure/table/reinforced,
+/obj/machinery/fax/admin,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/briefing)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nA" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -3675,6 +4230,7 @@
/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
/turf/open/floor/iron,
/area/centcom/central_command_areas/prison)
+<<<<<<< HEAD
"qM" = (
/obj/machinery/keycard_auth/wall_mounted/directional/south,
/obj/structure/table/reinforced,
@@ -3687,6 +4243,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/ferry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qO" = (
/obj/effect/turf_decal/tile/red{
dir = 8
@@ -3755,27 +4313,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/prison)
+<<<<<<< HEAD
"rh" = (
/obj/machinery/keycard_auth/wall_mounted/directional/south,
/obj/structure/table/reinforced,
/obj/item/stack/package_wrap{
pixel_y = 11;
pixel_x = -16
- },
-/obj/item/stack/cable_coil{
- pixel_y = 4;
- pixel_x = -10
- },
-/obj/item/hand_labeler{
- pixel_y = 1
- },
-/obj/effect/turf_decal/tile/neutral/fourcorners,
-/obj/item/hand_labeler_refill{
- pixel_x = 8;
- pixel_y = 12
- },
-/turf/open/floor/iron/dark,
-/area/centcom/central_command_areas/supply)
+=======
"rk" = (
/turf/open/floor/wood,
/area/centcom/central_command_areas/courtroom)
@@ -3799,6 +4344,13 @@
/obj/effect/turf_decal/tile/dark_blue/fourcorners,
/turf/open/floor/iron,
/area/centcom/central_command_areas/evacuation)
+"rr" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/clipboard,
+/obj/item/radio/headset/headset_cent,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
"rs" = (
/obj/effect/landmark/prisonwarp,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -3844,6 +4396,10 @@
/obj/effect/turf_decal/siding/wood/corner,
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/evacuation/ship)
+"rA" = (
+/obj/effect/landmark/start/new_player,
+/turf/cordon,
+/area/misc/start)
"rB" = (
/obj/structure/table/reinforced,
/obj/item/storage/fancy/donut_box,
@@ -4403,20 +4959,6 @@
/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/north,
/turf/open/indestructible/dark,
/area/centcom/central_command_areas/admin)
-"ub" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/centcom{
- name = "CentCom"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/cyclelink_helper{
- dir = 8
- },
-/obj/effect/mapping_helpers/airlock/access/all/admin/general,
-/turf/open/floor/iron,
-/area/centcom/central_command_areas/control)
"uc" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
@@ -4450,6 +4992,706 @@
/obj/structure/flora/bush/generic/style_random,
/turf/open/floor/grass,
/area/centcom/central_command_areas/prison)
+"uk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ },
+/obj/item/stack/cable_coil{
+ pixel_y = 4;
+ pixel_x = -10
+ },
+/obj/item/hand_labeler{
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/hand_labeler_refill{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"rk" = (
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/courtroom)
+"rm" = (
+/obj/machinery/computer/shuttle/labor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"rn" = (
+/obj/machinery/computer/shuttle/mining,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"rq" = (
+/obj/machinery/light/floor,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"rs" = (
+/obj/effect/landmark/prisonwarp,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/indestructible/dark,
+/area/centcom/central_command_areas/prison/cells)
+"rt" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"ru" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"rv" = (
+/obj/machinery/light/directional/west,
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"rw" = (
+/obj/machinery/vending/snack,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"ry" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/directional/west,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/machinery/newscaster/directional/west,
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/admin)
+"rz" = (
+/obj/effect/turf_decal/siding/wood/corner,
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/evacuation/ship)
+"rB" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"rF" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/iron{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/centcom/central_command_areas/supply)
+"rH" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron{
+ icon_state = "asteroid5";
+ name = "plating"
+ },
+/area/centcom/central_command_areas/fore)
+"rI" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "XCCsec3";
+ name = "XCC Checkpoint 3 Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/fore)
+"rJ" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/flora/bush/generic/style_random,
+/obj/machinery/light/directional/west,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/fore)
+"rK" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/pointy/style_random,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/control)
+"rL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+<<<<<<< HEAD
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"rM" = (
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/courtroom)
+"rN" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"rQ" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation/ship)
+"rS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"rT" = (
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation)
+"rU" = (
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation)
+"rV" = (
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation)
+"rY" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/armory)
+"rZ" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"sa" = (
+/obj/structure/table/wood,
+/obj/item/lighter{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/crowbar/power{
+ pixel_y = 15
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"sb" = (
+/obj/machinery/vending/snack,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"sc" = (
+/obj/structure/table/wood,
+/obj/structure/plaque/static_plaque/golden{
+ pixel_y = 32
+ },
+/obj/item/clothing/accessory/medal/silver{
+ pixel_y = 5
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/tdome/observation)
+"sd" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Orbital Drop Pod Loading"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"sk" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/cup/glass/bottle/whiskey{
+ pixel_y = 5
+ },
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"sn" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/medical,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"so" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"sq" = (
+/obj/machinery/computer/shuttle/white_ship{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/status_display/ai/directional/west,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"sr" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"ss" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"st" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"su" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"sv" = (
+/obj/structure/noticeboard/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"sw" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/dark{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"sz" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"sA" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation/ship)
+"sC" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"sE" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/armory)
+"sF" = (
+/obj/machinery/computer/crew,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"sH" = (
+/obj/machinery/computer/security/telescreen,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"sI" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"sJ" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"sK" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"sL" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sP" = (
+/obj/structure/table,
+/obj/item/paper_bin{
+ pixel_y = 7;
+ pixel_x = -4
+ },
+/obj/item/pen{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sQ" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sR" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sS" = (
+/obj/structure/table,
+/obj/item/toy/katana{
+ pixel_y = 8
+ },
+/obj/item/toy/plush/carpplushie,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sV" = (
+/obj/machinery/door/poddoor/shuttledock,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"sY" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Supplypod Loading"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/storage,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"sZ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Supplypod Loading"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/storage,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"tb" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"td" = (
+/obj/structure/sign/departments/drop,
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/ferry)
+"tg" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/green/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"tl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"tn" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/obj/structure/sign/warning/secure_area/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"to" = (
+/obj/machinery/computer/shuttle/ferry{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"tp" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"tq" = (
+/obj/structure/chair/office,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"tr" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"ts" = (
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"tt" = (
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"tu" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Supply"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"ty" = (
+/obj/structure/filingcabinet/security,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"tF" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Locker Room"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"tG" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"tH" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Administration"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/obj/effect/mapping_helpers/airlock/access/all/admin/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"tI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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/open/floor/plating,
+/area/centcom/central_command_areas/fore)
+"tK" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"tL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"tM" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"tN" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"tQ" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"tR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"tT" = (
+/obj/effect/turf_decal/siding/dark_blue,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"tU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"tV" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"tW" = (
+/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/north,
+/turf/open/indestructible/dark,
+/area/centcom/central_command_areas/admin)
+"ub" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+<<<<<<< HEAD
+"uc" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"ud" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"uf" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/tdome/administration)
+"ug" = (
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"uh" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"uj" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/flora/bush/generic/style_random,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/prison)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ul" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/effect/turf_decal/siding/yellow/corner{
@@ -4981,6 +6223,7 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/ferry)
+<<<<<<< HEAD
"wu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -4995,6 +6238,8 @@
/obj/effect/mapping_helpers/airlock/access/all/admin/general,
/turf/open/floor/iron,
/area/centcom/central_command_areas/ferry)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wv" = (
/obj/machinery/door/poddoor/shutters{
id = "XCCFerry";
@@ -5071,6 +6316,7 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/control)
+<<<<<<< HEAD
"wJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -5084,6 +6330,8 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/evacuation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wK" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -5480,6 +6728,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 1
+<<<<<<< HEAD
},
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/evacuation/ship)
@@ -5600,6 +6849,130 @@
initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
planetary_atmos = 0
},
+=======
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"yL" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"yO" = (
+/obj/machinery/computer/communications,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"yP" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/machinery/computer/cargo{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"yR" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/stamp{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/obj/item/stamp/centcom,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/briefing)
+"yS" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/emps,
+/obj/item/gun/energy/ionrifle,
+/obj/structure/sign/departments/medbay/alt/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"yV" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 8;
+ height = 7;
+ json_key = "cargo";
+ name = "CentCom";
+ shuttle_id = "cargo_away";
+ width = 20
+ },
+/turf/open/space,
+/area/space)
+"yW" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/green{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"yX" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/turf/open/floor/iron/white/textured,
+/area/centcom/central_command_areas/evacuation/ship)
+"yY" = (
+/obj/structure/chair,
+/obj/effect/landmark/thunderdome/observe,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"za" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"zb" = (
+/obj/machinery/computer/records/medical{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"zc" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"zf" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/taperecorder,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"zh" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"zi" = (
+/obj/item/rupee,
+/turf/open/misc/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
+ planetary_atmos = 0
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/awaymission/errorroom)
"zk" = (
/obj/machinery/door/airlock/medical/glass{
@@ -5788,6 +7161,22 @@
},
/turf/open/floor/iron,
/area/centcom/central_command_areas/supplypod/loading/two)
+<<<<<<< HEAD
+=======
+"zO" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Red Team";
+ network = list("thunder");
+ pixel_x = 11;
+ pixel_y = -9;
+ resistance_flags = 64
+ },
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zR" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -6655,6 +8044,7 @@
/area/centcom/central_command_areas/control)
"DJ" = (
/obj/structure/chair/office{
+<<<<<<< HEAD
dir = 8
},
/obj/effect/turf_decal/tile/blue/half/contrasted{
@@ -6752,6 +8142,92 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+=======
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"DL" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"DN" = (
+/obj/effect/turf_decal/loading_area{
+ dir = 4
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"DU" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Eb" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Ee" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Ef" = (
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Eg" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Booth"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Ej" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/medkit/regular,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Em" = (
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/structure/table/reinforced,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"En" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"Eq" = (
+/obj/structure/chair/stool/bar/directional/east,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/carpet/red,
+/area/centcom/central_command_areas/evacuation/ship)
+"Er" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/tile/neutral/full,
/obj/effect/decal/cleanable/dirt,
/obj/item/kirbyplants,
@@ -6784,6 +8260,22 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/centcom/central_command_areas/courtroom)
+<<<<<<< HEAD
+=======
+"EA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"EB" = (
/obj/effect/turf_decal/siding/wideplating_new/dark{
dir = 8
@@ -6841,6 +8333,7 @@
/obj/effect/turf_decal/siding/wideplating_new/dark{
dir = 4
},
+<<<<<<< HEAD
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -7024,6 +8517,201 @@
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8
},
+=======
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/obey/directional/west,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"EM" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/podbay,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/one)
+"EV" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave{
+ pixel_y = 7
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 5
+ },
+/obj/item/storage/box/donkpockets/donkpocketspicy{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/evacuation/ship)
+"EZ" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/three)
+"Fe" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"Ff" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet/red,
+/area/centcom/central_command_areas/evacuation/ship)
+"Fg" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/status_display/evac/directional/south,
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Fh" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"Fi" = (
+/obj/effect/landmark/basketball/game_area,
+/turf/open/space/basic,
+/area/space)
+"Fj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Thunderdome Administration"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"Fk" = (
+/obj/machinery/vending/cola,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Fo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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/open/floor/plating,
+/area/centcom/central_command_areas/prison)
+"Fq" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/control)
+"Fu" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"Fv" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/fore)
+"Fw" = (
+/obj/machinery/door/window/brigdoor/right/directional/south{
+ name = "CentCom Stand";
+ req_access = list("cent_captain")
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/courtroom)
+"Fz" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"FB" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/syringes,
+/obj/item/gun/syringe/rapidsyringe,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"FI" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"FM" = (
+/obj/structure/signpost/salvation{
+ icon = 'icons/obj/structures.dmi';
+ icon_state = "ladder10";
+ invisibility = 100
+ },
+/turf/open/misc/ashplanet/wateryrock{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15";
+ planetary_atmos = 0
+ },
+/area/awaymission/errorroom)
+"FO" = (
+/obj/structure/table/reinforced,
+/obj/item/computer_disk/quartermaster,
+/obj/item/computer_disk/quartermaster,
+/obj/item/computer_disk/quartermaster,
+/obj/item/gps/mining,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"FR" = (
+/obj/effect/light_emitter/podbay,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/pod_storage)
+"FU" = (
+/turf/closed/indestructible/fakedoor{
+ name = "Thunderdome Admin"
+ },
+/area/centcom/tdome/administration)
+"FX" = (
+/obj/machinery/computer/auxiliary_base/directional/north,
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/radio/headset/headset_cent,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/ferry)
+"FZ" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Gb" = (
+/obj/effect/light_emitter/thunderdome,
+/turf/closed/indestructible/fakeglass,
+/area/centcom/tdome/observation)
+"Gf" = (
+/obj/machinery/firealarm/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/grimy,
/area/centcom/central_command_areas/admin)
"Gi" = (
@@ -7102,6 +8790,7 @@
/turf/open/floor/iron,
/area/centcom/central_command_areas/admin/storage)
"GC" = (
+<<<<<<< HEAD
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "CentCom"
@@ -10269,6 +11958,11 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "CentCom Security"
+=======
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -10276,6 +11970,7 @@
/obj/effect/mapping_helpers/airlock/cyclelink_helper{
dir = 8
},
+<<<<<<< HEAD
/obj/effect/mapping_helpers/airlock/access/all/admin/general,
/turf/open/floor/iron,
/area/centcom/central_command_areas/ferry)
@@ -10381,6 +12076,3285 @@
},
/turf/open/floor/iron/white,
/area/centcom/tdome/observation)
+=======
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"GD" = (
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"GI" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"GJ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/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/open/floor/plating,
+/area/centcom/central_command_areas/evacuation)
+"GL" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/item/clothing/head/costume/festive{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"GN" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"GT" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"GX" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Ha" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fourcolor,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Hb" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/smooth_edge,
+/area/centcom/central_command_areas/evacuation/ship)
+"Hi" = (
+/obj/effect/turf_decal/tile/green,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"Hj" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Hl" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"Hm" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/iron{
+ icon_state = "asteroid5";
+ name = "plating"
+ },
+/area/centcom/tdome/observation)
+"Ho" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"Hs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"Hv" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/courtroom)
+"Hw" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Hz" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"HE" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/turf/open/misc/asteroid,
+/area/centcom/tdome/observation)
+"HF" = (
+/obj/machinery/igniter/on,
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"HG" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"HH" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"HI" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"HJ" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"HK" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"HL" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"HM" = (
+/obj/structure/bookcase/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"HR" = (
+/obj/structure/bed/medical/emergency,
+/obj/machinery/iv_drip,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/evacuation/ship)
+"HV" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/closet/secure_closet/quartermaster,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"HY" = (
+/obj/machinery/photocopier,
+/obj/machinery/button/door/indestructible{
+ id = "XCCFerry";
+ name = "Hanger Bay Shutters";
+ pixel_x = -8;
+ pixel_y = 24
+ },
+/obj/machinery/button/door/indestructible{
+ id = "XCCsec3";
+ name = "CC Main Access Control";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/obj/machinery/button/door/indestructible{
+ id = "XCCsec1";
+ name = "CC Shutter 1 Control";
+ pixel_x = 8;
+ pixel_y = 38
+ },
+/obj/machinery/button/door/indestructible{
+ id = "XCCsec3";
+ name = "XCC Shutter 3 Control";
+ pixel_x = -8;
+ pixel_y = 38
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"HZ" = (
+/obj/structure/railing{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/dark{
+ dir = 6
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Ic" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdomehea";
+ name = "Heavy Supply"
+ },
+/obj/effect/turf_decal/loading_area,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Id" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = -8
+ },
+/obj/item/reagent_containers/cup/glass/mug/britcup,
+/obj/effect/turf_decal/bot,
+/obj/item/clothing/head/utility/chefhat{
+ pixel_y = 11;
+ pixel_x = 5
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Ie" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/yellow,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"If" = (
+/obj/machinery/newscaster{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"Im" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Io" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 10;
+ height = 30;
+ json_key = "ferry";
+ name = "CentCom Ferry Dock";
+ shuttle_id = "ferry_away";
+ width = 21
+ },
+/turf/open/space,
+/area/space)
+"Ip" = (
+/obj/structure/chair/stool/bar/directional/east,
+/turf/open/floor/carpet/red,
+/area/centcom/central_command_areas/evacuation/ship)
+"Ir" = (
+/obj/machinery/computer/emergency_shuttle{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"Iv" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"Iw" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"IF" = (
+/turf/closed/indestructible/fakedoor{
+ name = "CentCom Cell"
+ },
+/area/centcom/central_command_areas/prison/cells)
+"IK" = (
+/obj/structure/closet/secure_closet/ert_sec,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/machinery/status_display/ai/directional/south,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"IO" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"IR" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/flora/bush/generic/style_random,
+/obj/machinery/light/directional/south,
+/turf/open/floor/grass,
+/area/centcom/tdome/administration)
+"IX" = (
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Jb" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/prison/cells)
+"Jg" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/fore)
+"Ji" = (
+/turf/open/floor/circuit/green,
+/area/centcom/tdome/arena)
+"Jl" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Jq" = (
+/obj/machinery/camera/motion/thunderdome{
+ pixel_x = 10
+ },
+/turf/open/floor/circuit/green,
+/area/centcom/tdome/arena)
+"JC" = (
+/obj/machinery/modular_computer/preset/command{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"JE" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"JJ" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"JO" = (
+/obj/machinery/modular_computer/preset/id/centcom,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"JU" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/directional/west,
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"JV" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"JW" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/briefcase/secure,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Kd" = (
+/obj/effect/turf_decal/tile/red/opposingcorners,
+/obj/effect/turf_decal/tile/yellow/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Kf" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Storage"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin)
+"Ko" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"Kv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"KA" = (
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"KC" = (
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/courtroom)
+"KD" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/east,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/courtroom)
+"KF" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/one)
+"KH" = (
+/turf/closed/wall/mineral/titanium,
+/area/centcom/central_command_areas/evacuation/ship)
+"KK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"KL" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/effect/landmark/thunderdome/two,
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"KN" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron{
+ icon_state = "asteroid5";
+ name = "plating"
+ },
+/area/centcom/tdome/observation)
+"KO" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"KQ" = (
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/evacuation/ship)
+"KS" = (
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 1;
+ height = 5;
+ name = "recovery ship";
+ shuttle_id = "pod_2_away";
+ width = 3
+ },
+/turf/open/space/basic,
+/area/space)
+"KV" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"KW" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/machinery/button/door/indestructible{
+ id = "XCCFerry";
+ name = "Hanger Bay Shutters";
+ pixel_y = -38
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/ferry)
+"KZ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lb" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lc" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"Ld" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lf" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"Li" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lj" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lk" = (
+/obj/machinery/power/shuttle_engine/heater,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"Ll" = (
+/obj/structure/flora/grass/jungle,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lm" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/door/airlock/titanium/glass,
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"Ln" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/chair/comfy/shuttle/tactical{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lo" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"Lp" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lt" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lu" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/sign/poster/official/nanotrasen_logo/directional/west,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lv" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Lw" = (
+/obj/effect/spawner/structure/window/reinforced/shuttle,
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/evacuation/ship)
+"Lx" = (
+/obj/effect/turf_decal/siding/dark_blue/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Lz" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/dark{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"LA" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"LB" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"LC" = (
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/door/airlock/titanium,
+/obj/structure/fans/tiny,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"LD" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"LF" = (
+/obj/structure/flora/grass/jungle/b/style_3,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"LG" = (
+/obj/structure/flora/bush/sparsegrass,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"LI" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white/textured,
+/area/centcom/central_command_areas/evacuation/ship)
+"LJ" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2,
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"LK" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/item/kirbyplants/organic/plant21,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/courtroom)
+"LM" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 1;
+ height = 5;
+ name = "recovery ship";
+ shuttle_id = "pod_6_away";
+ width = 3
+ },
+/turf/open/space/basic,
+/area/space)
+"LN" = (
+/obj/structure/table/optable,
+/obj/machinery/defibrillator_mount/loaded{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/blood,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/evacuation/ship)
+"LP" = (
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/door/airlock/titanium,
+/obj/structure/fans/tiny,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"LQ" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"LR" = (
+/obj/structure/sign/poster/official/tactical_game_cards/directional/north,
+/turf/open/floor/carpet/red,
+/area/centcom/central_command_areas/evacuation/ship)
+"LU" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/computer/records/medical{
+ dir = 8
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"LV" = (
+/turf/closed/indestructible/riveted,
+/area/awaymission/errorroom)
+"LW" = (
+/turf/closed/mineral/ash_rock,
+/area/awaymission/errorroom)
+"LX" = (
+/obj/structure/speaking_tile,
+/turf/closed/mineral/ash_rock,
+/area/awaymission/errorroom)
+"Mf" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Mn" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Mo" = (
+/obj/structure/bed,
+/obj/item/bedsheet/black,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Mp" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Mr" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Ms" = (
+/obj/structure/table,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Mt" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"Mu" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Mv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"Mw" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"My" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"Mz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/prison)
+"MC" = (
+/obj/structure/flora/grass/jungle/b,
+/obj/effect/decal/cleanable/garbage{
+ pixel_x = -15;
+ pixel_y = -6
+ },
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"ME" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"MF" = (
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"MH" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"MI" = (
+/obj/machinery/light/directional/north,
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/beerkeg{
+ pixel_y = 6;
+ pixel_x = 5
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"MJ" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/ert_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"MK" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"ML" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"MM" = (
+/obj/machinery/power/shuttle_engine/large,
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/evacuation/ship)
+"MP" = (
+/obj/effect/light_emitter/podbay,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"MQ" = (
+/obj/structure/closet/secure_closet/courtroom,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"MS" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"MU" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"MV" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"MX" = (
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/smooth_edge,
+/area/centcom/central_command_areas/evacuation/ship)
+"MY" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/briefing)
+"Ne" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/glass/trophy/gold_cup,
+/turf/open/floor/iron/grimy,
+/area/centcom/tdome/observation)
+"Ng" = (
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/silver_ids,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Nh" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses{
+ pixel_y = 14;
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/cup/glass/shaker{
+ pixel_y = -8;
+ pixel_x = -10
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"Nk" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"Nm" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white/textured,
+/area/centcom/central_command_areas/evacuation/ship)
+"Nn" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/lockbox/loyalty,
+/obj/item/gun/ballistic/automatic/ar,
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin/storage)
+"Np" = (
+/obj/structure/bookcase/random,
+/obj/structure/noticeboard/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Nq" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"Nr" = (
+/obj/structure/table/reinforced,
+/obj/item/folder/red,
+/obj/item/restraints/handcuffs,
+/obj/item/assembly/flash/handheld,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Nw" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Nx" = (
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"Ny" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"NC" = (
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"NE" = (
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/pod_storage)
+"NG" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"NH" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/oven/range,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"NI" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/stone,
+/area/centcom/central_command_areas/evacuation/ship)
+"NJ" = (
+/obj/machinery/status_display/ai/directional/south,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"NM" = (
+/obj/structure/closet/crate/bin,
+/obj/machinery/light/directional/south,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"NN" = (
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/obj/structure/table/reinforced,
+/obj/item/stack/package_wrap{
+ pixel_y = 11;
+ pixel_x = -16
+ },
+/obj/item/stack/cable_coil{
+ pixel_y = 4;
+ pixel_x = -10
+ },
+/obj/item/hand_labeler{
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/hand_labeler_refill{
+ pixel_x = 8;
+ pixel_y = 12
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"NO" = (
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"NP" = (
+/obj/machinery/door/airlock/silver{
+ name = "Shower"
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"NR" = (
+/obj/machinery/door/poddoor{
+ id = "thunderdome";
+ name = "Thunderdome Blast Door"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 8
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"NU" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"NW" = (
+/obj/structure/bookcase/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"NY" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"NZ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Oc" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Od" = (
+/obj/structure/cable,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"Of" = (
+/obj/item/clipboard,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Oh" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Oi" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Om" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen/blue,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"On" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/admin)
+"Oq" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"Or" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin/storage)
+"Ot" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Ou" = (
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Ow" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin/storage)
+"Ox" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/fore)
+"Oz" = (
+/obj/machinery/door/airlock/external/ruin,
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"OA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"OB" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"OC" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/plush/lizard_plushie/space/green{
+ name = "Escapes-on-Pods"
+ },
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"OD" = (
+/obj/machinery/microwave{
+ desc = "Cooks and boils stuff, somehow.";
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"OE" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/iron{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/centcom/tdome/observation)
+"OF" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck{
+ pixel_y = 12;
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/cup/glass/mug/tea{
+ pixel_x = 8;
+ pixel_y = 1
+ },
+/obj/item/trash/semki{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"OH" = (
+/obj/machinery/computer/records/security{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"OI" = (
+/obj/item/kirbyplants/organic/plant21,
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"OM" = (
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/papercutter{
+ pixel_y = 6;
+ pixel_x = 2
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"OO" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/machinery/reagentgrinder{
+ desc = "Used to grind things up into raw materials and liquids.";
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = -8
+ },
+/obj/item/knife/kitchen{
+ pixel_x = 11;
+ pixel_y = -12
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"OP" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/one)
+"OQ" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Briefing Room"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"OR" = (
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"OS" = (
+/obj/structure/bookcase/random,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"OV" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"OW" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white/textured,
+/area/centcom/central_command_areas/evacuation/ship)
+"OX" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/effect/landmark/ert_spawn,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"OY" = (
+/obj/item/storage/fancy/donut_box,
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"OZ" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/obj/machinery/light/directional/north,
+/turf/open/misc/asteroid,
+/area/centcom/tdome/observation)
+"Pc" = (
+/obj/structure/fans/tiny,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Pd" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Pe" = (
+/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/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Pg" = (
+/obj/machinery/computer/auxiliary_base/directional/north,
+/obj/structure/table/reinforced,
+/obj/item/clipboard{
+ pixel_y = 4;
+ pixel_x = 2
+ },
+/obj/item/folder/yellow{
+ pixel_y = 7;
+ pixel_x = 5
+ },
+/obj/item/pen/red{
+ pixel_y = 2;
+ pixel_x = 3
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/paper_bin{
+ pixel_x = -15;
+ pixel_y = 7
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"Pk" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Pl" = (
+/obj/machinery/button/flasher/indestructible{
+ id = "tdomeflash"
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"Pm" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/four)
+"Pn" = (
+/obj/item/storage/box/matches{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/obj/machinery/barsign/all_access/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Po" = (
+/obj/machinery/vending/boozeomat,
+/obj/effect/turf_decal/siding/wood{
+ dir = 6
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/evacuation/ship)
+"Pq" = (
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/prison)
+"Pr" = (
+/obj/effect/landmark/thunderdome/admin,
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/tdome/administration)
+"Ps" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin/storage)
+"Pt" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"Pv" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/four)
+"Pw" = (
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 1;
+ height = 5;
+ name = "recovery ship";
+ shuttle_id = "pod_7_away";
+ width = 3
+ },
+/turf/open/space/basic,
+/area/space)
+"Pz" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"PD" = (
+/obj/item/kirbyplants/organic/plant21{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/fore)
+"PE" = (
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/armory)
+"PF" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/admin)
+"PG" = (
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/obj/effect/turf_decal/tile/dark_blue/fourcorners,
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"PH" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/closet/crate/bin,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/ferry)
+"PJ" = (
+/obj/structure/closet/crate/freezer/blood,
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/white/textured,
+/area/centcom/central_command_areas/evacuation/ship)
+"PK" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/one)
+"PL" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/turf/open/misc/asteroid,
+/area/centcom/central_command_areas/evacuation)
+"PM" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/ert_spawn,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"PR" = (
+/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/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"PT" = (
+/obj/effect/turf_decal/tile/red/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"PU" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/records/medical/laptop,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"PV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"PW" = (
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/three)
+"PY" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"PZ" = (
+/obj/structure/flora/tree/palm{
+ icon_state = "palm2"
+ },
+/obj/machinery/light/directional/west,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"Qb" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/restraints/handcuffs,
+/obj/item/assembly/flash/handheld,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Qd" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/cup/glass/drinkingglass{
+ pixel_y = 9;
+ pixel_x = 3
+ },
+/obj/item/paper/pamphlet/violent_video_games{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/evacuation/ship)
+"Qe" = (
+/turf/open/ai_visible,
+/area/centcom/ai_multicam_room)
+"Qf" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Qi" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Qk" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door/indestructible{
+ id = "XCCsec3";
+ name = "CC Main Access Control"
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Qm" = (
+/obj/item/clipboard,
+/obj/item/folder/red,
+/obj/item/stamp/denied{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stamp,
+/obj/structure/table/reinforced,
+/obj/machinery/status_display/ai/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Qo" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"Qp" = (
+/obj/effect/light_emitter/podbay,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/one)
+"Qt" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = 8;
+ pixel_x = 4
+ },
+/obj/item/storage/toolbox/mechanical,
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"Qv" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Qx" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/yellow{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"Qy" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"Qz" = (
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"QB" = (
+/obj/structure/table/reinforced,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/dark{
+ dir = 4
+ },
+/obj/item/paper_bin{
+ pixel_y = 3;
+ pixel_x = -6
+ },
+/obj/item/pen{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clipboard{
+ pixel_x = 5
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"QC" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/tdome/observation)
+"QH" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark,
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"QM" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/three)
+"QO" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"QR" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"QT" = (
+/obj/structure/table/wood,
+/obj/structure/reagent_dispensers/beerkeg,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"QU" = (
+/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/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"QV" = (
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"QX" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"QY" = (
+/obj/item/storage/box/handcuffs,
+/obj/item/ammo_box/a357,
+/obj/item/ammo_box/a357,
+/obj/item/gun/ballistic/revolver/mateba,
+/obj/structure/table/reinforced,
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin/storage)
+"Ra" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"Rb" = (
+/obj/machinery/shower/directional/west,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"Rc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"Rd" = (
+/obj/structure/bookcase/random,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Rf" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Rh" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Ri" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/item/taperecorder,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/newscaster/directional/north,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Rj" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/vault{
+ req_access = list("cent_captain")
+ },
+/obj/machinery/door/poddoor/shutters/indestructible{
+ id = "XCCadminstore"
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin/storage)
+"Rk" = (
+/obj/structure/cable,
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/evacuation/ship)
+"Rl" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"Rn" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/folder/blue,
+/obj/item/melee/chainofcommand,
+/obj/item/stamp/head/captain,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Ro" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/donkpockets{
+ pixel_y = 19;
+ pixel_x = 5
+ },
+/obj/item/storage/fancy/cigarettes/cigars/cohiba{
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"Rp" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"Rq" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 8
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Rs" = (
+/obj/structure/closet/secure_closet/security,
+/obj/item/storage/belt/security/full,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/crowbar/red,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"Rw" = (
+/obj/structure/table/wood,
+/obj/item/clipboard,
+/obj/item/radio/headset/headset_cent,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"Rx" = (
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/icecream_vat,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Ry" = (
+/obj/item/storage/medkit/fire,
+/obj/item/storage/medkit/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/tile/blue/opposingcorners{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/control)
+"RB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"RF" = (
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/obj/item/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"RG" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"RH" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"RI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/central_command_areas/courtroom)
+"RJ" = (
+/obj/effect/decal/cleanable/fuel_pool,
+/turf/open/floor/grass,
+/area/centcom/central_command_areas/evacuation/ship)
+"RL" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/podbay,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"RM" = (
+/obj/machinery/power/apc/auto_name/directional/east,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/armory)
+"RP" = (
+/obj/structure/bookcase/random,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"RQ" = (
+/obj/machinery/camera/directional/north{
+ c_tag = "Green Team";
+ network = list("thunder");
+ pixel_x = 12;
+ pixel_y = -10;
+ resistance_flags = 64
+ },
+/obj/effect/landmark/thunderdome/one,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"RR" = (
+/obj/machinery/light/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"RV" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs,
+/obj/item/radio,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"RW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/paper/pamphlet/centcom/visitor_info,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"RX" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Sd" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/space/nearstation)
+"Se" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"Sg" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/secure,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"Sh" = (
+/obj/structure/table/reinforced,
+/obj/item/mod/control/pre_equipped/corporate{
+ pixel_y = 5
+ },
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/shoes/combat/swat,
+/obj/item/clothing/mask/gas/sechailer/swat,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin/storage)
+"Si" = (
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"Sj" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/siding/dark_blue/corner,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Sk" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/medkit/regular,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Sl" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/tdome/observation)
+"Sm" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"Sp" = (
+/obj/machinery/door/airlock/external/ruin,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Sq" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"Su" = (
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"Sx" = (
+/obj/structure/sign/nanotrasen,
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/admin/storage)
+"Sy" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/floor,
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"Sz" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"SB" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"SC" = (
+/obj/structure/tank_dispenser/oxygen,
+/obj/structure/window/reinforced/survival_pod/spawner/directional/west,
+/turf/open/floor/iron/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"SE" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/light_emitter/podbay,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/three)
+"SG" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"SH" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"SJ" = (
+/obj/machinery/computer/records/security{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"SL" = (
+/obj/structure/reagent_dispensers/wall/peppertank/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/prison)
+"SO" = (
+/obj/machinery/computer/records/security{
+ dir = 8
+ },
+/obj/machinery/status_display/ai/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"SP" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/machinery/status_display/evac/directional/north,
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"SQ" = (
+/obj/structure/filingcabinet/medical,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"SR" = (
+/turf/open/floor/circuit/green,
+/area/centcom/central_command_areas/briefing)
+"SS" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/one)
+"ST" = (
+/obj/machinery/door/poddoor/ert{
+ id = "XCCertstore"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"SX" = (
+/obj/machinery/computer/shuttle,
+/turf/open/floor/iron/dark/herringbone,
+/area/centcom/central_command_areas/evacuation/ship)
+"Tb" = (
+/obj/structure/railing/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Tc" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"Te" = (
+/obj/structure/closet/crate/engineering,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 10
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 10
+ },
+/obj/item/stack/sheet/mineral/plasma/five,
+/turf/open/floor/iron/smooth_edge,
+/area/centcom/central_command_areas/evacuation/ship)
+"Tf" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/barman_recipes,
+/obj/item/reagent_containers/cup/glass/shaker,
+/obj/item/reagent_containers/cup/rag,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Tg" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/secure,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Tj" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/cup/glass/bottle/whiskey{
+ pixel_y = 19;
+ pixel_x = 7
+ },
+/obj/item/cigarette/cigar/havana{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"Tl" = (
+/obj/structure/table/wood,
+/obj/structure/plaque/static_plaque/thunderdome{
+ pixel_y = -32
+ },
+/obj/item/clothing/accessory/medal/gold{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/clothing/accessory/medal/gold,
+/turf/open/floor/iron/grimy,
+/area/centcom/tdome/observation)
+"Tm" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/carpet/red,
+/area/centcom/central_command_areas/evacuation/ship)
+"To" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"Tp" = (
+/obj/structure/table/reinforced,
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/clothing/suit/apron/chef,
+/obj/item/kitchen/rollingpin{
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/condiment/enzyme{
+ pixel_y = 15;
+ pixel_x = -7
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Tq" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"Ts" = (
+/obj/structure/table/reinforced,
+/obj/item/restraints/handcuffs/cable/zipties,
+/obj/item/assembly/flash/handheld,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Tt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"Tv" = (
+/obj/structure/table/wood,
+/obj/structure/window/spawner/directional/south,
+/obj/item/storage/fancy/donut_box,
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/evacuation/ship)
+"Tw" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/obj/machinery/light/floor,
+/turf/open/floor/iron{
+ icon_state = "asteroid5";
+ name = "plating"
+ },
+/area/centcom/central_command_areas/control)
+"Ty" = (
+/obj/structure/table/reinforced,
+/obj/item/camera,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"Tz" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/three)
+"TB" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"TE" = (
+/obj/structure/chair/comfy/brown{
+ color = "#596479";
+ dir = 4
+ },
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/briefing)
+"TG" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"TI" = (
+/obj/structure/table/reinforced,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"TJ" = (
+/turf/cordon,
+/area/misc/start)
+"TK" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/ferry)
+"TL" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"TS" = (
+/obj/structure/table/wood,
+/obj/item/dice/d20{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/dice/d10{
+ pixel_x = -3
+ },
+/obj/machinery/computer/security/telescreen/entertainment/directional/south,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"TT" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/fancy/donut_box{
+ pixel_y = 13
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"TU" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"TV" = (
+/obj/item/storage/fancy/cigarettes/cigars{
+ pixel_y = 6
+ },
+/obj/item/storage/fancy/cigarettes/cigars/cohiba{
+ pixel_y = 3
+ },
+/obj/item/storage/fancy/cigarettes/cigars/havana,
+/obj/structure/table/wood,
+/obj/machinery/status_display/evac/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"TW" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/admin)
+"Ub" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin/storage)
+"Uf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"Uh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/centcom/central_command_areas/admin)
+"Ui" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv,
+/obj/structure/secure_safe{
+ pixel_x = 32;
+ pixel_y = 24
+ },
+/obj/machinery/status_display/ai/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Ul" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/turf/open/misc/asteroid,
+/area/centcom/central_command_areas/fore)
+"Um" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/iron{
+ dir = 6;
+ icon_state = "asteroid8";
+ name = "sand"
+ },
+/area/centcom/tdome/administration)
+"Un" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Ur" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/under/rank/civilian/curator/treasure_hunter,
+/obj/item/clothing/under/dress/skirt,
+/obj/item/clothing/under/shorts/black,
+/obj/item/clothing/under/pants/track,
+/obj/item/clothing/accessory/armband/deputy,
+/obj/item/clothing/accessory/waistcoat,
+/obj/item/clothing/shoes/jackboots,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/neck/large_scarf/red,
+/obj/item/clothing/neck/tie/red,
+/obj/item/clothing/head/helmet/space/beret,
+/obj/item/clothing/suit/jacket/curator,
+/obj/item/clothing/suit/space/officer,
+/obj/item/clothing/gloves/fingerless,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/glasses/eyepatch,
+/obj/machinery/firealarm/directional/west,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"Us" = (
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/obj/effect/light_emitter/thunderdome,
+/turf/open/floor/iron,
+/area/centcom/tdome/arena)
+"Uv" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/cup/bottle/epinephrine{
+ pixel_x = -4
+ },
+/obj/item/reagent_containers/hypospray/medipen,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Uw" = (
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"Ux" = (
+/turf/open/indestructible/dark,
+/area/centcom/central_command_areas/admin)
+"Uz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/iron/dark/smooth_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"UA" = (
+/obj/item/cardboard_cutout{
+ starting_cutout = "Private Security Officer"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"UC" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/west,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"UH" = (
+/obj/machinery/light/directional/west,
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supplypod)
+"UI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/tank/air{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin/storage)
+"UM" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod)
+"UO" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"UR" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"UV" = (
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/lighter,
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/administration)
+"UW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/administration)
+"UX" = (
+/obj/machinery/shower/directional/east,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+"Vc" = (
+/obj/effect/decal/cleanable/vomit/old,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Vd" = (
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white/side{
+ dir = 10
+ },
+/area/centcom/central_command_areas/evacuation)
+"Vf" = (
+/obj/item/kirbyplants/organic/plant21{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/fore)
+"Vg" = (
+/obj/structure/rack,
+/obj/item/gun/energy/e_gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/energy/e_gun,
+/obj/structure/sign/nanotrasen{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"Vh" = (
+/obj/structure/table/reinforced,
+/obj/item/surgery_tray/full{
+ pixel_y = 10;
+ pixel_x = 2
+ },
+/obj/item/storage/box/masks{
+ pixel_x = -6;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron/white,
+/area/centcom/central_command_areas/evacuation/ship)
+"Vi" = (
+/obj/item/book/manual/wiki/security_space_law,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Vk" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/two)
+"Vl" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/flowers_yw/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/pale/style_random,
+/turf/open/misc/asteroid,
+/area/centcom/tdome/administration)
+"Vn" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/three)
+"Vp" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"Vq" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"Vr" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Vs" = (
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Vu" = (
+/obj/structure/closet/secure_closet/ert_med,
+/obj/machinery/vending/wallmed/directional/south{
+ use_power = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"Vv" = (
+/obj/effect/turf_decal/siding/wideplating_new/dark{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/full,
+/obj/machinery/atmospherics/components/unary/vent_pump/on{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark/textured_large,
+/area/centcom/central_command_areas/evacuation/ship)
+"Vw" = (
+/obj/machinery/light/directional/south,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/status_display/evac/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"Vx" = (
+/turf/closed/indestructible/riveted,
+/area/centcom/central_command_areas/fore)
+"Vy" = (
+/obj/machinery/status_display/ai/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"Vz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"VB" = (
+/obj/structure/table/reinforced,
+/obj/item/clipboard,
+/obj/item/folder/white,
+/obj/item/pen/blue,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"VF" = (
+/obj/machinery/computer/crew{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"VG" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/effect/turf_decal/tile/green,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"VK" = (
+/obj/structure/table/wood,
+/obj/item/storage/fancy/donut_box,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"VM" = (
+/obj/structure/closet/secure_closet/ert_sec,
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/status_display/evac/directional/east,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"VO" = (
+/obj/machinery/door/poddoor/ert{
+ id = "XCCertstore"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"VP" = (
+/obj/effect/turf_decal/tile/brown/anticorner/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/four)
+"VT" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/machinery/microwave{
+ desc = "Cooks and boils stuff, somehow.";
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"VY" = (
+/obj/machinery/computer/records/security{
+ dir = 8
+ },
+/obj/machinery/button/door/indestructible{
+ id = "XCCcustoms1";
+ name = "CC Emergency Docks Control";
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"VZ" = (
+/obj/structure/closet/secure_closet/ert_med,
+/obj/structure/sign/directions/medical{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"Wa" = (
+/obj/item/kirbyplants/organic/plant22,
+/obj/structure/noticeboard/directional/south,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"Wc" = (
+/obj/machinery/door/airlock/centcom{
+ name = "CentCom Security"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/admin/general,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation)
+"Wd" = (
+/obj/structure/table/reinforced,
+/obj/item/gun/ballistic/automatic/wt550,
+/obj/item/flashlight/seclite,
+/obj/structure/noticeboard/directional/north,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"Wf" = (
+/obj/structure/sink/directional/west,
+/obj/effect/turf_decal/tile/red/fourcorners,
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"Wl" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/admin)
+"Wn" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/centcom/tdome/administration)
+"Wp" = (
+/obj/item/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/storage/briefcase/secure,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Ws" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/turf_decal/siding/yellow/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supply)
+"Wt" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/four)
+"Wv" = (
+/obj/structure/chair,
+/obj/effect/landmark/thunderdome/observe,
+/obj/machinery/barsign/all_access/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Wy" = (
+/obj/structure/chair/office,
+/obj/effect/landmark/ert_spawn,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"WE" = (
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/evacuation/ship)
+"WF" = (
+/obj/item/storage/box/ids{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/storage/box/silver_ids,
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/wall/peppertank/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"WG" = (
+/obj/structure/closet/secure_closet/ert_engi,
+/obj/structure/sign/directions/engineering{
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/armory)
+"WK" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/green{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"WL" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/centcom/tdome/observation)
+"WN" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/drinkingglasses,
+/obj/item/reagent_containers/cup/glass/bottle/whiskey{
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"WO" = (
+/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/cigarette/cigar/cohiba{
+ pixel_x = 6
+ },
+/obj/item/cigarette/cigar/havana{
+ pixel_x = 2
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 4.5
+ },
+/obj/machinery/newscaster/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"WP" = (
+/obj/machinery/computer/station_alert{
+ dir = 8
+ },
+/obj/item/radio/intercom/syndicate{
+ pixel_x = 28
+ },
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/control)
+"WR" = (
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/briefing)
+"WS" = (
+/obj/machinery/button/door/indestructible{
+ id = "XCCsec3";
+ name = "XCC Shutter 3 Control";
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/supply)
+"WU" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Administrative Office"
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/airlock/access/all/admin/captain,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/admin)
+"WX" = (
+/obj/machinery/light_switch/directional/west,
+/turf/open/floor/iron/grimy,
+/area/centcom/central_command_areas/admin)
+"WY" = (
+/obj/machinery/light/directional/north,
+/obj/structure/table/reinforced,
+/obj/item/crowbar/red,
+/obj/item/wrench,
+/obj/item/clothing/mask/gas,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/ferry)
+"Xa" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/reagent_containers/cup/glass/mug/britcup,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/control)
+"Xb" = (
+/obj/machinery/computer/security{
+ dir = 8
+ },
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"Xc" = (
+/obj/structure/noticeboard/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/courtroom)
+"Xd" = (
+/obj/item/lighter{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/lighter,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/tdome/observation)
+"Xf" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/bush/flowers_pp/style_random,
+/obj/structure/flora/bush/pointy/style_random,
+/turf/open/floor/grass,
+/area/centcom/tdome/observation)
+"Xh" = (
+/turf/open/floor/iron,
+/area/centcom/central_command_areas/supplypod/loading/four)
+"Xj" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation/ship)
+"Xk" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/box/handcuffs,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/centcom/central_command_areas/evacuation)
+"Xl" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/centcom/tdome/observation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Xn" = (
/obj/machinery/computer/security/telescreen,
/obj/structure/table/reinforced,
@@ -10503,6 +15477,7 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/centcom/central_command_areas/supplypod)
+<<<<<<< HEAD
"XV" = (
/obj/structure/table/wood,
/obj/item/clipboard,
@@ -10514,6 +15489,8 @@
/obj/item/stamp,
/turf/open/floor/iron/grimy,
/area/centcom/central_command_areas/admin)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ya" = (
/turf/closed/indestructible/riveted,
/area/centcom/central_command_areas/armory)
@@ -10925,6 +15902,7 @@
/area/centcom/central_command_areas/supply)
(1,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -10939,6 +15917,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gu
aa
aa
@@ -11182,6 +16176,7 @@ aa
aa
"}
(2,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -11197,6 +16192,97 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -11439,6 +16525,7 @@ LV
aa
"}
(3,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -11454,6 +16541,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -11548,6 +16651,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -11680,6 +16784,103 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
LV
@@ -11696,6 +16897,7 @@ LV
aa
"}
(4,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -11711,6 +16913,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -11813,6 +17031,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -11875,6 +17094,8 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+=======
aa
aa
aa
@@ -11895,6 +17116,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -11938,6 +17160,131 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
LV
LW
@@ -11953,6 +17300,7 @@ LV
aa
"}
(5,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -11968,6 +17316,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -12070,6 +17434,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12132,6 +17497,8 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+=======
aa
aa
aa
@@ -12152,6 +17519,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12195,6 +17563,131 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
LV
LW
@@ -12210,6 +17703,7 @@ LV
aa
"}
(6,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -12225,6 +17719,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -12327,6 +17837,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12389,6 +17900,8 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+=======
aa
aa
aa
@@ -12409,6 +17922,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12452,6 +17966,131 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
LV
LW
@@ -12467,6 +18106,7 @@ LV
aa
"}
(7,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -12482,6 +18122,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -12584,6 +18240,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12646,6 +18303,8 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+=======
aa
aa
aa
@@ -12666,6 +18325,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12709,6 +18369,131 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
LV
LW
@@ -12724,6 +18509,7 @@ LV
aa
"}
(8,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -12739,6 +18525,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+rA
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -12841,6 +18643,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12903,6 +18706,8 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+=======
aa
aa
aa
@@ -12923,6 +18728,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -12966,6 +18772,131 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
LV
LW
@@ -12981,6 +18912,7 @@ LV
aa
"}
(9,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -12996,6 +18928,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -13090,6 +19038,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -13222,6 +19171,103 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
LV
@@ -13232,12 +19278,17 @@ zi
ik
ik
ZE
+<<<<<<< HEAD
fy
+=======
+FM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
LW
LV
aa
"}
(10,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -13253,6 +19304,97 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -13495,6 +19637,7 @@ LV
aa
"}
(11,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -13510,6 +19653,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -13628,6 +19787,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -13693,6 +19853,127 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -13752,6 +20033,7 @@ LV
aa
"}
(12,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -13767,6 +20049,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -13885,6 +20183,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -13950,6 +20249,127 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14009,6 +20429,7 @@ LV
aa
"}
(13,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -14024,6 +20445,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -14142,6 +20579,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14207,6 +20645,127 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14266,6 +20825,7 @@ LV
aa
"}
(14,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -14281,6 +20841,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -14399,6 +20975,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14464,6 +21041,127 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14523,6 +21221,7 @@ LV
aa
"}
(15,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -14538,6 +21237,22 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
aa
aa
aa
@@ -14656,6 +21371,7 @@ aa
aa
aa
aa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14721,6 +21437,127 @@ aa
aa
aa
aa
+<<<<<<< HEAD
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -14780,6 +21617,7 @@ LV
aa
"}
(16,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -14795,6 +21633,23 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -15037,6 +21892,7 @@ LV
aa
"}
(17,1,1) = {"
+<<<<<<< HEAD
fX
fX
fX
@@ -15052,6 +21908,23 @@ fX
fX
fX
fX
+=======
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+TJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -45272,7 +52145,11 @@ aa
aa
aa
oe
+<<<<<<< HEAD
Ga
+=======
+ig
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sq
to
ZN
@@ -45532,7 +52409,11 @@ mD
FX
sr
tp
+<<<<<<< HEAD
qM
+=======
+KW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mD
aa
oe
@@ -47077,9 +53958,13 @@ tu
mD
mD
mD
-wu
+ds
xh
+<<<<<<< HEAD
wu
+=======
+ds
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mD
gO
cn
@@ -47343,7 +54228,11 @@ WN
cb
Bu
tb
+<<<<<<< HEAD
aV
+=======
+rr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ho
gO
aa
@@ -47591,9 +54480,15 @@ dx
Hz
dd
mD
+<<<<<<< HEAD
WQ
xh
WQ
+=======
+Kv
+xh
+Kv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mD
WO
eF
@@ -48111,8 +55006,13 @@ fa
mD
PU
eF
+<<<<<<< HEAD
PX
Ke
+=======
+nz
+yR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eV
eF
xU
@@ -49122,7 +56022,11 @@ vo
fP
On
Zw
+<<<<<<< HEAD
XV
+=======
+df
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hd
To
BT
@@ -49945,7 +56849,11 @@ Bp
Sz
Sz
uf
+<<<<<<< HEAD
gh
+=======
+FU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uf
aa
aa
@@ -50661,7 +57569,11 @@ iF
Pg
mH
nm
+<<<<<<< HEAD
rh
+=======
+NN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
On
Ui
JC
@@ -51479,7 +58391,11 @@ BY
QC
bR
HK
+<<<<<<< HEAD
UE
+=======
+zO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
HK
HK
pb
@@ -51960,9 +58876,15 @@ YU
YU
mD
mD
+<<<<<<< HEAD
wu
xh
wu
+=======
+ds
+xh
+ds
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mD
Ya
rY
@@ -52474,9 +59396,15 @@ iu
iu
io
io
+<<<<<<< HEAD
ub
mk
ub
+=======
+uk
+mk
+uk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
io
io
iu
@@ -54306,7 +61234,11 @@ Gb
Ef
NY
NY
+<<<<<<< HEAD
Jj
+=======
+fb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Jq
NY
NY
@@ -55782,6 +62714,7 @@ aa
aa
Jb
ir
+<<<<<<< HEAD
iB
YX
ir
@@ -55798,6 +62731,24 @@ iB
YX
ir
iB
+=======
+IF
+YX
+ir
+IF
+Jb
+ir
+IF
+Jb
+ir
+IF
+Jb
+ir
+IF
+YX
+ir
+IF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Jb
iH
il
@@ -56072,9 +63023,15 @@ Fq
UO
io
io
+<<<<<<< HEAD
yU
mk
yU
+=======
+gY
+mk
+gY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
io
io
iu
@@ -56586,9 +63543,15 @@ io
yj
io
io
+<<<<<<< HEAD
Oj
mk
Oj
+=======
+Im
+mk
+Im
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
io
io
iu
@@ -57133,7 +64096,11 @@ Tf
QC
dj
Mf
+<<<<<<< HEAD
DT
+=======
+RQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Mf
Mf
Zi
@@ -58352,6 +65319,7 @@ aa
aa
Jb
ir
+<<<<<<< HEAD
iB
YX
ir
@@ -58368,6 +65336,24 @@ iB
YX
ir
iB
+=======
+IF
+YX
+ir
+IF
+Jb
+ir
+IF
+Jb
+ir
+IF
+Jb
+ir
+IF
+YX
+ir
+IF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Jb
pc
Hv
@@ -58642,9 +65628,15 @@ cg
cg
cg
cg
+<<<<<<< HEAD
yU
GJ
yU
+=======
+gY
+GJ
+gY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cg
cg
cg
@@ -58683,7 +65675,11 @@ Bp
Sz
Sz
uf
+<<<<<<< HEAD
gh
+=======
+FU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uf
aa
aa
@@ -59156,9 +66152,15 @@ cg
cg
cg
cg
+<<<<<<< HEAD
wJ
GJ
wJ
+=======
+EA
+GJ
+EA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cg
cg
cg
diff --git a/_maps/map_files/tramstation/tramstation.dmm b/_maps/map_files/tramstation/tramstation.dmm
index eb3032f5f44..aeeb1d8566e 100644
--- a/_maps/map_files/tramstation/tramstation.dmm
+++ b/_maps/map_files/tramstation/tramstation.dmm
@@ -5309,6 +5309,19 @@
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"aML" = (
+/obj/machinery/camera/directional/north{
+ network = list("ss13","rd");
+ c_tag = "Science - Monkey Pit"
+ },
+/obj/machinery/light/warm/directional/north,
+/turf/open/misc/dirt/jungle{
+ baseturfs = /turf/open/misc/dirt/station
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aMM" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/portable_atmospherics/scrubber,
@@ -6777,6 +6790,13 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"bpn" = (
+/mob/living/carbon/human/species/monkey,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bpu" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -7160,6 +7180,14 @@
},
/turf/open/space/openspace,
/area/station/solars/starboard/fore)
+<<<<<<< HEAD
+=======
+"bwU" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bxd" = (
/obj/structure/table,
/obj/item/radio/intercom/directional/east{
@@ -8195,6 +8223,18 @@
/obj/machinery/door/firedoor,
/turf/open/floor/wood,
/area/station/command/meeting_room)
+<<<<<<< HEAD
+=======
+"bNG" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/vending/modularpc,
+/obj/structure/table,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bNI" = (
/obj/machinery/airalarm/directional/north,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -8584,6 +8624,14 @@
"bVW" = (
/turf/open/floor/iron/dark,
/area/station/engineering/gravity_generator)
+<<<<<<< HEAD
+=======
+"bWb" = (
+/obj/machinery/suit_storage_unit/hos,
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/turf/open/floor/carpet,
+/area/station/command/heads_quarters/hos)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bWi" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
@@ -8716,6 +8764,23 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/catwalk_floor,
/area/station/maintenance/tram/mid)
+<<<<<<< HEAD
+=======
+"bXv" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 4
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/button/door/directional/east{
+ name = "Privacy Shutters Toggle";
+ pixel_y = -11;
+ id = "greedygrinnersden"
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bXG" = (
/obj/effect/turf_decal/sand/plating,
/obj/machinery/door/airlock/external{
@@ -9697,6 +9762,21 @@
},
/turf/open/floor/wood,
/area/station/service/library)
+<<<<<<< HEAD
+=======
+"coV" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/screwdriver{
+ pixel_x = 2;
+ pixel_y = 11
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron,
+/area/station/commons/storage/primary)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cpl" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/turf/open/floor/iron/white,
@@ -10019,10 +10099,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/cargo/miningdock)
+<<<<<<< HEAD
"cuj" = (
/obj/structure/flora/bush/sunny/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cuM" = (
/obj/structure/table,
/obj/item/radio/intercom/prison/directional/north,
@@ -10138,6 +10221,16 @@
"cwG" = (
/turf/open/floor/iron,
/area/station/cargo/office)
+<<<<<<< HEAD
+=======
+"cwU" = (
+/obj/machinery/door/window/right/directional/north{
+ name = "The Monkey Pit";
+ req_access = list("science")
+ },
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cxc" = (
/obj/structure/chair,
/turf/open/floor/iron/checker,
@@ -12876,6 +12969,23 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
+=======
+"dsw" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 8
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/north,
+/obj/machinery/button/door/directional/north{
+ name = "CMO Privacy Shutters";
+ pixel_y = 38;
+ id = "cmoshutter";
+ req_access = list("cmo")
+ },
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dsF" = (
/turf/open/floor/iron/smooth,
/area/station/command/gateway)
@@ -13958,6 +14068,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/service)
+<<<<<<< HEAD
"dNy" = (
/obj/machinery/computer/communications{
dir = 8
@@ -13969,6 +14080,8 @@
/obj/item/radio/intercom/command/directional/east,
/turf/open/floor/wood,
/area/station/command/heads_quarters/captain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dNB" = (
/obj/effect/turf_decal/trimline/yellow/filled/corner{
dir = 4
@@ -16353,6 +16466,18 @@
},
/turf/open/openspace,
/area/station/asteroid)
+<<<<<<< HEAD
+=======
+"eHj" = (
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 4
+ },
+/obj/structure/sign/clock/directional/east,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/light/directional/east,
+/turf/open/floor/iron/smooth,
+/area/station/commons/storage/primary)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eHr" = (
/obj/effect/turf_decal/trimline/blue/filled/corner,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -18777,6 +18902,13 @@
/obj/item/radio/intercom/directional/west,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
+=======
+"fEM" = (
+/obj/machinery/light/warm/directional/south,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fEQ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
@@ -18904,6 +19036,14 @@
/obj/machinery/light/cold/directional/south,
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"fGK" = (
+/mob/living/carbon/human/species/monkey,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fHg" = (
/obj/structure/chair{
name = "Prosecution";
@@ -19837,6 +19977,7 @@
/obj/machinery/status_display/ai/directional/east,
/turf/open/floor/circuit/green,
/area/station/ai_monitored/turret_protected/ai_upload)
+<<<<<<< HEAD
"fYF" = (
/obj/machinery/door/window/left/directional/north{
name = "The Monkey Pit";
@@ -19844,6 +19985,8 @@
},
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fYW" = (
/obj/structure/grille,
/obj/structure/lattice,
@@ -20463,6 +20606,16 @@
"gkD" = (
/turf/closed/wall/r_wall,
/area/station/science/ordnance/burnchamber)
+<<<<<<< HEAD
+=======
+"gkF" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "The Monkey Pit";
+ req_access = list("science")
+ },
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gkQ" = (
/obj/machinery/computer/atmos_control/mix_tank{
dir = 8
@@ -22063,6 +22216,7 @@
},
/turf/open/floor/circuit,
/area/station/ai_monitored/command/nuke_storage)
+<<<<<<< HEAD
"gOr" = (
/obj/machinery/door/window/right/directional/north{
name = "The Monkey Pit";
@@ -22070,6 +22224,8 @@
},
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gOA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 8
@@ -22494,6 +22650,13 @@
},
/turf/open/floor/iron,
/area/station/security/checkpoint/supply)
+<<<<<<< HEAD
+=======
+"gXo" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gXA" = (
/obj/effect/turf_decal/trimline/blue/filled/corner,
/obj/effect/turf_decal/trimline/blue/filled/corner{
@@ -22980,12 +23143,15 @@
/obj/machinery/coffeemaker,
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
"hhP" = (
/obj/structure/flora/bush/jungle/c/style_random,
/turf/open/misc/dirt/jungle{
baseturfs = /turf/open/misc/dirt/station
},
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hic" = (
/obj/structure/railing{
dir = 4
@@ -23253,10 +23419,13 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
"hlu" = (
/obj/structure/flora/bush/jungle/c/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hlB" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/trimline/neutral/filled/line,
@@ -23382,10 +23551,13 @@
},
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
"hoj" = (
/obj/structure/flora/tree/palm/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hou" = (
/obj/machinery/duct,
/obj/structure/cable,
@@ -25112,6 +25284,28 @@
/obj/machinery/light/directional/north,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"hZq" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig";
+ id_tag = "outerbrigleft"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig_left"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hZr" = (
/turf/closed/wall/r_wall,
/area/station/engineering/atmos)
@@ -25355,12 +25549,15 @@
/obj/machinery/light/directional/east,
/turf/open/floor/noslip/tram,
/area/station/hallway/primary/tram/right)
+<<<<<<< HEAD
"idP" = (
/mob/living/carbon/human/species/monkey,
/turf/open/misc/dirt/jungle{
baseturfs = /turf/open/misc/dirt/station
},
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"idW" = (
/obj/structure/railing/corner,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -25924,11 +26121,14 @@
/obj/effect/turf_decal/sand/plating,
/turf/open/misc/asteroid/airless,
/area/station/asteroid)
+<<<<<<< HEAD
"ipa" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/structure/flora/bush/jungle/c/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ipe" = (
/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{
dir = 8
@@ -25944,11 +26144,14 @@
/obj/effect/turf_decal/tile/brown/fourcorners,
/turf/open/floor/iron,
/area/station/cargo/sorting)
+<<<<<<< HEAD
"ipu" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/flora/bush/fullgrass/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ipC" = (
/obj/effect/turf_decal/stripes/white/line,
/obj/machinery/transport/crossing_signal/northwest,
@@ -27539,12 +27742,15 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/cmo)
+<<<<<<< HEAD
"iTW" = (
/obj/structure/flora/bush/fullgrass/style_random,
/turf/open/misc/dirt/jungle{
baseturfs = /turf/open/misc/dirt/station
},
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iUf" = (
/obj/machinery/door/airlock/grunge{
name = "Morgue"
@@ -31843,11 +32049,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"knU" = (
/turf/open/misc/dirt/jungle{
baseturfs = /turf/open/misc/dirt/station
},
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"koo" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/catwalk_floor,
@@ -32223,6 +32432,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
"ktX" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -32242,6 +32452,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kul" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced/spawner/directional/south,
@@ -32310,6 +32522,7 @@
"kvt" = (
/turf/closed/wall,
/area/station/science/genetics)
+<<<<<<< HEAD
"kvD" = (
/obj/effect/turf_decal/trimline/yellow/filled/line,
/obj/structure/table,
@@ -32322,6 +32535,8 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kvO" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -33000,11 +33215,14 @@
"kHB" = (
/turf/open/floor/grass,
/area/station/medical/virology)
+<<<<<<< HEAD
"kHQ" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/structure/flora/bush/fullgrass/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kHR" = (
/mob/living/basic/parrot/poly,
/obj/structure/filingcabinet/chestdrawer,
@@ -33407,9 +33625,12 @@
"kNT" = (
/turf/open/floor/glass/reinforced/tram,
/area/station/hallway/primary/tram/center)
+<<<<<<< HEAD
"kOc" = (
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kOf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 4
@@ -33547,6 +33768,17 @@
/obj/item/stock_parts/power_store/cell/high,
/turf/open/floor/iron,
/area/station/ai_monitored/command/storage/eva)
+<<<<<<< HEAD
+=======
+"kQR" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/item/food/grown/banana/bunch{
+ pixel_x = 5;
+ pixel_y = 16
+ },
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kQX" = (
/obj/machinery/computer/security{
dir = 1
@@ -33593,6 +33825,12 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood,
/area/station/service/bar/backroom)
+<<<<<<< HEAD
+=======
+"kRR" = (
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kRW" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/trimline/yellow/warning{
@@ -35592,6 +35830,28 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
+=======
+"lAx" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig";
+ id_tag = "outerbrigright"
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig_right"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lAA" = (
/obj/structure/chair/stool/bar/directional/west,
/turf/open/floor/iron,
@@ -36158,6 +36418,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/security/courtroom)
+<<<<<<< HEAD
"lJV" = (
/obj/effect/turf_decal/trimline/brown/filled/line{
dir = 4
@@ -36172,6 +36433,8 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lKc" = (
/obj/structure/table/wood,
/obj/machinery/light/small/dim/directional/west,
@@ -37618,6 +37881,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"mhD" = (
/obj/effect/turf_decal/trimline/yellow/warning{
dir = 4
@@ -37627,6 +37891,8 @@
/obj/machinery/light/directional/east,
/turf/open/floor/iron/smooth,
/area/station/commons/storage/primary)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mhE" = (
/obj/effect/turf_decal/sand/plating,
/obj/machinery/door/airlock/external{
@@ -37874,6 +38140,13 @@
},
/turf/open/floor/glass,
/area/station/command/meeting_room)
+<<<<<<< HEAD
+=======
+"mmy" = (
+/obj/structure/flora/bush/jungle/c/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mmH" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible,
@@ -38294,6 +38567,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/break_room)
+<<<<<<< HEAD
"mwa" = (
/obj/structure/table/reinforced,
/obj/machinery/keycard_auth/wall_mounted/directional/south,
@@ -38306,6 +38580,8 @@
/obj/item/paper/monitorkey,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mwd" = (
/obj/effect/turf_decal/siding/thinplating{
dir = 8
@@ -40556,11 +40832,14 @@
/obj/machinery/barsign/directional/south,
/turf/open/floor/iron/checker,
/area/station/commons/lounge)
+<<<<<<< HEAD
"nmj" = (
/mob/living/carbon/human/species/monkey,
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nmk" = (
/obj/structure/toilet{
pixel_y = 8
@@ -41333,6 +41612,15 @@
/obj/structure/cable/layer1,
/turf/open/floor/plating/airless,
/area/station/solars/port)
+<<<<<<< HEAD
+=======
+"nzO" = (
+/mob/living/carbon/human/species/monkey,
+/turf/open/misc/dirt/jungle{
+ baseturfs = /turf/open/misc/dirt/station
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nzR" = (
/turf/open/floor/engine/vacuum,
/area/station/science/ordnance/burnchamber)
@@ -41993,6 +42281,13 @@
/obj/item/radio/intercom/directional/north,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"nNh" = (
+/obj/structure/flora/bush/sunny/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nNi" = (
/obj/structure/table/wood,
/obj/structure/window/reinforced/spawner/directional/north{
@@ -42218,6 +42513,14 @@
},
/turf/open/floor/tram,
/area/station/hallway/primary/tram/right)
+<<<<<<< HEAD
+=======
+"nRd" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nRw" = (
/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{
dir = 10
@@ -42995,6 +43298,56 @@
/obj/effect/landmark/start/hangover,
/turf/open/floor/iron/dark,
/area/station/maintenance/radshelter/civil)
+<<<<<<< HEAD
+=======
+"ofA" = (
+/obj/structure/chair/office,
+/obj/machinery/button/door/directional/south{
+ name = "Privacy Shutters Control";
+ pixel_x = 24;
+ pixel_y = -1;
+ id = "hop";
+ req_access = list("kitchen")
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Arrival Checkpoint Enforcement Procedure";
+ pixel_x = 35;
+ pixel_y = -10;
+ id = "papersplease";
+ req_access = list("kitchen")
+ },
+/obj/machinery/button/ticket_machine{
+ pixel_x = 24;
+ pixel_y = -10
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Queue Shutters Entry Control";
+ pixel_x = 24;
+ pixel_y = 8;
+ id = "hopqueuestart";
+ req_access = list("kitchen")
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_x = 26
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Queue Shutters Upper Exit Control";
+ pixel_x = 35;
+ pixel_y = 8;
+ id = "hopqueueend";
+ req_access = list("kitchen")
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Queue Shutters Lower Exit Control";
+ pixel_x = 35;
+ pixel_y = -1;
+ id = "hopqueueendbottom";
+ req_access = list("kitchen")
+ },
+/obj/effect/landmark/start/head_of_personnel,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ofT" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 4
@@ -43015,6 +43368,7 @@
},
/turf/open/floor/iron,
/area/station/science/robotics/mechbay)
+<<<<<<< HEAD
"ogb" = (
/obj/machinery/modular_computer/preset/id{
dir = 8
@@ -43033,6 +43387,8 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ogt" = (
/obj/structure/table/reinforced,
/obj/item/clothing/ears/earmuffs{
@@ -43367,10 +43723,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit)
+<<<<<<< HEAD
"omj" = (
/obj/machinery/light/warm/directional/south,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"omm" = (
/turf/closed/wall,
/area/station/maintenance/department/security)
@@ -44421,8 +44780,13 @@
/turf/closed/wall/r_wall,
/area/station/engineering/supermatter)
"oMh" = (
+<<<<<<< HEAD
/obj/structure/secure_safe/directional/east,
/obj/machinery/airalarm/directional/north,
+=======
+/obj/machinery/airalarm/directional/north,
+/obj/structure/detectiveboard/directional/east,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/carpet,
/area/station/security/detectives_office)
"oMz" = (
@@ -44667,6 +45031,13 @@
/obj/machinery/light/dim/directional/east,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/nuke_storage)
+<<<<<<< HEAD
+=======
+"oQU" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oQW" = (
/obj/effect/turf_decal/siding/thinplating{
dir = 8
@@ -45463,6 +45834,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/cargo/drone_bay)
+<<<<<<< HEAD
"pge" = (
/obj/structure/chair/office,
/obj/machinery/button/door/directional/south{
@@ -45510,6 +45882,8 @@
/obj/effect/landmark/start/head_of_personnel,
/turf/open/floor/wood,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pgm" = (
/obj/effect/turf_decal/trimline/neutral/filled/corner{
dir = 8
@@ -46638,12 +47012,15 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/testlab)
+<<<<<<< HEAD
"pyI" = (
/obj/machinery/smartfridge/drying,
/turf/open/floor/iron/white/side{
dir = 8
},
/area/station/service/kitchen)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pyQ" = (
/obj/machinery/vending/wardrobe/hydro_wardrobe,
/obj/effect/turf_decal/trimline/green/filled/line{
@@ -47379,6 +47756,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/service/chapel)
+<<<<<<< HEAD
"pLg" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 4
@@ -47402,6 +47780,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pLs" = (
/obj/structure/transport/linear/tram,
/obj/structure/tram/split,
@@ -47811,6 +48191,15 @@
"pSV" = (
/turf/closed/wall,
/area/station/security/checkpoint/escape)
+<<<<<<< HEAD
+=======
+"pTj" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/misc/dirt/jungle{
+ baseturfs = /turf/open/misc/dirt/station
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pTl" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/disposalpipe/segment{
@@ -47970,6 +48359,10 @@
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 4
},
+<<<<<<< HEAD
+=======
+/obj/machinery/vending/cytopro,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
"pWC" = (
@@ -48381,6 +48774,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"qdq" = (
/obj/structure/flora/bush/lavendergrass/style_random,
/obj/item/food/grown/banana/bunch{
@@ -48389,6 +48783,8 @@
},
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qdy" = (
/obj/structure/cable,
/turf/open/floor/iron,
@@ -50274,6 +50670,21 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/science/server)
+<<<<<<< HEAD
+=======
+"qKW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/keycard_auth/wall_mounted/directional/south,
+/obj/item/rcl/pre_loaded,
+/obj/machinery/computer/security/telescreen/ce/directional/west,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/item/clipboard,
+/obj/item/paper/monitorkey,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qLD" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -50553,10 +50964,13 @@
/obj/item/paper_bin,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
"qQi" = (
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qQq" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
@@ -52245,11 +52659,14 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
"rus" = (
/obj/machinery/suit_storage_unit/hos,
/obj/machinery/keycard_auth/wall_mounted/directional/east,
/turf/open/floor/carpet,
/area/station/command/heads_quarters/hos)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ruy" = (
/obj/effect/turf_decal/trimline/red/filled/line{
dir = 8
@@ -53601,6 +54018,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/white,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"rUd" = (
/obj/machinery/door/airlock/security/glass{
name = "Brig";
@@ -53620,6 +54038,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rUe" = (
/obj/machinery/holopad,
/obj/structure/cable,
@@ -53648,6 +54068,7 @@
/obj/machinery/light/directional/south,
/turf/open/floor/iron,
/area/station/science/explab)
+<<<<<<< HEAD
"rUE" = (
/obj/structure/flora/bush/fullgrass/style_random,
/obj/effect/landmark/event_spawn,
@@ -53655,6 +54076,8 @@
baseturfs = /turf/open/misc/dirt/station
},
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rUQ" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/grass,
@@ -54238,6 +54661,7 @@
/obj/machinery/atmospherics/pipe/smart/simple/green/visible,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"sgP" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 1
@@ -54247,6 +54671,8 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron,
/area/station/commons/storage/primary)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sgT" = (
/obj/machinery/firealarm/directional/south,
/obj/effect/turf_decal/trimline/red/filled/line{
@@ -55695,6 +56121,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/carpet,
/area/station/cargo/miningdock)
+<<<<<<< HEAD
+=======
+"sGF" = (
+/turf/open/misc/dirt/jungle{
+ baseturfs = /turf/open/misc/dirt/station
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sGG" = (
/obj/effect/turf_decal/trimline/neutral/filled/corner{
dir = 4
@@ -55921,6 +56355,15 @@
/obj/effect/turf_decal/tile/red,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"sKD" = (
+/obj/machinery/smartfridge/drying,
+/turf/open/floor/iron/white/side{
+ dir = 8
+ },
+/area/station/service/kitchen)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sKN" = (
/obj/effect/turf_decal/trimline/neutral/filled/corner{
dir = 4
@@ -56262,6 +56705,7 @@
/obj/structure/cable/multilayer/multiz,
/turf/open/floor/plating,
/area/station/ai_monitored/turret_protected/aisat/maint)
+<<<<<<< HEAD
"sQD" = (
/obj/machinery/camera/directional/north{
network = list("ss13","rd");
@@ -56272,6 +56716,8 @@
baseturfs = /turf/open/misc/dirt/station
},
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sQJ" = (
/obj/effect/turf_decal/trimline/blue/filled/corner{
dir = 4
@@ -56613,6 +57059,20 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"sWY" = (
+/obj/machinery/computer/communications{
+ dir = 8
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/north{
+ pixel_x = 26
+ },
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/radio/intercom/command/directional/east,
+/turf/open/floor/wood,
+/area/station/command/heads_quarters/captain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sXa" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -56817,6 +57277,32 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/station/cargo/miningdock/cafeteria)
+<<<<<<< HEAD
+=======
+"taL" = (
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig";
+ id_tag = "outerbrigright"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig_right"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/effect/landmark/navigate_destination/sec,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"taP" = (
/obj/structure/lattice,
/turf/open/openspace,
@@ -56974,6 +57460,15 @@
},
/turf/open/floor/iron/cafeteria,
/area/station/commons/dorms/laundry)
+<<<<<<< HEAD
+=======
+"tdY" = (
+/obj/structure/flora/bush/jungle/c/style_random,
+/turf/open/misc/dirt/jungle{
+ baseturfs = /turf/open/misc/dirt/station
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tdZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/public/glass{
@@ -59849,6 +60344,10 @@
pixel_x = -23;
pixel_y = 8
},
+<<<<<<< HEAD
+=======
+/obj/structure/secure_safe/directional/south,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron/grimy,
/area/station/security/detectives_office)
"udZ" = (
@@ -62549,6 +63048,14 @@
/obj/effect/turf_decal/sand/plating,
/turf/open/floor/plating/airless,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"uVa" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/flora/bush/jungle/c/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uVb" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
@@ -63019,12 +63526,15 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/primary/tram/center)
+<<<<<<< HEAD
"vcV" = (
/obj/structure/window/reinforced/spawner/directional/west,
/obj/structure/flora/tree/palm/style_random,
/obj/structure/flora/coconuts,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vde" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -64505,6 +65015,13 @@
"vCS" = (
/turf/closed/mineral/random/stationside/asteroid/porus,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"vCY" = (
+/obj/structure/flora/tree/palm/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vCZ" = (
/turf/closed/wall,
/area/station/service/chapel/monastery)
@@ -64539,6 +65056,16 @@
/obj/machinery/light/small/dim/directional/south,
/turf/open/floor/catwalk_floor,
/area/station/maintenance/tram/mid)
+<<<<<<< HEAD
+=======
+"vDg" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/effect/landmark/event_spawn,
+/turf/open/misc/dirt/jungle{
+ baseturfs = /turf/open/misc/dirt/station
+ },
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vDu" = (
/obj/machinery/computer/robotics{
dir = 1
@@ -64584,6 +65111,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/catwalk_floor,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
+=======
+"vEl" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vEq" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
@@ -64813,6 +65347,29 @@
},
/turf/open/floor/iron,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"vHT" = (
+/obj/machinery/door/airlock/security/glass{
+ name = "Brig";
+ id_tag = "outerbrigleft"
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/red/filled/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "brig_left"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/mapping_helpers/airlock/access/all/security/entrance,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/scanner_gate/preset_guns,
+/turf/open/floor/iron,
+/area/station/security/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vIa" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/trimline/yellow/filled/line{
@@ -66144,6 +66701,7 @@
/obj/effect/turf_decal/trimline/white/warning,
/turf/open/floor/iron,
/area/station/maintenance/tram/right)
+<<<<<<< HEAD
"wiI" = (
/obj/machinery/door/airlock/security/glass{
name = "Brig";
@@ -66164,6 +66722,8 @@
/obj/machinery/scanner_gate/preset_guns,
/turf/open/floor/iron,
/area/station/security/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wiU" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -66690,6 +67250,15 @@
},
/turf/open/floor/iron,
/area/station/security/processing)
+<<<<<<< HEAD
+=======
+"wtR" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/structure/flora/tree/palm/style_random,
+/obj/structure/flora/coconuts,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wtS" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 4
@@ -67900,10 +68469,13 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/tram/center)
+<<<<<<< HEAD
"wQf" = (
/obj/structure/flora/bush/jungle/b/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wQm" = (
/turf/open/floor/iron,
/area/station/engineering/atmos)
@@ -67995,6 +68567,13 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/carpet,
/area/station/commons/dorms)
+<<<<<<< HEAD
+=======
+"wSp" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/turf/open/misc/grass/jungle/station,
+/area/station/science/explab)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wSx" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -68650,10 +69229,13 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"xgT" = (
/obj/structure/flora/bush/fullgrass/style_random,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xgZ" = (
/obj/structure/table/reinforced,
/obj/machinery/light/cold/directional/west,
@@ -68681,10 +69263,13 @@
"xhX" = (
/turf/open/misc/asteroid,
/area/station/maintenance/starboard/lesser)
+<<<<<<< HEAD
"xic" = (
/mob/living/carbon/human/species/monkey,
/turf/open/misc/grass/jungle/station,
/area/station/science/explab)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xir" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/trimline/neutral/filled/line{
@@ -103117,7 +103702,11 @@ kHR
tga
rnf
xBD
+<<<<<<< HEAD
mwa
+=======
+qKW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sHH
sHH
sHH
@@ -106133,7 +106722,11 @@ aaa
aaa
aaa
sNs
+<<<<<<< HEAD
sgP
+=======
+bNG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eJZ
bNm
ruo
@@ -106141,7 +106734,11 @@ pCM
kzx
oSl
ive
+<<<<<<< HEAD
kvD
+=======
+coV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alg
aes
khE
@@ -106908,7 +107505,11 @@ sNs
sNs
eaZ
pFw
+<<<<<<< HEAD
mhD
+=======
+eHj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wXB
gms
sNs
@@ -119805,12 +120406,21 @@ aaa
aaa
sQZ
mtI
+<<<<<<< HEAD
nmj
kHQ
qQi
vcV
ipa
ogn
+=======
+fGK
+bwU
+vEl
+wtR
+uVa
+oQU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ojU
gzw
gzw
@@ -120061,6 +120671,7 @@ aaa
aaa
aaa
sQZ
+<<<<<<< HEAD
wQf
cuj
xgT
@@ -120070,6 +120681,17 @@ knU
fYF
kOc
cuj
+=======
+wSp
+nNh
+gXo
+sGF
+gXo
+sGF
+gkF
+kRR
+nNh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gzw
gGi
xBC
@@ -120318,6 +120940,7 @@ aaa
aaa
aaa
sQZ
+<<<<<<< HEAD
kOc
hoj
qdq
@@ -120327,6 +120950,17 @@ wQf
gOr
kOc
xgT
+=======
+kRR
+vCY
+kQR
+bpn
+kRR
+wSp
+cwU
+kRR
+gXo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gzw
dNH
lrt
@@ -120576,12 +121210,21 @@ aaa
oyR
sQZ
sQZ
+<<<<<<< HEAD
sQD
kOc
hlu
cuj
hoj
ipu
+=======
+aML
+kRR
+mmy
+nNh
+vCY
+nRd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ojU
gzw
gzw
@@ -120832,12 +121475,21 @@ aaa
aaa
oyR
vUz
+<<<<<<< HEAD
hhP
iTW
kOc
rUE
pQx
omj
+=======
+tdY
+pTj
+kRR
+vDg
+pQx
+fEM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sQZ
sQZ
gzw
@@ -121090,9 +121742,15 @@ aaa
oyR
pQx
vUz
+<<<<<<< HEAD
idP
iTW
iTW
+=======
+nzO
+pTj
+pTj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hgN
mRD
asu
@@ -152940,7 +153598,11 @@ vBn
tRV
sik
iOm
+<<<<<<< HEAD
pge
+=======
+ofA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lcS
vhG
jSd
@@ -153432,7 +154094,11 @@ jGL
jed
oIz
gnW
+<<<<<<< HEAD
wiI
+=======
+vHT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mcD
pDy
tWn
@@ -153946,7 +154612,11 @@ iUE
rxE
jyR
lMR
+<<<<<<< HEAD
ktX
+=======
+hZq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pqd
kdV
acr
@@ -157030,7 +157700,11 @@ fph
sHw
kil
axp
+<<<<<<< HEAD
rUd
+=======
+lAx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
njR
joB
lTV
@@ -157544,7 +158218,11 @@ aBN
sDO
jFh
msW
+<<<<<<< HEAD
pLg
+=======
+taL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nSV
aPk
sGG
@@ -158033,7 +158711,11 @@ aaa
aaa
rmB
pxf
+<<<<<<< HEAD
rus
+=======
+bWb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
toY
wpM
auP
@@ -159352,7 +160034,11 @@ ltw
tKH
tgh
ltw
+<<<<<<< HEAD
dNy
+=======
+sWY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hhJ
wKk
phl
@@ -166851,7 +167537,11 @@ lBQ
apC
kZC
mBq
+<<<<<<< HEAD
ogb
+=======
+dsw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aOJ
aPm
wWa
@@ -170395,7 +171085,11 @@ eSx
llj
whs
fEG
+<<<<<<< HEAD
pyI
+=======
+sKD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mkl
fxS
eSx
@@ -181455,7 +182149,11 @@ ufh
tEF
qza
aIU
+<<<<<<< HEAD
lJV
+=======
+bXv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kOl
jAU
psU
diff --git a/_maps/map_files/wawastation/wawastation.dmm b/_maps/map_files/wawastation/wawastation.dmm
index afb613a9e91..760880ab79e 100644
--- a/_maps/map_files/wawastation/wawastation.dmm
+++ b/_maps/map_files/wawastation/wawastation.dmm
@@ -130,6 +130,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
"abH" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/effect/turf_decal/siding/wood{
@@ -149,6 +150,8 @@
},
/turf/open/floor/wood,
/area/station/service/cafeteria)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"abK" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
@@ -359,6 +362,18 @@
},
/turf/open/floor/iron/white,
/area/station/security/checkpoint/medical)
+<<<<<<< HEAD
+=======
+"aeJ" = (
+/obj/structure/table/reinforced,
+/obj/item/phone,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"afe" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -615,6 +630,7 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/catwalk_floor/iron_white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"ajy" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -626,6 +642,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
/turf/open/floor/catwalk_floor/iron_white,
/area/station/medical/treatment_center)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ajK" = (
/obj/machinery/door/firedoor,
/obj/effect/landmark/navigate_destination/bar,
@@ -892,6 +910,19 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"anX" = (
+/mob/living/basic/parrot/poly,
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 9
+ },
+/obj/item/paper/monitorkey,
+/obj/machinery/camera/autoname/directional/west,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"anZ" = (
/obj/effect/landmark/start/hangover,
/obj/effect/turf_decal/siding/wood{
@@ -1250,6 +1281,42 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/security/prison)
+<<<<<<< HEAD
+=======
+"ava" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/button/door{
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ id = "secentrylock2";
+ req_access = list("security");
+ name = "Security Exit Lock";
+ pixel_x = -7
+ },
+/obj/machinery/button/door{
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ id = "secentrylock";
+ pixel_y = 7;
+ req_access = list("security");
+ name = "Security Entrance Lock";
+ pixel_x = -7
+ },
+/obj/machinery/button/flasher{
+ pixel_x = 2;
+ id = "secentry"
+ },
+/obj/machinery/button/door{
+ pixel_x = 2;
+ pixel_y = 7;
+ name = "Security Entrance Doors";
+ id = "secentrylock";
+ normaldoorcontrol = 1
+ },
+/turf/open/floor/iron,
+/area/station/security/brig/entrance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"avu" = (
/obj/effect/turf_decal/siding/white/corner{
dir = 8
@@ -1445,6 +1512,7 @@
/obj/item/radio/intercom/directional/east,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"axP" = (
/obj/structure/sign/warning/vacuum/directional/east,
/obj/effect/turf_decal/stripes/line{
@@ -1454,6 +1522,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/hallway/secondary/exit/departure_lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"axQ" = (
/obj/effect/turf_decal/stripes,
/obj/machinery/atmospherics/components/binary/valve/digital/on{
@@ -1467,6 +1537,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/department/science)
+<<<<<<< HEAD
"ayb" = (
/obj/effect/turf_decal/stripes,
/obj/effect/turf_decal/stripes{
@@ -1475,6 +1546,8 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ayf" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
/turf/open/floor/iron,
@@ -1657,6 +1730,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"aAK" = (
/obj/effect/landmark/start/cyborg,
/obj/structure/window/reinforced/spawner/directional/east,
@@ -1664,6 +1738,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/recharge_floor,
/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aBb" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 1
@@ -2032,6 +2108,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"aHq" = (
/obj/machinery/modular_computer/preset/id{
dir = 1
@@ -2050,6 +2127,8 @@
/obj/effect/mapping_helpers/requests_console/announcement,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aHs" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/effect/spawner/random/vending/snackvend,
@@ -2258,6 +2337,25 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
+=======
+"aKJ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering/directional/east{
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/security/directional/east{
+ pixel_y = 8;
+ dir = 1
+ },
+/obj/structure/sign/directions/supply/directional/east{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aKP" = (
/obj/structure/cable,
/turf/open/floor/iron/half,
@@ -2750,6 +2848,7 @@
/obj/machinery/light_switch/directional/east,
/turf/open/floor/iron/textured,
/area/station/science/lobby)
+<<<<<<< HEAD
"aTW" = (
/obj/machinery/fax{
fax_name = "Chief Engineer's Office";
@@ -2763,6 +2862,8 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aUf" = (
/turf/closed/wall/r_wall/rust,
/area/station/medical/chemistry/minisat)
@@ -2771,11 +2872,14 @@
/obj/effect/spawner/random/decoration/paint,
/turf/open/floor/wood/parquet,
/area/station/cargo/boutique)
+<<<<<<< HEAD
"aUm" = (
/obj/effect/spawner/random/maintenance,
/obj/structure/closet,
/turf/open/floor/iron/dark,
/area/station/maintenance/department/engine)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aUo" = (
/obj/structure/chair/sofa/bench/right{
dir = 4
@@ -3020,6 +3124,7 @@
},
/turf/open/floor/iron,
/area/station/service/hydroponics)
+<<<<<<< HEAD
"bao" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
@@ -3031,6 +3136,8 @@
},
/turf/open/floor/carpet/executive,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bay" = (
/obj/effect/spawner/random/vending/colavend,
/obj/effect/turf_decal/trimline/blue/filled/line{
@@ -3081,6 +3188,29 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/engine,
/area/station/science/auxlab/firing_range)
+<<<<<<< HEAD
+=======
+"bbf" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "hopdesk"
+ },
+/obj/effect/landmark/navigate_destination/hop,
+/obj/machinery/door/firedoor,
+/obj/item/paper_bin,
+/obj/item/pen,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/window/brigdoor/left/directional/west{
+ req_access = list("hop")
+ },
+/obj/machinery/door/window/left/directional/east,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bbh" = (
/obj/structure/extinguisher_cabinet/directional/west,
/obj/machinery/disposal/bin,
@@ -3215,11 +3345,14 @@
/obj/effect/spawner/random/techstorage/rnd_secure_all,
/turf/open/floor/circuit,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
"bdY" = (
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/department/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bef" = (
/obj/structure/railing/corner{
dir = 8
@@ -3278,6 +3411,22 @@
},
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+<<<<<<< HEAD
+=======
+"beS" = (
+/obj/machinery/button/elevator/directional/east{
+ id = "cargo"
+ },
+/obj/machinery/lift_indicator/directional/east{
+ linked_elevator_id = "cargo"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/rnd/production/techfab/department/cargo,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"beW" = (
/turf/open/floor/engine/o2,
/area/station/engineering/atmos)
@@ -3461,6 +3610,16 @@
/obj/machinery/telecomms/broadcaster/preset_left,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/station/tcommsat/server)
+<<<<<<< HEAD
+=======
+"biG" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"biS" = (
/turf/closed/wall/r_wall/rust,
/area/station/ai_monitored/turret_protected/ai_upload)
@@ -5116,6 +5275,7 @@
},
/turf/open/floor/plating,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
"bPo" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 8
@@ -5125,6 +5285,14 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+=======
+"bPc" = (
+/obj/effect/turf_decal/box/corners{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bPu" = (
/obj/effect/decal/cleanable/rubble,
/obj/effect/turf_decal/stripes/line{
@@ -5178,6 +5346,16 @@
/obj/item/cigbutt/cigarbutt,
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
+=======
+"bQc" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/stairs/left{
+ dir = 1
+ },
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bQf" = (
/obj/machinery/door/poddoor/shutters{
id = "aux_base_shutters";
@@ -5444,6 +5622,26 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
+=======
+"bVA" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/sign/directions/evac/directional/east{
+ dir = 8
+ },
+/obj/structure/sign/directions/science/directional/east{
+ pixel_y = -8;
+ dir = 1
+ },
+/obj/structure/sign/directions/medical/directional/east{
+ pixel_y = 8;
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bVY" = (
/obj/machinery/holopad{
pixel_x = 1
@@ -5832,6 +6030,24 @@
/obj/machinery/duct,
/turf/open/floor/plating,
/area/station/science/cytology)
+<<<<<<< HEAD
+=======
+"cdo" = (
+/obj/machinery/elevator_control_panel/directional/south{
+ linked_elevator_id = "aisat";
+ pixel_x = 8;
+ pixel_y = -34
+ },
+/obj/machinery/lift_indicator/directional/south{
+ pixel_x = -6;
+ pixel_y = -40;
+ linked_elevator_id = "aisat"
+ },
+/obj/machinery/light/small/dim/directional/north,
+/obj/structure/cable/layer3,
+/turf/open/floor/iron/dark/telecomms,
+/area/station/tcommsat/server)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cdI" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -6103,6 +6319,7 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron,
/area/station/security)
+<<<<<<< HEAD
"ciC" = (
/obj/machinery/turretid{
control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
@@ -6114,6 +6331,8 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/uppernorth)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ciE" = (
/obj/effect/turf_decal/trimline/yellow/filled/line,
/obj/structure/cable,
@@ -6160,6 +6379,7 @@
/obj/effect/spawner/random/structure/grille,
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"cjG" = (
/obj/machinery/atmospherics/components/tank/air/layer4,
/obj/effect/turf_decal/tile/green/half/contrasted{
@@ -6167,6 +6387,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cjV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
/obj/effect/turf_decal/delivery,
@@ -6322,6 +6544,7 @@
/obj/effect/mapping_helpers/requests_console/ore_update,
/turf/open/floor/iron/dark,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"cnA" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
/obj/structure/cable,
@@ -6330,6 +6553,8 @@
/obj/structure/cable/layer1,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cnS" = (
/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{
dir = 8
@@ -6372,12 +6597,15 @@
/obj/machinery/door/firedoor,
/turf/open/floor/engine,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"coD" = (
/obj/structure/chair/stool/directional/east{
name = "Quartermaster"
},
/turf/open/floor/carpet/executive,
/area/station/command/meeting_room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"coQ" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -6411,12 +6639,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/security/office)
+<<<<<<< HEAD
"cpR" = (
/obj/structure/table/reinforced,
/obj/item/modular_computer/laptop/preset/civilian,
/obj/structure/cable,
/turf/open/floor/carpet/executive,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cpZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 8
@@ -6485,6 +6716,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
+<<<<<<< HEAD
"crm" = (
/obj/machinery/turretid{
control_area = "/area/station/ai_monitored/turret_protected/ai_upload";
@@ -6501,6 +6733,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cro" = (
/obj/structure/girder/reinforced,
/obj/structure/grille,
@@ -6762,6 +6996,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/security/prison/mess)
+<<<<<<< HEAD
"cwi" = (
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
dir = 4
@@ -6770,6 +7005,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/holofloor/dark,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cwk" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -6986,6 +7223,21 @@
},
/turf/open/floor/plating/airless,
/area/station/science/ordnance/bomb)
+<<<<<<< HEAD
+=======
+"cAG" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/camera/autoname/directional/west{
+ network = list("ss13","rd")
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cAQ" = (
/obj/vehicle/sealed/mecha/ripley/cargo,
/obj/effect/decal/cleanable/dirt,
@@ -7339,6 +7591,14 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"cIa" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/maintenance/department/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cIh" = (
/obj/structure/cable,
/obj/effect/mapping_helpers/broken_floor,
@@ -7378,6 +7638,7 @@
/obj/machinery/light_switch/directional/south,
/turf/open/floor/iron/textured,
/area/station/security/processing)
+<<<<<<< HEAD
"cJb" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/green/half/contrasted{
@@ -7397,6 +7658,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cJh" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/structure/cable,
@@ -7471,12 +7734,15 @@
/mob/living/basic/mining/basilisk,
/turf/open/misc/asteroid/airless,
/area/space/nearstation)
+<<<<<<< HEAD
"cKS" = (
/obj/structure/table,
/obj/item/ai_module/core/full/dungeon_master,
/obj/structure/cable,
/turf/open/floor/circuit,
/area/station/ai_monitored/turret_protected/ai_upload)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cLd" = (
/obj/machinery/oven/range,
/obj/machinery/light/directional/north,
@@ -7607,6 +7873,28 @@
dir = 4
},
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"cNk" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/door_buttons/airlock_controller{
+ idExterior = "virology_airlock_exterior";
+ idInterior = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = -26;
+ pixel_y = 28;
+ req_access = list("virology")
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cNr" = (
/obj/structure/sink/directional/south,
/obj/structure/mirror/directional/north{
@@ -7636,6 +7924,7 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+<<<<<<< HEAD
"cNW" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -7652,6 +7941,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cNX" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/siding/wood{
@@ -7907,6 +8198,15 @@
},
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"cSa" = (
+/obj/machinery/power/smes/full,
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/structure/cable,
+/turf/open/floor/circuit/green/telecomms/mainframe,
+/area/station/tcommsat/server)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cSb" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -7933,6 +8233,16 @@
},
/turf/open/floor/wood,
/area/station/service/theater)
+<<<<<<< HEAD
+=======
+"cSC" = (
+/obj/machinery/pdapainter/engineering,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cSJ" = (
/obj/structure/table,
/obj/effect/spawner/random/food_or_drink/snack,
@@ -7951,10 +8261,26 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/kitchen,
/area/station/service/kitchen)
+<<<<<<< HEAD
+=======
+"cTc" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "hopdesk"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cTm" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating/airless,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"cTu" = (
/obj/machinery/button/elevator/directional/east{
id = "cargo"
@@ -7968,6 +8294,8 @@
/obj/machinery/rnd/production/techfab/department/cargo,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cTH" = (
/obj/structure/table/wood,
/obj/item/storage/box/evidence,
@@ -8017,6 +8345,16 @@
/obj/machinery/light/directional/east,
/turf/open/floor/iron/white,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"cUD" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/structure/sign/warning/engine_safety/directional/north,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cUN" = (
/obj/machinery/computer/libraryconsole/bookmanagement{
dir = 1
@@ -8056,6 +8394,18 @@
/obj/effect/spawner/random/structure/chair_flipped,
/turf/open/floor/iron,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
+=======
+"cVn" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cVs" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Xenobiology Maintenance"
@@ -8140,6 +8490,7 @@
dir = 1
},
/area/station/science/xenobiology)
+<<<<<<< HEAD
"cWW" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -8148,6 +8499,8 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cWX" = (
/obj/effect/turf_decal/arrows,
/obj/machinery/firealarm/directional/west,
@@ -8204,6 +8557,20 @@
},
/turf/open/floor/iron/dark,
/area/station/service/chapel/funeral)
+<<<<<<< HEAD
+=======
+"cXy" = (
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/machinery/light/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer1,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cXL" = (
/obj/machinery/duct,
/obj/structure/cable,
@@ -8235,6 +8602,17 @@
/obj/machinery/light/directional/south,
/turf/open/openspace,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"cYB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cYC" = (
/obj/effect/turf_decal/trimline/green/filled/line{
dir = 1
@@ -8316,6 +8694,16 @@
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/station/maintenance/department/engine)
+<<<<<<< HEAD
+=======
+"daz" = (
+/obj/structure/table,
+/obj/item/ai_module/core/full/paladin_devotion,
+/obj/structure/cable,
+/obj/machinery/flasher/directional/south,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"daK" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -8655,6 +9043,7 @@
},
/turf/open/floor/plating,
/area/station/medical/storage)
+<<<<<<< HEAD
"dgP" = (
/obj/machinery/power/apc/auto_name/directional/south,
/obj/structure/cable,
@@ -8663,6 +9052,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/uppernorth)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dgS" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -8823,6 +9214,10 @@
"diI" = (
/obj/machinery/light/small/directional/north,
/obj/machinery/computer/security,
+<<<<<<< HEAD
+=======
+/obj/structure/detectiveboard/directional/north,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/carpet,
/area/station/security/detectives_office)
"diM" = (
@@ -8894,6 +9289,47 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"dkq" = (
+/obj/structure/table/reinforced/rglass,
+/obj/machinery/button/door{
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ id = "secentrylock2";
+ req_access = list("security");
+ name = "Security Exit Lock";
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/machinery/button/door{
+ normaldoorcontrol = 1;
+ specialfunctions = 4;
+ id = "secentrylock";
+ pixel_y = 6;
+ req_access = list("security");
+ name = "Security Entrance Lock";
+ pixel_x = -4
+ },
+/obj/machinery/button/flasher{
+ pixel_x = 5;
+ id = "secentry";
+ pixel_y = -1;
+ name = "entrance flasher button"
+ },
+/obj/machinery/button/door{
+ pixel_x = 5;
+ pixel_y = 6;
+ name = "Security Entrance Doors";
+ id = "secentrylock";
+ normaldoorcontrol = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/textured,
+/area/station/security/warden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dkr" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/machinery/light/directional/north,
@@ -9291,6 +9727,21 @@
"drj" = (
/turf/closed/wall/rock,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"drl" = (
+/obj/structure/chair/sofa/corp/right{
+ desc = "Looks like someone threw it out. Covered in donut crumbs.";
+ name = "couch";
+ dir = 1
+ },
+/obj/structure/sign/poster/contraband/blood_geometer/directional/east,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/half,
+/area/station/security/breakroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dro" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
@@ -9461,6 +9912,14 @@
/obj/structure/cable,
/turf/open/misc/asteroid,
/area/station/asteroid)
+<<<<<<< HEAD
+=======
+"dtY" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dum" = (
/obj/structure/table/wood,
/obj/item/clothing/head/helmet/toggleable/justice/escape{
@@ -9508,6 +9967,23 @@
/obj/effect/turf_decal/sand/plating,
/turf/open/floor/plating,
/area/station/asteroid)
+<<<<<<< HEAD
+=======
+"dvz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/sign/directions/medical/directional/east{
+ pixel_y = 8;
+ dir = 8
+ },
+/obj/structure/sign/directions/evac/directional/east{
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/engineering/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dvC" = (
/obj/effect/turf_decal/sand/plating,
/obj/structure/grille,
@@ -9522,6 +9998,7 @@
/obj/machinery/light/directional/west,
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"dwt" = (
/obj/effect/turf_decal/stripes{
dir = 4
@@ -9531,6 +10008,8 @@
/obj/structure/cable/layer1,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dwv" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/siding/dark_blue{
@@ -9628,6 +10107,32 @@
},
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
+=======
+"dyS" = (
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{
+ name = "Burn Chamber Interior Airlock";
+ id_tag = "ordmix_airlock_interior"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/obj/machinery/airlock_controller/incinerator_ordmix{
+ pixel_y = -26
+ },
+/obj/machinery/button/ignition/incinerator/ordmix{
+ pixel_x = -6;
+ pixel_y = 24
+ },
+/obj/machinery/button/door/incinerator_vent_ordmix{
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine/vacuum,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dyV" = (
/obj/structure/railing{
dir = 1
@@ -10133,6 +10638,13 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/iron/showroomfloor,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"dFM" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/station/maintenance/department/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dFY" = (
/obj/machinery/duct,
/turf/open/floor/plating,
@@ -10420,6 +10932,7 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/engine/xenobio,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"dJY" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -10437,6 +10950,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dKp" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -10463,6 +10978,7 @@
/obj/effect/turf_decal/box,
/turf/open/floor/iron/textured,
/area/station/engineering/atmos/upper)
+<<<<<<< HEAD
"dKM" = (
/obj/structure/sign/poster/official/cleanliness/directional/north,
/obj/effect/turf_decal/bot,
@@ -10482,6 +10998,8 @@
/obj/machinery/light/small/dim/directional/west,
/turf/open/floor/iron/dark,
/area/station/service/cafeteria)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dLf" = (
/obj/machinery/camera/directional/west{
c_tag = "Atmospherics Tank - Plasma"
@@ -10492,12 +11010,15 @@
/obj/machinery/telecomms/server/presets/common,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/station/tcommsat/server)
+<<<<<<< HEAD
"dLp" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/structure/table/reinforced,
/obj/item/circuitboard/machine/cyborgrecharger,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dLx" = (
/obj/machinery/power/apc/auto_name/directional/south,
/obj/structure/cable,
@@ -10692,6 +11213,23 @@
/obj/effect/turf_decal/tile/red/fourcorners,
/turf/open/floor/iron/dark,
/area/station/security/checkpoint/medical)
+<<<<<<< HEAD
+=======
+"dPk" = (
+/obj/machinery/button/elevator/directional/east{
+ id = "cargo"
+ },
+/obj/machinery/lift_indicator/directional/east{
+ linked_elevator_id = "cargo"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dPq" = (
/obj/machinery/camera/autoname/directional/east,
/turf/open/floor/grass,
@@ -10750,6 +11288,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"dQa" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
/obj/effect/turf_decal/stripes{
@@ -10758,6 +11297,8 @@
/obj/machinery/light/directional/east,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dQr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/dark/textured,
@@ -10836,11 +11377,14 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"dRF" = (
/obj/item/radio/intercom/directional/west,
/obj/effect/turf_decal/tile/neutral,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dRM" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 1
@@ -11304,6 +11848,7 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"dZr" = (
/obj/machinery/vending/wardrobe/viro_wardrobe,
/obj/effect/turf_decal/tile/green/anticorner/contrasted{
@@ -11311,6 +11856,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dZy" = (
/turf/closed/wall/r_wall,
/area/station/ai_monitored/command/storage/satellite)
@@ -11362,6 +11909,20 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"eaW" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
+ name = "AI Antechamber turret control";
+ pixel_y = -27
+ },
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/uppernorth)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eaX" = (
/obj/machinery/power/apc/auto_name/directional/west,
/obj/structure/cable,
@@ -11597,12 +12158,15 @@
/obj/item/storage/dice,
/turf/open/floor/wood,
/area/station/commons/lounge)
+<<<<<<< HEAD
"efj" = (
/obj/machinery/power/smes/full,
/obj/machinery/power/apc/auto_name/directional/west,
/obj/structure/cable,
/turf/open/floor/circuit/green/telecomms/mainframe,
/area/station/tcommsat/server)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"efm" = (
/obj/machinery/conveyor{
dir = 4;
@@ -11679,6 +12243,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/department/bridge)
+<<<<<<< HEAD
+=======
+"egN" = (
+/obj/structure/table,
+/obj/effect/spawner/random/engineering/flashlight,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"egV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on{
dir = 8
@@ -12088,6 +12661,17 @@
},
/turf/open/floor/plating,
/area/station/maintenance/solars/starboard/fore)
+<<<<<<< HEAD
+=======
+"eoO" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 8
+ },
+/obj/machinery/vending/wardrobe/engi_wardrobe,
+/obj/machinery/camera/autoname/directional/west,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eoQ" = (
/obj/machinery/atmospherics/components/binary/pump{
name = "Air to Distro Staging";
@@ -12427,6 +13011,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos/storage/gas)
+<<<<<<< HEAD
"euC" = (
/obj/machinery/pdapainter/medbay,
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
@@ -12434,6 +13019,8 @@
},
/turf/open/floor/holofloor/dark,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"euF" = (
/obj/structure/closet/wardrobe/white,
/obj/effect/landmark/start/hangover/closet,
@@ -12460,6 +13047,24 @@
},
/turf/open/floor/plating,
/area/station/maintenance/department/engine)
+<<<<<<< HEAD
+=======
+"evg" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 6
+ },
+/obj/machinery/keycard_auth/wall_mounted/directional/east,
+/obj/machinery/button/door/directional/east{
+ pixel_y = 12;
+ name = "privacy shutter control";
+ id = "cmoprivacy"
+ },
+/turf/open/floor/holofloor/dark,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"evr" = (
/obj/machinery/door/airlock/external,
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
@@ -12475,6 +13080,15 @@
},
/turf/open/floor/circuit/telecomms/server,
/area/station/science/server)
+<<<<<<< HEAD
+=======
+"evO" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/secure_closet/atmospherics,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"evQ" = (
/turf/open/openspace,
/area/station/medical/medbay/central)
@@ -12485,6 +13099,21 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"ewa" = (
+/obj/effect/turf_decal/tile/yellow/fourcorners,
+/obj/structure/table,
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_y = 6
+ },
+/obj/item/stock_parts/power_store/cell/emproof{
+ pixel_y = 3
+ },
+/obj/item/stock_parts/power_store/cell/emproof,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ewr" = (
/obj/effect/spawner/random/trash/botanical_waste,
/obj/effect/mapping_helpers/burnt_floor,
@@ -13131,6 +13760,28 @@
},
/turf/open/floor/iron/dark,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
+=======
+"eGz" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/directions/security/directional/north{
+ pixel_y = 40
+ },
+/obj/structure/sign/directions/medical/directional/north{
+ dir = 2
+ },
+/obj/structure/sign/directions/evac/directional/north{
+ pixel_y = 24;
+ dir = 2
+ },
+/turf/open/floor/wood,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eGJ" = (
/obj/effect/turf_decal/siding/green,
/obj/structure/cable,
@@ -13148,6 +13799,16 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"eHa" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/east,
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eHc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
@@ -13300,6 +13961,13 @@
/obj/effect/turf_decal/tile/red/diagonal_edge,
/turf/open/floor/iron/dark,
/area/station/security/warden)
+<<<<<<< HEAD
+=======
+"eLk" = (
+/obj/effect/spawner/random/trash/hobo_squat,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/engine)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eLm" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13332,6 +14000,7 @@
},
/turf/open/floor/plating,
/area/station/engineering/atmos/pumproom)
+<<<<<<< HEAD
"eMi" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -13349,6 +14018,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eMj" = (
/obj/machinery/door/airlock/hatch{
name = "MiniSat Access"
@@ -13443,6 +14114,13 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"eOI" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eOY" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
@@ -13639,6 +14317,7 @@
},
/turf/open/openspace,
/area/station/security/prison/garden)
+<<<<<<< HEAD
"eTf" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/directional/west,
@@ -13648,6 +14327,8 @@
},
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eTg" = (
/obj/effect/turf_decal/stripes{
dir = 9
@@ -13665,7 +14346,10 @@
"eTu" = (
/obj/effect/turf_decal/tile/neutral,
/obj/structure/table,
+<<<<<<< HEAD
/obj/item/trash/waffles,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/iron,
/area/station/hallway/primary/central)
"eTZ" = (
@@ -13765,6 +14449,7 @@
/obj/structure/cable/layer3,
/turf/open/floor/catwalk_floor/iron_dark/telecomms,
/area/station/ai_monitored/turret_protected/ai)
+<<<<<<< HEAD
"eWE" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/structure/table/reinforced,
@@ -13779,6 +14464,8 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eWJ" = (
/obj/item/radio/intercom/directional/south,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -13884,6 +14571,18 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"eYO" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/camera/autoname/directional/west,
+/obj/structure/secure_safe/caps_spare,
+/obj/structure/table/reinforced,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eYP" = (
/turf/closed/wall/rust,
/area/station/medical/chemistry/minisat)
@@ -14129,6 +14828,7 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/iron/grimy,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"fdZ" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Supermatter Engine Room"
@@ -14138,12 +14838,15 @@
/obj/machinery/door/firedoor,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fee" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
},
/turf/open/floor/iron/textured,
/area/station/security/processing)
+<<<<<<< HEAD
"fer" = (
/obj/machinery/modular_computer/preset/id{
dir = 1
@@ -14159,6 +14862,8 @@
},
/turf/open/floor/holofloor/dark,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"feu" = (
/obj/effect/landmark/start/janitor,
/obj/effect/decal/cleanable/dirt,
@@ -14293,6 +14998,7 @@
/obj/effect/turf_decal/sand/plating,
/turf/open/floor/plating,
/area/station/maintenance/solars/port/fore)
+<<<<<<< HEAD
"fgY" = (
/obj/machinery/light/warm/dim/directional/north,
/obj/effect/turf_decal/trimline/yellow/filled/line{
@@ -14304,6 +15010,8 @@
},
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/chemistry/minisat)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fhs" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 8
@@ -14424,6 +15132,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible,
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"fjo" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/emergency,
@@ -14438,6 +15147,8 @@
},
/turf/open/floor/iron,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fjp" = (
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
dir = 1
@@ -14487,6 +15198,7 @@
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/station/service/theater)
+<<<<<<< HEAD
"fks" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 8
@@ -14496,6 +15208,8 @@
/obj/structure/table/reinforced,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fkF" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm/directional/north,
@@ -14529,10 +15243,13 @@
dir = 8
},
/area/station/command/corporate_dock)
+<<<<<<< HEAD
"fln" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fls" = (
/obj/structure/broken_flooring/pile{
dir = 1
@@ -14566,6 +15283,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"flW" = (
/obj/machinery/computer/crew{
dir = 8
@@ -14573,6 +15291,8 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron/textured,
/area/station/security/warden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"flZ" = (
/obj/structure/cable,
/obj/structure/disposalpipe/sorting/mail/flip{
@@ -14775,6 +15495,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"fpT" = (
/obj/effect/turf_decal/tile/neutral,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -14791,6 +15512,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fpY" = (
/turf/open/openspace,
/area/station/science/ordnance)
@@ -14811,6 +15534,7 @@
/obj/effect/mapping_helpers/airlock/access/all/command/minisat,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+<<<<<<< HEAD
"fqq" = (
/obj/structure/table/reinforced,
/obj/item/stamp/head/ce,
@@ -14826,6 +15550,8 @@
/obj/item/stamp/head/ce,
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fqs" = (
/obj/structure/cable,
/obj/structure/railing{
@@ -15186,6 +15912,16 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/security/checkpoint/medical)
+<<<<<<< HEAD
+=======
+"fvq" = (
+/obj/machinery/airlock_controller/incinerator_atmos{
+ pixel_x = 32
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fvF" = (
/obj/effect/spawner/random/structure/grille,
/obj/structure/cable,
@@ -15406,6 +16142,20 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/service/cafeteria)
+<<<<<<< HEAD
+=======
+"fzx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
+/obj/item/stamp/head/captain{
+ pixel_x = -12
+ },
+/obj/item/hand_tele{
+ pixel_x = 8
+ },
+/turf/open/floor/carpet/executive,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fzK" = (
/obj/machinery/door/airlock/maintenance_hatch,
/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
@@ -15569,6 +16319,7 @@
/obj/machinery/status_display/evac/directional/south,
/turf/open/floor/wood/tile,
/area/station/service/bar)
+<<<<<<< HEAD
"fCo" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{
dir = 1
@@ -15578,6 +16329,8 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fCy" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -15697,6 +16450,17 @@
/obj/structure/sign/poster/random/directional/east,
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
+=======
+"fEm" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 1;
+ name = "Cooling Loop to Gas"
+ },
+/obj/effect/turf_decal/stripes,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fEu" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 4
@@ -15745,6 +16509,19 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/command/corporate_showroom)
+<<<<<<< HEAD
+=======
+"fFb" = (
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/machinery/newscaster/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fFg" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -16116,12 +16893,15 @@
},
/turf/open/floor/iron/half,
/area/station/security/breakroom)
+<<<<<<< HEAD
"fLF" = (
/obj/structure/table,
/obj/effect/spawner/random/engineering/flashlight,
/obj/machinery/light_switch/directional/east,
/turf/open/floor/iron,
/area/station/command/gateway)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fLM" = (
/obj/structure/transport/linear/public,
/obj/machinery/light/floor/transport,
@@ -16445,6 +17225,30 @@
/obj/effect/mapping_helpers/airalarm/tlv_no_checks,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
+=======
+"fQG" = (
+/obj/machinery/door/airlock/virology/glass{
+ name = "Virology Lab";
+ id_tag = "virology_airlock_exterior"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/obj/machinery/door_buttons/access_button{
+ dir = 1;
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_y = -24;
+ req_access = list("virology")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fQO" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 4
@@ -16455,6 +17259,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
"fQS" = (
/obj/effect/turf_decal/trimline/yellow/filled/corner,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -16462,6 +17267,8 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fRv" = (
/obj/machinery/door/window/right/directional/east,
/turf/open/floor/grass,
@@ -16500,6 +17307,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/maintenance/aft/upper)
+<<<<<<< HEAD
"fRP" = (
/obj/structure/chair{
dir = 4
@@ -16514,6 +17322,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fSb" = (
/obj/structure/tank_dispenser/oxygen,
/obj/machinery/light/directional/north,
@@ -16939,6 +17749,7 @@
/obj/effect/mapping_helpers/burnt_floor,
/turf/open/floor/plating,
/area/station/maintenance/solars/port)
+<<<<<<< HEAD
"fZA" = (
/obj/machinery/turretid{
control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
@@ -16950,6 +17761,8 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fZF" = (
/turf/open/floor/engine/hull/reinforced,
/area/space/nearstation)
@@ -17016,6 +17829,7 @@
/obj/effect/spawner/structure/window/reinforced/tinted,
/turf/open/floor/plating/reinforced/airless,
/area/station/asteroid)
+<<<<<<< HEAD
"gbw" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 8
@@ -17026,6 +17840,8 @@
},
/turf/open/floor/engine,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gbF" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 9
@@ -17269,6 +18085,19 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"gft" = (
+/obj/structure/transport/linear/public,
+/obj/effect/landmark/transport/transport_id{
+ specific_transport_id = "medbay1"
+ },
+/obj/machinery/elevator_control_panel/directional/south{
+ linked_elevator_id = "medbay1"
+ },
+/turf/open/floor/plating/elevatorshaft,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gfF" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -17368,6 +18197,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/carpet,
/area/station/commons/dorms)
+<<<<<<< HEAD
"ghN" = (
/obj/machinery/computer/pod/old/mass_driver_controller/trash{
pixel_x = -24;
@@ -17385,6 +18215,8 @@
},
/turf/open/floor/engine,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ghQ" = (
/obj/effect/turf_decal/tile/dark_red/opposingcorners,
/obj/machinery/chem_master/condimaster{
@@ -17468,6 +18300,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/cargo/drone_bay)
+<<<<<<< HEAD
+=======
+"gjt" = (
+/obj/machinery/pdapainter/medbay,
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/holofloor/dark,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gjw" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -17601,10 +18443,13 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"glu" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"glA" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
/turf/open/floor/iron,
@@ -17615,6 +18460,18 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos/upper)
+<<<<<<< HEAD
+=======
+"glH" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/directions/dorms/directional/west,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"glL" = (
/obj/effect/spawner/random/vending/snackvend,
/obj/effect/turf_decal/trimline/blue/filled/line{
@@ -18059,6 +18916,7 @@
/obj/structure/broken_flooring/side/directional/south,
/turf/open/floor/plating,
/area/station/maintenance/department/medical)
+<<<<<<< HEAD
"guS" = (
/obj/structure/cable,
/obj/effect/spawner/structure/window/hollow/reinforced/end{
@@ -18067,6 +18925,8 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/station/hallway/secondary/command)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"guV" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/freezer,
@@ -18213,6 +19073,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"gxd" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -18220,6 +19081,8 @@
/obj/structure/sign/warning/engine_safety/directional/north,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gxt" = (
/obj/item/kirbyplants/random,
/obj/effect/turf_decal/siding/wood{
@@ -18681,6 +19544,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
"gEL" = (
/obj/structure/filingcabinet,
/obj/machinery/button/ticket_machine{
@@ -18697,6 +19561,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gEP" = (
/obj/effect/turf_decal/tile/blue/opposingcorners,
/obj/effect/turf_decal/tile/red/opposingcorners{
@@ -18759,6 +19625,16 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating/airless,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"gGh" = (
+/obj/effect/landmark/start/cyborg,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/recharge_floor,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gGm" = (
/obj/effect/spawner/random/engineering/tank,
/turf/open/floor/plating,
@@ -18813,6 +19689,7 @@
/obj/effect/mapping_helpers/trapdoor_placer,
/turf/open/floor/glass/reinforced/plasma,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"gHh" = (
/obj/machinery/lift_indicator/directional/west{
linked_elevator_id = "medbay1"
@@ -18825,6 +19702,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gHk" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -19277,6 +20156,17 @@
"gQq" = (
/turf/open/openspace,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"gQs" = (
+/obj/structure/transport/linear/public,
+/obj/effect/landmark/transport/transport_id{
+ specific_transport_id = "aisat"
+ },
+/obj/machinery/holopad,
+/turf/open/openspace,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gQt" = (
/obj/machinery/door/airlock{
id_tag = "Cabin6";
@@ -19367,6 +20257,19 @@
/obj/item/target/syndicate,
/turf/open/floor/engine,
/area/station/science/explab)
+<<<<<<< HEAD
+=======
+"gTe" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes{
+ dir = 8
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/obj/effect/mapping_helpers/apc/cell_10k,
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gTf" = (
/obj/structure/table,
/obj/machinery/reagentgrinder{
@@ -20305,6 +21208,7 @@
dir = 5
},
/area/station/command/meeting_room)
+<<<<<<< HEAD
"hhG" = (
/obj/structure/table/reinforced,
/obj/item/storage/medkit/regular,
@@ -20313,6 +21217,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hhH" = (
/obj/structure/table/reinforced/rglass,
/obj/effect/turf_decal/tile/blue/fourcorners,
@@ -20598,6 +21504,7 @@
/obj/machinery/research/anomaly_refinery,
/turf/open/floor/iron/dark,
/area/station/science/ordnance/testlab)
+<<<<<<< HEAD
"hmJ" = (
/obj/effect/turf_decal/tile/neutral,
/obj/structure/sign/directions/supply/directional/east{
@@ -20605,6 +21512,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hna" = (
/obj/structure/cable,
/turf/open/floor/iron/dark,
@@ -20736,6 +21645,28 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood/tile,
/area/station/service/bar)
+<<<<<<< HEAD
+=======
+"hpB" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/directions/security/directional/west{
+ dir = 1
+ },
+/obj/structure/sign/directions/supply/directional/west{
+ pixel_y = 8;
+ dir = 1
+ },
+/obj/structure/sign/directions/science/directional/west{
+ pixel_y = -8;
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hpT" = (
/obj/machinery/door/airlock/command{
name = "Quartermaster's Office"
@@ -20868,6 +21799,21 @@
},
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/restrooms)
+<<<<<<< HEAD
+=======
+"hro" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/firealarm/directional/south,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry/minisat)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hrp" = (
/obj/structure/closet/crate{
name = "Surplus Communications Parts"
@@ -20953,11 +21899,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/carpet/executive,
/area/station/command/corporate_showroom)
+<<<<<<< HEAD
"hsm" = (
/obj/structure/chair/sofa/right/maroon,
/obj/effect/landmark/start/psychologist,
/turf/open/floor/carpet,
/area/station/medical/psychology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hso" = (
/obj/effect/turf_decal/tile/brown/half/contrasted,
/obj/structure/cable,
@@ -20994,12 +21943,15 @@
},
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/virology)
+<<<<<<< HEAD
"hsI" = (
/obj/effect/landmark/start/cyborg,
/obj/structure/window/reinforced/spawner/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/recharge_floor,
/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hsW" = (
/turf/open/floor/iron/dark,
/area/station/cargo/drone_bay)
@@ -21091,6 +22043,16 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"hux" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 9
+ },
+/obj/item/kirbyplants/random,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"huK" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/wood/parquet,
@@ -21132,6 +22094,18 @@
/obj/structure/railing/corner,
/turf/open/openspace,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
+=======
+"hvt" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hvw" = (
/obj/effect/turf_decal/sand/plating,
/obj/structure/disposalpipe/trunk/multiz/down,
@@ -21146,12 +22120,15 @@
/obj/effect/spawner/random/structure/closet_empty/crate,
/turf/open/floor/plating/elevatorshaft,
/area/station/cargo/storage)
+<<<<<<< HEAD
"hvB" = (
/obj/structure/table/reinforced,
/obj/item/pinpointer/nuke,
/obj/item/disk/nuclear,
/turf/open/floor/carpet/executive,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hvD" = (
/obj/structure/broken_flooring/pile{
dir = 8
@@ -21385,6 +22362,15 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"hAS" = (
+/obj/machinery/hydroponics/soil,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cultivator/rake,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hAV" = (
/obj/structure/table/wood,
/obj/item/flashlight/flare/candle{
@@ -21454,6 +22440,7 @@
/obj/structure/cable,
/turf/open/floor/circuit,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"hCC" = (
/obj/machinery/pdapainter/engineering,
/obj/effect/turf_decal/trimline/yellow/filled/line{
@@ -21461,6 +22448,8 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hCJ" = (
/obj/structure/railing{
dir = 8
@@ -21704,6 +22693,7 @@
/obj/structure/railing,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"hGX" = (
/obj/machinery/door/poddoor/shutters/preopen{
dir = 4;
@@ -21714,6 +22704,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hGZ" = (
/obj/structure/cable/multilayer/multiz,
/obj/machinery/light/small/dim/directional/west,
@@ -21884,6 +22876,17 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"hLq" = (
+/obj/effect/turf_decal/delivery,
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hLw" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -22110,6 +23113,7 @@
/obj/structure/cable,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/security/prison/safe)
+<<<<<<< HEAD
"hPG" = (
/obj/effect/turf_decal/stripes{
dir = 4
@@ -22120,6 +23124,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hPH" = (
/obj/effect/landmark/start/hangover,
/turf/open/floor/iron/white,
@@ -22577,10 +23583,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/wood/tile,
/area/station/service/bar)
+<<<<<<< HEAD
"hWR" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/station/maintenance/department/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hWW" = (
/obj/structure/cable,
/obj/effect/landmark/start/atmospheric_technician,
@@ -22694,6 +23703,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+<<<<<<< HEAD
"hYT" = (
/obj/structure/cable,
/obj/machinery/light/small/directional/east,
@@ -22706,6 +23716,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hYU" = (
/obj/structure/lattice,
/obj/structure/cable,
@@ -22765,12 +23777,15 @@
"iaN" = (
/turf/closed/wall,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
"ibe" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 6
},
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ibi" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/blue{
@@ -22998,6 +24013,7 @@
/obj/structure/flora/rock/style_random,
/turf/open/misc/asteroid,
/area/station/maintenance/department/science)
+<<<<<<< HEAD
"ieG" = (
/obj/machinery/elevator_control_panel/directional/south{
linked_elevator_id = "aisat";
@@ -23013,6 +24029,8 @@
/obj/structure/cable/layer3,
/turf/open/floor/iron/dark/telecomms,
/area/station/tcommsat/server)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ieI" = (
/obj/structure/cable/layer3,
/turf/open/floor/circuit/telecomms/mainframe,
@@ -23161,6 +24179,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/central/lesser)
+<<<<<<< HEAD
"ihJ" = (
/obj/machinery/light/small/directional/south,
/obj/effect/turf_decal/tile/neutral,
@@ -23179,6 +24198,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ihK" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23322,6 +24343,7 @@
/obj/effect/spawner/random/structure/closet_empty/crate/with_loot,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"ill" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger{
@@ -23333,6 +24355,8 @@
},
/turf/open/floor/iron,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ilp" = (
/turf/closed/mineral/random/stationside/asteroid/porus{
mineralChance = 20
@@ -23367,6 +24391,7 @@
/obj/machinery/door/firedoor/border_only,
/turf/open/floor/glass/reinforced,
/area/station/service/bar)
+<<<<<<< HEAD
"imh" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 9
@@ -23381,6 +24406,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iml" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/mapping_helpers/broken_floor,
@@ -23937,6 +24964,22 @@
/obj/effect/mapping_helpers/mail_sorting/engineering/ce_office,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"iwm" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot_red,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iwu" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/closet/crate,
@@ -23944,12 +24987,15 @@
/obj/effect/spawner/random/bureaucracy/pen,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/maintenance/aft/upper)
+<<<<<<< HEAD
"iwA" = (
/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{
dir = 10
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iwQ" = (
/obj/effect/turf_decal/tile/dark_red/opposingcorners,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -24315,6 +25361,15 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/kitchen,
/area/station/service/kitchen)
+<<<<<<< HEAD
+=======
+"iDJ" = (
+/obj/structure/table/reinforced,
+/obj/item/modular_computer/laptop/preset/civilian,
+/obj/structure/cable,
+/turf/open/floor/carpet/executive,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iEj" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -24586,6 +25641,19 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"iIT" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/window/brigdoor/left/directional/north,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/machinery/camera/autoname/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iIY" = (
/obj/effect/turf_decal/tile/blue{
dir = 1
@@ -24814,6 +25882,10 @@
/obj/machinery/hydroponics/soil,
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
+<<<<<<< HEAD
+=======
+/obj/item/plant_analyzer,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/grass,
/area/station/security/prison/garden)
"iNv" = (
@@ -24850,6 +25922,14 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/wood/tile,
/area/station/service/chapel)
+<<<<<<< HEAD
+=======
+"iOc" = (
+/obj/effect/turf_decal/tile/yellow,
+/obj/structure/sign/poster/official/random/directional/east,
+/turf/open/floor/iron,
+/area/station/hallway/primary/starboard)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iOE" = (
/obj/item/pickaxe/mini,
/turf/open/misc/asteroid,
@@ -25322,6 +26402,24 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/iron/white/smooth_large,
/area/station/science/research)
+<<<<<<< HEAD
+=======
+"jaa" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/directions/command/directional/north,
+/obj/structure/sign/directions/engineering/directional/north{
+ pixel_y = 40;
+ dir = 4
+ },
+/obj/structure/sign/directions/security/directional/north{
+ pixel_y = 24;
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jac" = (
/obj/structure/cable,
/obj/effect/spawner/random/trash/garbage{
@@ -25397,6 +26495,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/medbay/central)
+<<<<<<< HEAD
"jbI" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -25405,11 +26504,29 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jbL" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/tile/purple/anticorner/contrasted,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"jbM" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/item/ai_module/toy_ai{
+ pixel_x = 16;
+ pixel_y = 8
+ },
+/obj/item/paper_bin/construction{
+ pixel_y = 6
+ },
+/obj/item/pen,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jbP" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/small/directional/west,
@@ -25691,6 +26808,7 @@
/obj/structure/cable,
/turf/open/floor/iron/white,
/area/station/medical/patients_rooms/room_a)
+<<<<<<< HEAD
"jgO" = (
/obj/effect/turf_decal/tile/yellow/fourcorners,
/obj/structure/table,
@@ -25703,6 +26821,8 @@
/obj/item/stock_parts/power_store/cell/emproof,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jgZ" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 1
@@ -26061,6 +27181,26 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"jmP" = (
+/obj/machinery/computer/pod/old/mass_driver_controller/trash{
+ pixel_x = -24;
+ id = "captaindriver"
+ },
+/obj/effect/turf_decal/stripes/corner,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jmU" = (
/obj/effect/landmark/start/head_of_security,
/obj/machinery/light/small/directional/east,
@@ -26133,6 +27273,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+<<<<<<< HEAD
"jop" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/structure/table/reinforced,
@@ -26140,6 +27281,8 @@
/obj/item/coin/titanium,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"joB" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -26291,6 +27434,15 @@
/obj/effect/turf_decal/trimline/yellow/filled/warning,
/turf/open/floor/iron/white,
/area/station/medical/chemistry)
+<<<<<<< HEAD
+=======
+"jqu" = (
+/obj/structure/table/reinforced,
+/obj/item/pinpointer/nuke,
+/obj/item/disk/nuclear,
+/turf/open/floor/carpet/executive,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jqz" = (
/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/tile/neutral/opposingcorners,
@@ -26308,6 +27460,23 @@
/obj/machinery/light/cold/directional/south,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/teleporter)
+<<<<<<< HEAD
+=======
+"jqT" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start/head_of_personnel,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jqY" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/iron/white/smooth_large,
@@ -26407,6 +27576,17 @@
/obj/structure/flora/bush/sunny/style_random,
/turf/open/floor/grass,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"jtS" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"juf" = (
/obj/effect/turf_decal/tile/neutral,
/obj/effect/spawner/random/structure/table,
@@ -26449,6 +27629,17 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/command/corporate_showroom)
+<<<<<<< HEAD
+=======
+"juV" = (
+/obj/structure/railing,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 6
+ },
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"juZ" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment{
@@ -26533,6 +27724,17 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron,
/area/station/engineering/atmos/upper)
+<<<<<<< HEAD
+=======
+"jww" = (
+/obj/effect/turf_decal/tile/dark_blue,
+/obj/effect/mapping_helpers/mail_sorting/service/hop_office,
+/obj/structure/disposalpipe/sorting/mail/flip{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/hallway/secondary/command)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jwI" = (
/obj/structure/table/reinforced,
/obj/effect/turf_decal/tile/dark_red/opposingcorners,
@@ -26686,6 +27888,17 @@
/obj/machinery/light_switch/directional/east,
/turf/open/floor/iron/dark,
/area/station/engineering/storage/tcomms)
+<<<<<<< HEAD
+=======
+"jzC" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light_switch/directional/west,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jzI" = (
/obj/structure/railing{
dir = 1
@@ -26800,6 +28013,23 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"jBg" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/machinery/light/small/dim/directional/east,
+/obj/item/assembly/timer{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/assembly/igniter/condenser,
+/obj/machinery/camera/autoname/directional/east{
+ network = list("minisat")
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jBh" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -26929,6 +28159,46 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white/textured,
/area/station/science/genetics)
+<<<<<<< HEAD
+=======
+"jCU" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/random,
+/obj/item/reagent_containers/blood/o_plus{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/reagent_containers/blood/o_minus,
+/obj/item/reagent_containers/blood/b_plus,
+/obj/item/reagent_containers/blood/b_minus,
+/obj/item/reagent_containers/blood/a_plus,
+/obj/item/reagent_containers/blood/a_minus,
+/obj/item/reagent_containers/blood/lizard,
+/obj/item/reagent_containers/blood/ethereal,
+/obj/item/reagent_containers/blood{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/blood{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/reagent_containers/blood{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/camera/autoname/directional/east{
+ network = list("ss13","medbay")
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jCX" = (
/obj/structure/transport/linear/public,
/turf/open/floor/plating/elevatorshaft,
@@ -27000,6 +28270,17 @@
},
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/chemistry/minisat)
+<<<<<<< HEAD
+=======
+"jEf" = (
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/holofloor/dark,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jEr" = (
/obj/structure/chair/stool/directional/west,
/obj/effect/landmark/start/assistant,
@@ -27171,6 +28452,16 @@
},
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/patients_rooms/room_a)
+<<<<<<< HEAD
+=======
+"jHz" = (
+/obj/effect/turf_decal/stripes,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jHD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/firealarm/directional/west,
@@ -27184,6 +28475,7 @@
},
/turf/open/floor/iron/grimy,
/area/station/security/detectives_office)
+<<<<<<< HEAD
"jHO" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
/obj/effect/turf_decal/stripes{
@@ -27194,6 +28486,8 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jHQ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -27431,6 +28725,7 @@
},
/turf/open/floor/iron/dark/corner,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"jLd" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -27438,6 +28733,8 @@
/obj/structure/sign/poster/official/report_crimes/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jLp" = (
/obj/machinery/photocopier,
/turf/open/floor/carpet/purple,
@@ -27725,6 +29022,17 @@
/obj/machinery/digital_clock/directional/north,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"jQs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jQt" = (
/obj/structure/cable,
/obj/effect/spawner/random/maintenance,
@@ -27922,6 +29230,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"jVn" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -27942,6 +29251,8 @@
},
/turf/open/floor/carpet/royalblue,
/area/station/command/heads_quarters/captain/private)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jVq" = (
/obj/effect/spawner/random/structure/billboard/nanotrasen,
/obj/effect/turf_decal/stripes/asteroid/line{
@@ -27988,6 +29299,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"jVT" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -27998,6 +29310,8 @@
/obj/structure/cable/layer1,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jVV" = (
/obj/structure/lattice,
/turf/open/space/openspace,
@@ -28050,6 +29364,7 @@
/obj/machinery/firealarm/directional/south,
/turf/open/openspace,
/area/station/security/prison/shower)
+<<<<<<< HEAD
"jWv" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -28057,6 +29372,8 @@
/obj/item/radio/intercom/directional/north,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jWE" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/watertank,
@@ -28147,6 +29464,7 @@
},
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"jYw" = (
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
dir = 4
@@ -28157,6 +29475,8 @@
},
/turf/open/floor/holofloor/dark,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jYy" = (
/obj/effect/turf_decal/tile/neutral/diagonal_centre,
/turf/open/floor/iron/dark,
@@ -28292,6 +29612,7 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+<<<<<<< HEAD
"kat" = (
/obj/machinery/door/poddoor/shutters/preopen{
dir = 4;
@@ -28304,6 +29625,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kaz" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -28326,6 +29649,20 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
+=======
+"kbv" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
+ name = "AI Antechamber turret control";
+ pixel_x = 27
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kbD" = (
/obj/machinery/newscaster/directional/south,
/obj/effect/turf_decal/siding/purple,
@@ -28375,6 +29712,20 @@
},
/turf/open/misc/asteroid,
/area/station/maintenance/port/lesser)
+<<<<<<< HEAD
+=======
+"kcr" = (
+/obj/structure/table/optable,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/machinery/digital_clock/directional/south,
+/obj/structure/cable,
+/obj/machinery/camera/autoname/directional/west{
+ network = list("ss13","medbay")
+ },
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/iron/white,
+/area/station/medical/surgery/theatre)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kcz" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 6
@@ -28556,6 +29907,21 @@
/obj/effect/turf_decal/tile/blue,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+<<<<<<< HEAD
+=======
+"keg" = (
+/obj/structure/cable,
+/obj/machinery/light/small/directional/east,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/obj/machinery/camera/autoname/directional/north{
+ network = list("ss13","medbay")
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"keo" = (
/obj/machinery/conveyor_switch/oneway{
id = "QMLoad2";
@@ -28578,6 +29944,7 @@
},
/turf/open/floor/carpet/red,
/area/station/security/warden)
+<<<<<<< HEAD
"keE" = (
/obj/structure/table/optable,
/obj/effect/turf_decal/tile/blue/fourcorners,
@@ -28589,6 +29956,8 @@
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/white,
/area/station/medical/surgery/theatre)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"keJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
@@ -28833,6 +30202,23 @@
/obj/structure/broken_flooring/singular,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"kjR" = (
+/obj/item/radio/intercom/directional/north,
+/obj/structure/rack,
+/obj/item/clothing/glasses/meson/engine,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/obj/item/trapdoor_remote/preloaded,
+/obj/machinery/light_switch/directional/north{
+ pixel_x = 26
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kjU" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 5
@@ -28917,6 +30303,7 @@
/obj/machinery/camera/autoname/directional/south,
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
"kkW" = (
/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior{
name = "Burn Chamber Interior Airlock";
@@ -28940,6 +30327,8 @@
},
/turf/open/floor/engine/vacuum,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kld" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -29149,6 +30538,7 @@
/obj/effect/spawner/random/trash/mess,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
"kot" = (
/obj/machinery/door/airlock/research/glass{
name = "Ordnance Lab"
@@ -29160,6 +30550,8 @@
/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"koz" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -29534,6 +30926,7 @@
},
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+<<<<<<< HEAD
"ktk" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -29548,6 +30941,8 @@
/obj/structure/sign/directions/engineering/directional/east,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ktr" = (
/obj/machinery/door/airlock/grunge{
name = "Radiation Shelter"
@@ -29603,6 +30998,14 @@
/obj/structure/cable,
/turf/open/floor/wood/parquet,
/area/station/medical/psychology)
+<<<<<<< HEAD
+=======
+"kuI" = (
+/obj/structure/chair/sofa/right/maroon,
+/obj/effect/landmark/start/psychologist,
+/turf/open/floor/carpet,
+/area/station/medical/psychology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kuP" = (
/obj/structure/cable,
/turf/open/floor/plating,
@@ -29623,6 +31026,7 @@
/obj/structure/lattice/catwalk,
/turf/open/openspace/xenobio,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"kvf" = (
/obj/structure/table/reinforced,
/obj/item/storage/toolbox/mechanical{
@@ -29634,6 +31038,8 @@
},
/turf/open/floor/iron,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kvj" = (
/obj/machinery/light/directional/north,
/obj/structure/table,
@@ -29657,6 +31063,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/station/medical/chemistry/minisat)
+<<<<<<< HEAD
"kvA" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
@@ -29669,6 +31076,8 @@
},
/turf/open/floor/engine,
/area/station/science/ordnance/burnchamber)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kvU" = (
/obj/effect/turf_decal/sand/plating,
/obj/structure/rack,
@@ -29700,6 +31109,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+<<<<<<< HEAD
"kwi" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/structure/table/reinforced,
@@ -29713,6 +31123,8 @@
/obj/item/pen,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/turret_protected/aisat/foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kwp" = (
/obj/item/storage/box/bodybags,
/obj/item/healthanalyzer,
@@ -29759,6 +31171,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/storage)
+<<<<<<< HEAD
"kxh" = (
/obj/structure/chair/sofa/corp/right{
desc = "Looks like someone threw it out. Covered in donut crumbs.";
@@ -29771,6 +31184,8 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron/half,
/area/station/security/breakroom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kxk" = (
/obj/effect/turf_decal/tile/neutral/diagonal_centre,
/obj/machinery/camera/autoname/directional/north,
@@ -29938,6 +31353,31 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/lesser)
+<<<<<<< HEAD
+=======
+"kzI" = (
+/obj/machinery/door/airlock/virology/glass{
+ name = "Virology Lab";
+ id_tag = "virology_airlock_interior"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/effect/mapping_helpers/airlock/access/all/medical/virology,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/obj/machinery/door_buttons/access_button{
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ pixel_y = 8;
+ req_access = list("virology")
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kzK" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -29962,6 +31402,17 @@
"kAg" = (
/turf/closed/wall,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"kAh" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes{
+ dir = 5
+ },
+/obj/machinery/light/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kAw" = (
/obj/structure/cable,
/obj/structure/disposalpipe/junction/flip{
@@ -30087,6 +31538,14 @@
dir = 1
},
/area/station/medical/pharmacy)
+<<<<<<< HEAD
+=======
+"kCr" = (
+/obj/structure/rack,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/engine)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kCs" = (
/obj/structure/railing{
dir = 9
@@ -30258,6 +31717,17 @@
},
/turf/open/floor/wood/tile,
/area/station/security/courtroom)
+<<<<<<< HEAD
+=======
+"kFO" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer1,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kFP" = (
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 1
@@ -30799,6 +32269,19 @@
/obj/structure/sign/poster/random/directional/north,
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
+=======
+"kQV" = (
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/cmo/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/holofloor/dark,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kRl" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -31137,6 +32620,19 @@
/obj/machinery/newscaster/directional/east,
/turf/open/floor/iron,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
+=======
+"kWI" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kWK" = (
/obj/effect/spawner/random/structure/grille,
/obj/structure/cable,
@@ -31458,6 +32954,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
"lct" = (
/obj/effect/turf_decal/tile/neutral,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -31466,6 +32963,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lcv" = (
/obj/machinery/camera/autoname/directional/south,
/turf/open/floor/glass/reinforced,
@@ -31990,6 +33489,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/patients_rooms/room_b)
+<<<<<<< HEAD
"lnQ" = (
/obj/effect/turf_decal/trimline/blue/filled/line,
/obj/effect/turf_decal/siding/blue{
@@ -31998,6 +33498,8 @@
/obj/machinery/vending/wallmed/directional/south,
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lnZ" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/structure/table,
@@ -32025,6 +33527,21 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/port/lesser)
+<<<<<<< HEAD
+=======
+"lop" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/paper/pamphlet/gateway,
+/obj/structure/table,
+/obj/item/flashlight/flare{
+ pixel_x = 12
+ },
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"loq" = (
/obj/machinery/power/apc/auto_name/directional/south,
/obj/structure/cable,
@@ -32262,6 +33779,16 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"luq" = (
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lut" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/turf_decal/stripes/asteroid/line{
@@ -32378,6 +33905,20 @@
"lwu" = (
/turf/open/floor/carpet/red,
/area/station/command/heads_quarters/qm)
+<<<<<<< HEAD
+=======
+"lwv" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/obj/structure/rack,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lww" = (
/obj/machinery/light/directional/north,
/obj/effect/decal/cleanable/dirt/dust,
@@ -32406,6 +33947,21 @@
/obj/item/kirbyplants/organic/plant11,
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
+<<<<<<< HEAD
+=======
+"lwW" = (
+/obj/machinery/lift_indicator/directional/north{
+ linked_elevator_id = "cargo"
+ },
+/obj/machinery/button/elevator/directional/north{
+ id = "cargo"
+ },
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/cargo/storage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lwZ" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/computer/atmos_control/nocontrol/incinerator{
@@ -32457,6 +34013,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/textured,
/area/station/construction/mining/aux_base)
+<<<<<<< HEAD
"lym" = (
/obj/effect/turf_decal/delivery,
/obj/effect/turf_decal/stripes{
@@ -32465,6 +34022,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lyr" = (
/obj/structure/table/reinforced/rglass,
/obj/effect/turf_decal/tile/blue/fourcorners,
@@ -32500,6 +34059,16 @@
dir = 4
},
/area/station/medical/exam_room)
+<<<<<<< HEAD
+=======
+"lyJ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/poster/official/report_crimes/directional/north,
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lyN" = (
/turf/open/openspace,
/area/station/engineering/lobby)
@@ -32588,6 +34157,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/gravity_generator)
+<<<<<<< HEAD
"lzX" = (
/obj/effect/turf_decal/stripes{
dir = 4
@@ -32607,6 +34177,8 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/station/hallway/secondary/command)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lAc" = (
/turf/closed/wall/r_wall,
/area/station/science/genetics)
@@ -32835,6 +34407,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/catwalk_floor/iron_smooth,
/area/station/maintenance/disposal)
+<<<<<<< HEAD
+=======
+"lEa" = (
+/obj/machinery/button/elevator/directional/east{
+ id = "aisat"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lED" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -32993,6 +34577,7 @@
/obj/effect/turf_decal/trimline/green/filled/line,
/turf/open/floor/iron/white,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
"lGQ" = (
/obj/effect/turf_decal/stripes{
dir = 4
@@ -33000,6 +34585,8 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lGR" = (
/obj/effect/spawner/structure/window/hollow/end{
dir = 8
@@ -33108,6 +34695,20 @@
/obj/machinery/vending/boozeomat/all_access,
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
+=======
+"lJo" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/duct,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden,
+/turf/open/floor/catwalk_floor/iron_white,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lJq" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
@@ -33214,6 +34815,15 @@
/obj/effect/mapping_helpers/airlock/access/all/engineering/external,
/turf/open/floor/plating,
/area/station/cargo/storage)
+<<<<<<< HEAD
+=======
+"lLC" = (
+/obj/structure/chair/stool/directional/east{
+ name = "Quartermaster"
+ },
+/turf/open/floor/carpet/executive,
+/area/station/command/meeting_room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lLF" = (
/obj/structure/broken_flooring/side/directional/north,
/obj/effect/decal/cleanable/dirt/dust,
@@ -33245,10 +34855,13 @@
/obj/effect/spawner/random/maintenance,
/turf/open/floor/plating,
/area/station/maintenance/central/lesser)
+<<<<<<< HEAD
"lMd" = (
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lMj" = (
/obj/effect/turf_decal/siding/thinplating_new{
dir = 9
@@ -33440,6 +35053,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white,
/area/station/medical/chemistry/minisat)
+<<<<<<< HEAD
"lPL" = (
/obj/effect/landmark/start/ai,
/obj/machinery/power/apc/auto_name/directional/south,
@@ -33469,6 +35083,8 @@
/obj/effect/mapping_helpers/apc/cell_5k,
/turf/open/floor/circuit/green,
/area/station/ai_monitored/turret_protected/ai)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lPV" = (
/obj/effect/spawner/random/trash/garbage{
spawn_scatter_radius = 1
@@ -33484,16 +35100,30 @@
/obj/item/stock_parts/power_store/cell/high,
/turf/open/floor/iron/dark,
/area/station/ai_monitored/command/storage/satellite)
+<<<<<<< HEAD
+=======
+"lQl" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/command)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lQD" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron,
/area/station/command/bridge)
+<<<<<<< HEAD
"lQJ" = (
/obj/structure/rack,
/obj/effect/spawner/random/maintenance,
/turf/open/floor/iron/dark,
/area/station/maintenance/department/engine)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lQL" = (
/turf/open/openspace,
/area/station/hallway/primary/starboard)
@@ -33702,6 +35332,18 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating,
/area/station/maintenance/department/bridge)
+<<<<<<< HEAD
+=======
+"lUF" = (
+/obj/structure/transport/linear/public,
+/obj/machinery/elevator_control_panel{
+ preset_destination_names = list(2 = "Telecomms", 3 = "AI Core");
+ linked_elevator_id = "aisat";
+ pixel_x = 32
+ },
+/turf/open/openspace,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lUM" = (
/obj/structure/toilet/greyscale{
dir = 4
@@ -33753,6 +35395,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/station/medical/morgue)
+<<<<<<< HEAD
"lVE" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced/spawner/directional/east,
@@ -33786,6 +35429,8 @@
},
/turf/open/floor/iron,
/area/station/security/brig/entrance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lVF" = (
/obj/effect/turf_decal/trimline/yellow/filled/line,
/obj/structure/disposalpipe/segment{
@@ -34142,6 +35787,14 @@
},
/turf/open/floor/catwalk_floor/iron_white,
/area/station/science/ordnance/testlab)
+<<<<<<< HEAD
+=======
+"mcw" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mcA" = (
/obj/structure/closet/secure_closet/personal,
/obj/effect/turf_decal/tile/neutral/fourcorners,
@@ -34276,6 +35929,16 @@
/obj/effect/baseturf_helper/reinforced_plating/ceiling,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
+=======
+"mfP" = (
+/obj/machinery/atmospherics/components/tank/air/layer4,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mgn" = (
/obj/docking_port/stationary{
dir = 8;
@@ -34337,6 +36000,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+<<<<<<< HEAD
"mhx" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 9
@@ -34344,6 +36008,8 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mhz" = (
/obj/effect/turf_decal/tile/brown/half/contrasted{
dir = 8
@@ -34672,6 +36338,20 @@
},
/turf/open/floor/carpet/black,
/area/station/command/heads_quarters/hos)
+<<<<<<< HEAD
+=======
+"mlG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/obj/item/restraints/handcuffs,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mlK" = (
/turf/open/floor/fakepit,
/area/station/maintenance/department/medical)
@@ -34700,6 +36380,7 @@
/obj/machinery/photobooth/security,
/turf/open/floor/iron/dark/textured,
/area/station/security/execution/transfer)
+<<<<<<< HEAD
"mmG" = (
/obj/machinery/atmospherics/components/binary/pump/on{
dir = 1;
@@ -34708,6 +36389,8 @@
/obj/effect/turf_decal/stripes,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mmU" = (
/obj/machinery/computer/mecha{
dir = 8
@@ -34805,6 +36488,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
+=======
+"mnI" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mnP" = (
/turf/open/floor/iron,
/area/station/service/hydroponics)
@@ -34944,6 +36639,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/gravity_generator)
+<<<<<<< HEAD
"mqI" = (
/obj/structure/table/wood,
/obj/item/paper_bin/carbon{
@@ -34965,6 +36661,21 @@
},
/turf/open/floor/wood/parquet,
/area/station/medical/psychology)
+=======
+"mra" = (
+/obj/machinery/button/door/incinerator_vent_atmos_aux{
+ pixel_y = 24
+ },
+/obj/machinery/button/door/incinerator_vent_atmos_main{
+ pixel_y = 40
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mrq" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 8
@@ -35096,6 +36807,7 @@
/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/engine,
/area/station/command/corporate_dock)
+<<<<<<< HEAD
"mte" = (
/obj/effect/turf_decal/stripes{
dir = 6
@@ -35104,6 +36816,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mtB" = (
/obj/effect/turf_decal/tile/green/anticorner/contrasted{
dir = 4
@@ -35154,6 +36868,7 @@
/obj/structure/cable,
/turf/open/floor/iron/chapel,
/area/station/service/chapel)
+<<<<<<< HEAD
"muq" = (
/obj/structure/table,
/obj/item/ai_module/core/full/paladin_devotion,
@@ -35161,6 +36876,8 @@
/obj/machinery/flasher/directional/south,
/turf/open/floor/circuit,
/area/station/ai_monitored/turret_protected/ai_upload)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mut" = (
/obj/machinery/shower/directional/south,
/obj/structure/cable,
@@ -35193,6 +36910,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/wood/tile,
/area/station/service/chapel)
+<<<<<<< HEAD
"muW" = (
/obj/effect/turf_decal/tile/neutral{
dir = 4
@@ -35210,6 +36928,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mvb" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/effect/landmark/start/assistant,
@@ -35292,6 +37012,7 @@
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron/dark,
/area/station/service/cafeteria)
+<<<<<<< HEAD
"mvT" = (
/obj/machinery/pdapainter{
pixel_y = 2
@@ -35305,6 +37026,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mvU" = (
/obj/item/radio/intercom/prison/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -35629,6 +37352,17 @@
},
/turf/open/floor/carpet/red,
/area/station/command/heads_quarters/qm)
+<<<<<<< HEAD
+=======
+"mCb" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mCm" = (
/obj/effect/turf_decal/stripes,
/obj/item/radio/intercom/directional/south,
@@ -35730,6 +37464,25 @@
dir = 8
},
/area/station/science/lab)
+<<<<<<< HEAD
+=======
+"mDP" = (
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "antesat"
+ },
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Antechamber"
+ },
+/obj/effect/mapping_helpers/airlock/access/any/engineering/tcoms,
+/obj/structure/cable/layer3,
+/obj/machinery/elevator_control_panel/directional/south{
+ linked_elevator_id = "aisat";
+ pixel_x = 8;
+ pixel_y = -29
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mDT" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 1
@@ -36237,6 +37990,7 @@
/obj/effect/turf_decal/sand/plating,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
"mNa" = (
/obj/structure/closet/crate/freezer,
/obj/item/reagent_containers/blood/random,
@@ -36274,6 +38028,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mNl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron,
@@ -36513,6 +38269,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/atmos)
+<<<<<<< HEAD
"mST" = (
/obj/structure/closet/l3closet/virology,
/obj/effect/turf_decal/tile/green/half/contrasted{
@@ -36522,6 +38279,8 @@
/obj/effect/mapping_helpers/requests_console/supplies,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mSY" = (
/obj/machinery/camera/autoname/directional/east{
network = list("ss13","rd")
@@ -36691,6 +38450,17 @@
},
/turf/open/floor/plating,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"mWh" = (
+/obj/effect/turf_decal/stripes{
+ dir = 6
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mWB" = (
/obj/machinery/requests_console/auto_name/directional/south,
/obj/effect/mapping_helpers/requests_console/supplies,
@@ -36721,6 +38491,7 @@
/obj/structure/flora/rock/pile/style_random,
/turf/open/misc/asteroid,
/area/station/asteroid)
+<<<<<<< HEAD
"mWV" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 8
@@ -36729,6 +38500,8 @@
/obj/machinery/light/cold/dim/directional/west,
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mWX" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -36871,6 +38644,30 @@
},
/turf/open/floor/iron/dark/telecomms,
/area/station/science/server)
+<<<<<<< HEAD
+=======
+"mZr" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin/carbon{
+ pixel_x = 6
+ },
+/obj/item/folder/white{
+ pixel_x = -7;
+ pixel_y = -3
+ },
+/obj/item/pen{
+ pixel_x = 6
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/east{
+ id = "psychshutter";
+ name = "privacy shutter control"
+ },
+/turf/open/floor/wood/parquet,
+/area/station/medical/psychology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mZs" = (
/obj/effect/spawner/random/structure/crate,
/turf/open/misc/asteroid,
@@ -37214,6 +39011,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/glass/reinforced,
/area/station/engineering/atmos/upper)
+<<<<<<< HEAD
"ner" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -37229,6 +39027,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nes" = (
/obj/structure/cable,
/turf/open/floor/iron/dark,
@@ -37393,6 +39193,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/showroomfloor,
/area/station/engineering/main)
+<<<<<<< HEAD
"nfR" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -37402,6 +39203,8 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nfS" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/machinery/light/small/broken/directional/west,
@@ -37758,6 +39561,7 @@
/obj/item/clothing/glasses/hud/health,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"nnw" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -37768,6 +39572,8 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nny" = (
/obj/effect/turf_decal/tile/red/half/contrasted,
/obj/structure/disposalpipe/segment{
@@ -37889,6 +39695,7 @@
},
/turf/open/floor/iron/dark,
/area/station/ai_monitored/security/armory)
+<<<<<<< HEAD
"npq" = (
/mob/living/basic/parrot/poly,
/obj/structure/filingcabinet/chestdrawer,
@@ -37899,6 +39706,8 @@
/obj/machinery/camera/autoname/directional/west,
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"npw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
@@ -38018,6 +39827,7 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/engine,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"nrU" = (
/obj/machinery/button/elevator/directional/east{
id = "aisat"
@@ -38027,6 +39837,8 @@
},
/turf/open/floor/iron/dark/smooth_large,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nrW" = (
/obj/structure/flora/bush/sparsegrass/style_random,
/obj/machinery/camera/autoname/directional/south{
@@ -38363,6 +40175,38 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"nzT" = (
+/obj/effect/landmark/start/ai,
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/item/radio/intercom/directional/west{
+ freerange = 1;
+ listening = 0;
+ name = "Common Channel";
+ pixel_y = -8
+ },
+/obj/item/radio/intercom/directional/west{
+ listening = 0;
+ frequency = 1447;
+ freerange = 1;
+ pixel_y = 6
+ },
+/obj/machinery/button/door/directional/south{
+ id = "AI Core shutters";
+ name = "AI Core Shutters Control";
+ pixel_x = -24;
+ req_access = list("ai_upload")
+ },
+/obj/machinery/camera/directional/north{
+ c_tag = "AI Chamber - Core";
+ network = list("aicore")
+ },
+/obj/structure/cable,
+/obj/effect/mapping_helpers/apc/cell_5k,
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nAa" = (
/obj/machinery/door/firedoor/border_only{
dir = 8
@@ -38414,6 +40258,7 @@
/obj/structure/cable,
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+<<<<<<< HEAD
"nAD" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -38425,6 +40270,8 @@
/obj/item/clothing/glasses/meson/engine,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nAG" = (
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 1
@@ -38449,6 +40296,28 @@
/obj/machinery/firealarm/directional/west,
/turf/open/floor/iron/textured,
/area/station/security/processing)
+<<<<<<< HEAD
+=======
+"nBA" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/directions/evac/directional/south,
+/obj/structure/sign/directions/medical/directional/south{
+ pixel_y = -24;
+ dir = 8
+ },
+/obj/structure/sign/directions/science/directional/south{
+ pixel_y = -40;
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nBV" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -38634,12 +40503,15 @@
},
/turf/open/floor/iron/dark,
/area/station/medical/chemistry/minisat)
+<<<<<<< HEAD
"nFk" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/structure/cable,
/turf/open/floor/catwalk_floor,
/area/station/maintenance/central/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nFl" = (
/obj/structure/chair/sofa/bench/right{
dir = 8
@@ -38653,6 +40525,7 @@
},
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+<<<<<<< HEAD
"nFO" = (
/obj/structure/transport/linear/public,
/obj/effect/landmark/transport/transport_id{
@@ -38661,6 +40534,8 @@
/obj/machinery/holopad,
/turf/open/openspace,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nFS" = (
/obj/structure/closet/wardrobe/white,
/obj/item/restraints/handcuffs/cable/zipties,
@@ -39106,6 +40981,14 @@
},
/turf/open/floor/plating,
/area/station/maintenance/port/greater)
+<<<<<<< HEAD
+=======
+"nNN" = (
+/obj/effect/turf_decal/stripes,
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nNP" = (
/obj/machinery/power/port_gen/pacman/pre_loaded,
/turf/open/floor/plating,
@@ -39149,6 +41032,10 @@
/area/station/command/bridge)
"nPw" = (
/obj/structure/water_source/puddle,
+<<<<<<< HEAD
+=======
+/obj/item/reagent_containers/cup/watering_can,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/grass,
/area/station/security/prison/garden)
"nPM" = (
@@ -39413,6 +41300,7 @@
/obj/machinery/airalarm/directional/west,
/turf/open/floor/iron,
/area/station/cargo/warehouse/upper)
+<<<<<<< HEAD
"nXf" = (
/obj/structure/table/reinforced,
/obj/item/phone,
@@ -39422,6 +41310,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nXw" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/green/fourcorners,
@@ -39494,6 +41384,18 @@
},
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"nZb" = (
+/obj/structure/closet/l3closet/virology,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/requests_console/auto_name/directional/north,
+/obj/effect/mapping_helpers/requests_console/supplies,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nZo" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -39805,6 +41707,26 @@
},
/turf/open/floor/iron,
/area/station/cargo/drone_bay)
+<<<<<<< HEAD
+=======
+"oez" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/directions/science/directional/north{
+ dir = 4
+ },
+/obj/structure/sign/directions/engineering/directional/north{
+ pixel_y = 40;
+ dir = 4
+ },
+/obj/structure/sign/directions/command/directional/north{
+ pixel_y = 24;
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oeL" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -39843,6 +41765,20 @@
/obj/machinery/firealarm/directional/east,
/turf/open/floor/glass,
/area/station/command/meeting_room)
+<<<<<<< HEAD
+=======
+"ofG" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/box/red,
+/obj/machinery/light/directional/south,
+/obj/machinery/camera/autoname/directional/west{
+ network = list("ss13","rd")
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ofL" = (
/obj/effect/spawner/random/structure/crate,
/obj/effect/turf_decal/stripes/line,
@@ -40529,6 +42465,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/iron,
/area/station/commons/storage/tools)
+<<<<<<< HEAD
"ous" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -40548,6 +42485,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ouA" = (
/obj/effect/landmark/blobstart,
/turf/open/misc/asteroid,
@@ -40933,6 +42872,7 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/security/execution/education)
+<<<<<<< HEAD
"oBv" = (
/obj/structure/transport/linear/public,
/obj/machinery/elevator_control_panel{
@@ -40942,6 +42882,8 @@
},
/turf/open/openspace,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oBE" = (
/obj/effect/turf_decal/tile/neutral,
/obj/structure/disposalpipe/segment{
@@ -41317,6 +43259,17 @@
/obj/effect/spawner/random/structure/grille,
/turf/open/space/openspace,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"oIV" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/cold/dim/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oJt" = (
/obj/structure/lattice,
/obj/structure/disposaloutlet{
@@ -41540,6 +43493,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white/smooth_large,
/area/station/science/explab)
+<<<<<<< HEAD
"oMQ" = (
/obj/structure/chair/comfy/brown{
dir = 4;
@@ -41547,6 +43501,8 @@
},
/turf/open/floor/carpet/executive,
/area/station/command/meeting_room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oNo" = (
/obj/machinery/camera/autoname/directional/west,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -41565,6 +43521,31 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden,
/turf/open/floor/iron/dark/telecomms,
/area/station/science/server)
+<<<<<<< HEAD
+=======
+"oNM" = (
+/obj/machinery/door/window/brigdoor/right/directional/east{
+ name = "Primary AI Core Access";
+ req_access = list("ai_upload")
+ },
+/obj/machinery/turretid{
+ icon_state = "control_stun";
+ name = "AI Chamber turret control";
+ pixel_x = 3;
+ pixel_y = -23
+ },
+/obj/machinery/flasher/directional/north{
+ id = "AI"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "AI Core shutters";
+ name = "AI Core Shutters"
+ },
+/obj/structure/cable,
+/turf/open/floor/circuit/green,
+/area/station/ai_monitored/turret_protected/ai)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oOb" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -41803,6 +43784,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/restrooms)
+<<<<<<< HEAD
+=======
+"oRR" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oSa" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/machinery/bluespace_beacon,
@@ -41888,6 +43881,18 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"oUb" = (
+/obj/machinery/door/airlock/engineering/glass{
+ name = "Supermatter Engine Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/engineering/general,
+/obj/structure/cable,
+/obj/machinery/door/firedoor,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oUd" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -42381,6 +44386,18 @@
/obj/machinery/camera/autoname/directional/west,
/turf/open/floor/iron/freezer,
/area/station/security/prison/shower)
+<<<<<<< HEAD
+=======
+"pbD" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/structure/ladder{
+ icon_state = "ladder10"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pbO" = (
/obj/structure/cable,
/obj/structure/disposalpipe/segment{
@@ -42880,6 +44897,15 @@
},
/turf/open/floor/iron,
/area/station/security/warden)
+<<<<<<< HEAD
+=======
+"pla" = (
+/obj/effect/landmark/start/cyborg,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/recharge_floor,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pld" = (
/obj/effect/turf_decal/siding/purple{
dir = 10
@@ -42975,6 +45001,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
"pnw" = (
/obj/structure/cable,
/obj/machinery/turretid{
@@ -42985,6 +45012,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/ai_monitored/turret_protected/aisat/uppersouth)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pny" = (
/obj/machinery/atmospherics/pipe/multiz/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
@@ -43226,7 +45255,11 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/grimy,
/area/station/service/chapel/office)
+<<<<<<< HEAD
"prL" = (
+=======
+"prS" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/sign/departments/psychology/directional/north,
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 1
@@ -43574,10 +45607,18 @@
},
/turf/open/floor/engine/n2,
/area/station/engineering/atmos)
+<<<<<<< HEAD
+=======
+"pxu" = (
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pxM" = (
/obj/machinery/shower/directional/south,
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/restrooms)
+<<<<<<< HEAD
"pxO" = (
/obj/structure/cable,
/obj/machinery/light/warm/dim/directional/south,
@@ -43589,6 +45630,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white,
/area/station/medical/chemistry/minisat)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pxR" = (
/obj/machinery/door/airlock/external,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -43610,6 +45653,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/maintenance/port/lesser)
+<<<<<<< HEAD
"pyn" = (
/obj/machinery/door/airlock/virology/glass{
name = "Virology Lab";
@@ -43631,6 +45675,8 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pyo" = (
/obj/structure/cable,
/obj/structure/disposalpipe/junction{
@@ -43689,11 +45735,21 @@
},
/turf/open/floor/iron,
/area/station/security/interrogation)
+<<<<<<< HEAD
+=======
+"pyH" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/item/circuitboard/machine/cyborgrecharger,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pyK" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/maintenance/department/engine)
+<<<<<<< HEAD
"pyN" = (
/obj/effect/turf_decal/trimline/yellow/filled/line{
dir = 8
@@ -43702,6 +45758,8 @@
/obj/machinery/camera/autoname/directional/west,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pyO" = (
/turf/open/openspace,
/area/station/maintenance/port/greater)
@@ -43799,6 +45857,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/construction/mining/aux_base)
+<<<<<<< HEAD
"pBh" = (
/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
cycle_id = "antesat"
@@ -43815,6 +45874,8 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pBk" = (
/obj/machinery/power/tracker,
/obj/structure/cable,
@@ -44171,6 +46232,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/carpet,
/area/station/security/detectives_office)
+<<<<<<< HEAD
"pGE" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -44183,6 +46245,8 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/iron,
/area/station/command/gateway)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pGH" = (
/obj/machinery/door/airlock/external{
name = "Server Room"
@@ -44583,10 +46647,13 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/iron/dark/textured,
/area/station/security/interrogation)
+<<<<<<< HEAD
"pOj" = (
/obj/effect/spawner/random/trash/hobo_squat,
/turf/open/floor/iron/dark,
/area/station/maintenance/department/engine)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pOv" = (
/obj/structure/chair/pew{
dir = 4
@@ -44653,6 +46720,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/textured_large,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
"pQd" = (
/obj/structure/transport/linear/public,
/obj/effect/landmark/transport/transport_id{
@@ -44663,6 +46731,8 @@
},
/turf/open/floor/plating/elevatorshaft,
/area/station/medical/treatment_center)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pQl" = (
/obj/effect/spawner/random/structure/closet_private,
/obj/machinery/airalarm/directional/west,
@@ -44741,6 +46811,26 @@
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating,
/area/station/security/warden)
+<<<<<<< HEAD
+=======
+"pRm" = (
+/obj/structure/cable/layer3,
+/obj/machinery/button/elevator/directional/south{
+ pixel_y = -25;
+ id = "aisat";
+ pixel_x = 8
+ },
+/obj/machinery/lift_indicator/directional/south{
+ pixel_x = -6;
+ pixel_y = -40;
+ linked_elevator_id = "aisat"
+ },
+/obj/machinery/camera/autoname/directional/south{
+ network = list("aicore")
+ },
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/ai_monitored/turret_protected/ai)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pRq" = (
/obj/effect/turf_decal/trimline/yellow/arrow_cw{
dir = 9
@@ -45106,6 +47196,19 @@
/obj/structure/cable,
/turf/open/floor/iron/textured,
/area/station/engineering/storage/tech)
+<<<<<<< HEAD
+=======
+"pWG" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer1,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pWL" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/decal/cleanable/blood/tracks{
@@ -45211,6 +47314,17 @@
},
/turf/open/floor/wood,
/area/station/commons/lounge)
+<<<<<<< HEAD
+=======
+"pYw" = (
+/obj/machinery/power/apc/auto_name/directional/south,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/chair/stool/directional/west,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/uppernorth)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pYE" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -45275,6 +47389,26 @@
/obj/structure/railing,
/turf/open/openspace,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"qaz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/sign/directions/science/directional/north{
+ dir = 4
+ },
+/obj/structure/sign/directions/command/directional/north{
+ pixel_y = 40;
+ dir = 8
+ },
+/obj/structure/sign/directions/evac/directional/north{
+ pixel_y = 24;
+ dir = 2
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qaE" = (
/obj/effect/landmark/start/janitor,
/obj/effect/decal/cleanable/dirt,
@@ -45413,6 +47547,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/commons/locker)
+<<<<<<< HEAD
"qdu" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 4
@@ -45420,6 +47555,8 @@
/obj/structure/sign/poster/official/random/directional/east,
/turf/open/floor/iron,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qdA" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 4
@@ -45448,12 +47585,15 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/textured,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
"qea" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/port/lesser)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qeg" = (
/obj/machinery/pdapainter/security,
/obj/machinery/camera/autoname/directional/north,
@@ -45555,6 +47695,18 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+<<<<<<< HEAD
+=======
+"qgn" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qgy" = (
/obj/effect/turf_decal/trimline/green/filled/line,
/obj/structure/railing/corner,
@@ -45583,6 +47735,16 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron/textured_large,
/area/station/cargo/sorting)
+<<<<<<< HEAD
+=======
+"qgD" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qgE" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green{
@@ -45909,6 +48071,17 @@
/obj/item/stamp/granted,
/turf/open/floor/carpet/executive,
/area/station/command/meeting_room)
+<<<<<<< HEAD
+=======
+"qms" = (
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/hollow/reinforced/end{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/station/hallway/secondary/command)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qmD" = (
/obj/machinery/door/airlock/engineering/glass{
name = "Primary Tool Storage"
@@ -45964,6 +48137,7 @@
},
/turf/open/floor/iron/white/smooth_half,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"qnU" = (
/obj/structure/cable,
/obj/effect/turf_decal/trimline/yellow/filled/line{
@@ -45973,6 +48147,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qob" = (
/obj/structure/table,
/obj/item/stock_parts/micro_laser{
@@ -46105,6 +48281,22 @@
/obj/effect/turf_decal/trimline/yellow/filled/line,
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+<<<<<<< HEAD
+=======
+"qqq" = (
+/obj/structure/table/reinforced,
+/obj/machinery/coffeemaker{
+ pixel_y = 5
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 6
+ },
+/turf/open/floor/iron/half,
+/area/station/security/breakroom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qqy" = (
/obj/structure/rack,
/obj/effect/spawner/random/techstorage/tcomms_all,
@@ -46134,6 +48326,14 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/security/brig/entrance)
+<<<<<<< HEAD
+=======
+"qqL" = (
+/obj/item/kirbyplants/random,
+/obj/structure/sign/directions/vault/directional/west,
+/turf/open/floor/carpet/red,
+/area/station/command/heads_quarters/qm)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qqQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 4
@@ -46391,6 +48591,18 @@
/obj/item/radio/intercom/directional/north,
/turf/open/floor/iron/white,
/area/station/science/genetics)
+<<<<<<< HEAD
+=======
+"qvV" = (
+/obj/structure/cable,
+/obj/effect/turf_decal/tile/green/fourcorners,
+/obj/item/radio/intercom/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qvX" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -46407,11 +48619,14 @@
},
/turf/open/floor/carpet/executive,
/area/station/command/meeting_room)
+<<<<<<< HEAD
"qwf" = (
/obj/item/kirbyplants/random,
/obj/structure/sign/directions/vault/directional/west,
/turf/open/floor/carpet/red,
/area/station/command/heads_quarters/qm)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qwu" = (
/obj/structure/disposalpipe/segment{
dir = 10
@@ -46419,6 +48634,13 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/department/cargo)
+<<<<<<< HEAD
+=======
+"qwB" = (
+/obj/item/shovel/spade,
+/turf/open/floor/grass,
+/area/station/security/prison/garden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qwG" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -46561,6 +48783,25 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/dark,
/area/station/maintenance/radshelter/civil)
+<<<<<<< HEAD
+=======
+"qAo" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/directions/security/directional/south{
+ pixel_y = -24;
+ dir = 8
+ },
+/obj/structure/sign/directions/supply/directional/south{
+ dir = 8
+ },
+/obj/structure/sign/directions/engineering/directional/south{
+ pixel_y = -40
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qAp" = (
/mob/living/basic/mining/goliath/ancient,
/turf/open/misc/asteroid/airless,
@@ -46648,6 +48889,7 @@
/obj/effect/spawner/random/trash/mess,
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"qCp" = (
/obj/machinery/button/elevator/directional/east{
id = "aisat"
@@ -46657,6 +48899,8 @@
},
/turf/open/floor/iron/dark/smooth_large,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qCy" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 1
@@ -46914,6 +49158,15 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/corner,
/area/station/engineering/atmos/upper)
+<<<<<<< HEAD
+=======
+"qHp" = (
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qHs" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -46967,6 +49220,7 @@
/obj/structure/cable/multilayer/multiz,
/turf/open/floor/plating,
/area/station/maintenance/department/science)
+<<<<<<< HEAD
"qIp" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -46987,6 +49241,8 @@
/obj/machinery/door/window/left/directional/east,
/turf/open/floor/iron,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qIr" = (
/obj/structure/railing/corner,
/obj/effect/decal/cleanable/dirt/dust,
@@ -47013,6 +49269,7 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
"qJn" = (
/obj/machinery/button/elevator/directional/east{
id = "cargo"
@@ -47027,6 +49284,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qJo" = (
/obj/structure/table/glass,
/obj/effect/spawner/random/medical/medkit,
@@ -47344,6 +49603,7 @@
/obj/machinery/coffeemaker,
/turf/open/floor/iron/white/herringbone,
/area/station/science/breakroom)
+<<<<<<< HEAD
"qPJ" = (
/obj/item/radio/intercom/directional/north,
/obj/structure/rack,
@@ -47358,6 +49618,8 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qPN" = (
/obj/structure/disposalpipe/junction{
dir = 4
@@ -47682,6 +49944,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/grimy,
/area/station/service/chapel/office)
+<<<<<<< HEAD
+=======
+"qWs" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qWt" = (
/obj/machinery/smartfridge/extract/preloaded,
/obj/structure/sign/poster/random/directional/north,
@@ -47959,6 +50231,19 @@
/obj/structure/sign/poster/random/directional/south,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+<<<<<<< HEAD
+=======
+"raX" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 4;
+ id = "hopdesk"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/spawner/structure/window/hollow/reinforced/end,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"raZ" = (
/obj/machinery/door/airlock/maintenance_hatch,
/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance,
@@ -47982,6 +50267,25 @@
dir = 1
},
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"rbs" = (
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/ai_upload";
+ icon_state = "control_stun";
+ name = "AI Upload Turret Control";
+ pixel_x = -28
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/door/window/brigdoor/left/directional/south,
+/obj/effect/turf_decal/siding/purple{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/white,
+/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rbw" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
@@ -48056,6 +50360,19 @@
},
/turf/open/floor/iron/checker,
/area/station/maintenance/department/medical)
+<<<<<<< HEAD
+=======
+"rcz" = (
+/obj/machinery/computer/security{
+ dir = 4
+ },
+/obj/structure/sign/poster/official/random/directional/west,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rcG" = (
/obj/machinery/mech_bay_recharge_port{
dir = 1
@@ -48434,6 +50751,17 @@
/obj/structure/sign/warning/vacuum/directional/east,
/turf/open/floor/plating,
/area/station/maintenance/department/science)
+<<<<<<< HEAD
+=======
+"rix" = (
+/obj/structure/closet/secure_closet/medical1,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/north,
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"riE" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
@@ -48658,6 +50986,15 @@
/obj/item/pen/red,
/turf/open/floor/carpet,
/area/station/service/lawoffice)
+<<<<<<< HEAD
+=======
+"rkI" = (
+/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{
+ dir = 10
+ },
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rkL" = (
/obj/structure/table,
/obj/structure/window/spawner/directional/east,
@@ -49631,6 +51968,19 @@
/obj/machinery/airalarm/directional/south,
/turf/open/floor/iron/dark/small,
/area/station/engineering/transit_tube)
+<<<<<<< HEAD
+=======
+"rBZ" = (
+/obj/structure/cable,
+/obj/machinery/turretid{
+ control_area = "/area/station/ai_monitored/turret_protected/aisat_interior";
+ name = "AI Antechamber turret control";
+ pixel_y = 27
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/station/ai_monitored/turret_protected/aisat/uppersouth)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rCd" = (
/obj/machinery/door/window/brigdoor/left/directional/east{
name = "Command Desk";
@@ -49758,6 +52108,16 @@
/obj/machinery/holopad,
/turf/open/floor/iron,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"rDx" = (
+/obj/machinery/vending/wardrobe/viro_wardrobe,
+/obj/effect/turf_decal/tile/green/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/virology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rDD" = (
/obj/structure/stairs/west,
/turf/open/floor/iron/stairs/left{
@@ -49886,6 +52246,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/iron/dark,
/area/station/command/corporate_showroom)
+<<<<<<< HEAD
"rFY" = (
/obj/structure/table/reinforced/rglass,
/obj/machinery/button/door{
@@ -49924,6 +52285,8 @@
},
/turf/open/floor/iron/textured,
/area/station/security/warden)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rFZ" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 8;
@@ -50049,6 +52412,19 @@
},
/turf/open/floor/iron/white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"rIf" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/storage/medkit,
+/obj/structure/table,
+/obj/machinery/light/directional/south,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron,
+/area/station/command/gateway)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rIw" = (
/obj/machinery/light_switch/directional/north,
/turf/open/floor/catwalk_floor/iron_dark,
@@ -50153,6 +52529,18 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron/dark/textured,
/area/station/security/interrogation)
+<<<<<<< HEAD
+=======
+"rKq" = (
+/obj/structure/sign/warning/vacuum/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/exit/departure_lounge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rKW" = (
/obj/machinery/photocopier,
/obj/effect/turf_decal/bot_red,
@@ -50179,6 +52567,20 @@
/obj/structure/cable/multilayer/multiz,
/turf/open/floor/plating,
/area/station/maintenance/department/medical)
+<<<<<<< HEAD
+=======
+"rLz" = (
+/obj/effect/turf_decal/stripes{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer1,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rLJ" = (
/obj/effect/turf_decal/sand/plating,
/obj/effect/spawner/random/structure/girder,
@@ -50449,6 +52851,7 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/iron,
/area/station/service/hydroponics)
+<<<<<<< HEAD
"rRe" = (
/obj/effect/turf_decal/delivery,
/obj/effect/decal/cleanable/dirt,
@@ -50468,6 +52871,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rRs" = (
/obj/structure/broken_flooring/corner/directional/north,
/obj/effect/landmark/generic_maintenance_landmark,
@@ -50726,16 +53131,56 @@
},
/turf/open/floor/iron,
/area/station/commons/vacant_room/commissary)
+<<<<<<< HEAD
+=======
+"rVD" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/sign/directions/supply/directional/east{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rVL" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/engine,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"rVR" = (
/obj/effect/turf_decal/tile/yellow,
/obj/structure/sign/poster/official/random/directional/east,
/turf/open/floor/iron,
/area/station/hallway/primary/starboard)
+=======
+"rVT" = (
+/obj/effect/turf_decal/stripes,
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+"rWf" = (
+/obj/structure/sign/poster/official/cleanliness/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/item/reagent_containers/condiment/sugar{
+ pixel_y = 4
+ },
+/obj/item/storage/pill_bottle/happinesspsych{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/storage/box/coffeepack,
+/obj/item/storage/box/coffeepack/robusta,
+/obj/item/reagent_containers/condiment/soymilk,
+/obj/item/reagent_containers/condiment/milk,
+/obj/structure/closet/secure_closet/freezer/empty/open,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/machinery/light/small/dim/directional/west,
+/turf/open/floor/iron/dark,
+/area/station/service/cafeteria)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rWh" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -50960,6 +53405,18 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron,
/area/station/security/prison/garden)
+<<<<<<< HEAD
+=======
+"rYe" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{
+ dir = 1
+ },
+/obj/structure/window/spawner/directional/east,
+/obj/effect/turf_decal/box/red,
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rYg" = (
/obj/effect/landmark/event_spawn,
/obj/machinery/holopad,
@@ -51572,6 +54029,7 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/station/maintenance/department/medical)
+<<<<<<< HEAD
"siO" = (
/obj/structure/stairs/north,
/obj/structure/railing{
@@ -51582,6 +54040,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"siR" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
@@ -51875,6 +54335,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/security/interrogation)
+<<<<<<< HEAD
"snc" = (
/obj/machinery/door/window/brigdoor/right/directional/east{
name = "Primary AI Core Access";
@@ -51897,6 +54358,8 @@
/obj/structure/cable,
/turf/open/floor/circuit/green,
/area/station/ai_monitored/turret_protected/ai)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"snj" = (
/obj/effect/turf_decal/stripes/asteroid/line{
dir = 4
@@ -51935,6 +54398,7 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/fore)
+<<<<<<< HEAD
"soc" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -51942,6 +54406,8 @@
dir = 1
},
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sok" = (
/obj/machinery/newscaster/directional/west,
/obj/machinery/computer/records/medical/laptop,
@@ -52334,6 +54800,27 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"sut" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/sign/directions/supply/directional/south{
+ dir = 8
+ },
+/obj/structure/sign/directions/engineering/directional/south{
+ pixel_y = -40;
+ dir = 4
+ },
+/obj/structure/sign/directions/security/directional/south{
+ pixel_y = -24;
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"suw" = (
/obj/machinery/chem_master,
/turf/open/floor/iron/dark/small,
@@ -52528,6 +55015,10 @@
/area/station/engineering/atmos)
"syF" = (
/obj/effect/landmark/start/prisoner,
+<<<<<<< HEAD
+=======
+/obj/item/plant_analyzer,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/grass,
/area/station/security/prison/garden)
"syL" = (
@@ -52843,10 +55334,13 @@
},
/turf/open/misc/asteroid,
/area/station/asteroid)
+<<<<<<< HEAD
"sDQ" = (
/obj/structure/sign/poster/contraband/communist_state/directional/east,
/turf/open/space/basic,
/area/space/nearstation)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sEe" = (
/obj/structure/disposalpipe/segment{
dir = 4
@@ -53258,6 +55752,19 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/service/bar/backroom)
+<<<<<<< HEAD
+=======
+"sLr" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden,
+/obj/machinery/airlock_sensor/incinerator_ordmix{
+ pixel_y = -24
+ },
+/turf/open/floor/engine,
+/area/station/science/ordnance/burnchamber)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sLt" = (
/obj/machinery/camera/autoname/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -53589,6 +56096,17 @@
dir = 1
},
/area/station/command/bridge)
+<<<<<<< HEAD
+=======
+"sRP" = (
+/obj/machinery/photocopier,
+/obj/machinery/light/directional/north,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sRU" = (
/obj/machinery/light/small/dim/directional/south,
/obj/item/paper_bin,
@@ -53703,6 +56221,15 @@
},
/turf/open/floor/iron,
/area/station/security/brig)
+<<<<<<< HEAD
+=======
+"sUD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable,
+/turf/open/floor/catwalk_floor,
+/area/station/maintenance/central/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sUI" = (
/obj/machinery/door/airlock{
name = "Kitchen Cold Room"
@@ -53732,6 +56259,7 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"sVG" = (
/obj/effect/turf_decal/trimline/blue/filled/line{
dir = 5
@@ -53741,6 +56269,8 @@
},
/turf/open/floor/iron/white,
/area/station/command/heads_quarters/cmo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sVM" = (
/obj/machinery/door/airlock/public/glass{
name = "Garden"
@@ -53827,6 +56357,23 @@
/obj/effect/mapping_helpers/airlock/access/all/supply/mining,
/turf/open/floor/iron,
/area/station/cargo/miningoffice)
+<<<<<<< HEAD
+=======
+"sXf" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/multitool,
+/obj/item/wrench,
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sXG" = (
/obj/effect/turf_decal/tile/purple/opposingcorners,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -54276,6 +56823,16 @@
},
/turf/open/space/basic,
/area/space/nearstation)
+<<<<<<< HEAD
+=======
+"tgv" = (
+/obj/machinery/computer/crew{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/red/anticorner/contrasted,
+/turf/open/floor/iron/textured,
+/area/station/security/warden)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tgw" = (
/obj/machinery/power/smes/full,
/obj/structure/cable,
@@ -55047,6 +57604,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"tsV" = (
/obj/machinery/lift_indicator/directional/north{
linked_elevator_id = "cargo"
@@ -55059,6 +57617,8 @@
},
/turf/open/floor/iron,
/area/station/cargo/storage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tsX" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/sign/warning/biohazard,
@@ -55194,6 +57754,7 @@
},
/turf/open/floor/wood/parquet,
/area/station/service/theater)
+<<<<<<< HEAD
"tvr" = (
/obj/structure/railing{
dir = 1
@@ -55204,6 +57765,8 @@
/obj/machinery/newscaster/directional/east,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tvB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
@@ -55245,6 +57808,7 @@
/obj/effect/turf_decal/caution/stand_clear,
/turf/open/floor/engine,
/area/station/command/corporate_dock)
+<<<<<<< HEAD
"txp" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/green/fourcorners,
@@ -55254,6 +57818,14 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+"txw" = (
+/obj/structure/table,
+/obj/effect/spawner/round_default_module,
+/obj/machinery/flasher/directional/north,
+/turf/open/floor/circuit/red,
+/area/station/ai_monitored/turret_protected/ai_upload)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"txx" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt/dust,
@@ -55328,6 +57900,7 @@
/obj/item/kirbyplants/random,
/turf/open/floor/iron,
/area/station/security/office)
+<<<<<<< HEAD
"tzq" = (
/obj/structure/table/reinforced,
/obj/machinery/coffeemaker{
@@ -55341,6 +57914,8 @@
},
/turf/open/floor/iron/half,
/area/station/security/breakroom)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tzs" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/iron,
@@ -55543,6 +58118,7 @@
/obj/effect/turf_decal/trimline/yellow/filled/line,
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
"tCl" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor/left/directional/east{
@@ -55552,6 +58128,8 @@
/obj/item/hand_labeler,
/turf/open/floor/iron,
/area/station/security/brig/entrance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tCm" = (
/obj/effect/landmark/event_spawn,
/obj/structure/chair/wood{
@@ -55753,6 +58331,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"tFq" = (
/obj/structure/closet/secure_closet/medical1,
/obj/effect/turf_decal/tile/green/half/contrasted{
@@ -55761,6 +58340,8 @@
/obj/machinery/airalarm/directional/north,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tFD" = (
/obj/structure/sink/directional/west,
/obj/structure/mirror/directional/east,
@@ -56030,6 +58611,20 @@
},
/turf/open/floor/iron,
/area/station/maintenance/solars/starboard/fore)
+<<<<<<< HEAD
+=======
+"tKX" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tLa" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -56237,6 +58832,19 @@
"tNE" = (
/turf/open/floor/plating,
/area/station/maintenance/aft/upper)
+<<<<<<< HEAD
+=======
+"tNK" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden,
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos,
+/obj/machinery/airlock_sensor/incinerator_atmos{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/engine,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tNN" = (
/obj/effect/decal/cleanable/blood/old{
icon_state = "floor6-old"
@@ -57068,6 +59676,16 @@
/obj/machinery/camera/autoname/directional/west,
/turf/open/floor/iron/textured,
/area/station/security/processing)
+<<<<<<< HEAD
+=======
+"uca" = (
+/obj/machinery/modular_computer/preset/engineering,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ucb" = (
/obj/effect/spawner/random/structure/closet_empty/crate/with_loot,
/turf/open/floor/plating,
@@ -57154,6 +59772,17 @@
/obj/effect/spawner/random/bureaucracy/pen,
/turf/open/floor/iron,
/area/station/engineering/main)
+<<<<<<< HEAD
+=======
+"uei" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/binary/valve/digital/on{
+ dir = 4;
+ name = "Cooling Loop Bypass"
+ },
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uep" = (
/obj/item/cardboard_cutout/nuclear_operative,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -57293,6 +59922,14 @@
},
/turf/open/floor/iron/showroomfloor,
/area/station/command/heads_quarters/qm)
+<<<<<<< HEAD
+=======
+"ugJ" = (
+/obj/effect/spawner/random/maintenance,
+/obj/structure/closet,
+/turf/open/floor/iron/dark,
+/area/station/maintenance/department/engine)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ugN" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Tech Storage"
@@ -57468,6 +60105,19 @@
/obj/structure/closet/crate/bin,
/turf/open/floor/iron,
/area/station/commons/vacant_room/commissary)
+<<<<<<< HEAD
+=======
+"ujv" = (
+/obj/structure/stairs/north,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/structure/sign/directions/arrival/directional/west{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/station/hallway/primary/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ujx" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/chair/plastic{
@@ -57507,6 +60157,21 @@
},
/turf/open/floor/plating,
/area/station/maintenance/solars/port)
+<<<<<<< HEAD
+=======
+"ukv" = (
+/obj/machinery/lift_indicator/directional/west{
+ linked_elevator_id = "medbay1"
+ },
+/obj/machinery/button/elevator/directional/west{
+ id = "medbay1"
+ },
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 10
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/medbay/central)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ukw" = (
/obj/effect/turf_decal/siding/purple{
dir = 6
@@ -57697,6 +60362,18 @@
/obj/structure/chair/office,
/turf/open/floor/iron,
/area/station/cargo/storage)
+<<<<<<< HEAD
+=======
+"unH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/directional/west,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/simple/dark/visible/layer5{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"unL" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/sign/poster/random/directional/south,
@@ -57832,6 +60509,24 @@
/obj/effect/spawner/random/trash/food_packaging,
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"uqM" = (
+/obj/structure/table/reinforced,
+/obj/item/stamp/head/ce,
+/obj/item/folder/yellow,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 10
+ },
+/obj/structure/cable,
+/obj/machinery/keycard_auth/wall_mounted/directional/west{
+ pixel_y = -10
+ },
+/obj/item/pen/screwdriver,
+/obj/item/stamp/head/ce,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ura" = (
/obj/structure/closet/crate/science{
opened = 1;
@@ -57961,6 +60656,17 @@
},
/turf/open/floor/grass,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"usL" = (
+/obj/machinery/lift_indicator{
+ pixel_y = -3;
+ pixel_x = -6;
+ linked_elevator_id = "aisat"
+ },
+/turf/closed/wall/r_wall,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"usQ" = (
/obj/effect/turf_decal/tile/yellow,
/obj/item/kirbyplants/random,
@@ -58428,6 +61134,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+<<<<<<< HEAD
"uCd" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
/obj/effect/turf_decal/stripes{
@@ -58436,6 +61143,8 @@
/obj/machinery/light/directional/east,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uCj" = (
/obj/effect/turf_decal/tile/blue/opposingcorners,
/obj/effect/turf_decal/tile/red/opposingcorners{
@@ -58681,6 +61390,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/station/maintenance/central/lesser)
+<<<<<<< HEAD
"uGg" = (
/obj/machinery/modular_computer/preset/engineering,
/obj/effect/turf_decal/trimline/yellow/filled/line{
@@ -58688,6 +61398,8 @@
},
/turf/open/floor/iron,
/area/station/command/heads_quarters/ce)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uGv" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/white/line{
@@ -59061,6 +61773,7 @@
/obj/effect/turf_decal/siding/white,
/turf/open/floor/iron/herringbone,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
"uNx" = (
/obj/machinery/airlock_controller/incinerator_atmos{
pixel_x = 32
@@ -59068,6 +61781,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uNy" = (
/obj/structure/table,
/obj/item/assembly/igniter,
@@ -59205,6 +61920,23 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/large,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"uPg" = (
+/obj/effect/turf_decal/trimline/blue/filled/line{
+ dir = 9
+ },
+/obj/machinery/lift_indicator/directional/south{
+ linked_elevator_id = "medbay1";
+ pixel_x = -32
+ },
+/obj/machinery/button/elevator/directional/south{
+ id = "medbay1";
+ pixel_x = -32
+ },
+/turf/open/floor/iron/white,
+/area/station/medical/treatment_center)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uPi" = (
/obj/effect/turf_decal/tile/brown/half/contrasted,
/obj/effect/decal/cleanable/dirt,
@@ -59295,6 +62027,7 @@
},
/turf/open/floor/wood,
/area/station/service/theater)
+<<<<<<< HEAD
"uRn" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer/layer2{
dir = 1
@@ -59306,6 +62039,8 @@
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uRG" = (
/turf/open/openspace,
/area/station/security/prison/shower)
@@ -59364,6 +62099,20 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron/dark,
/area/station/science/server)
+<<<<<<< HEAD
+=======
+"uTk" = (
+/obj/machinery/light/warm/dim/directional/north,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/trimline/yellow/filled/mid_joiner{
+ dir = 1
+ },
+/turf/open/floor/iron/white/smooth_large,
+/area/station/medical/chemistry/minisat)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uTy" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -59746,6 +62495,16 @@
},
/turf/open/floor/iron,
/area/station/security)
+<<<<<<< HEAD
+=======
+"vas" = (
+/obj/effect/turf_decal/trimline/yellow/filled/corner,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/station/engineering/main)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vau" = (
/obj/structure/table/glass,
/obj/item/storage/box/beakers{
@@ -59758,6 +62517,17 @@
},
/turf/open/floor/iron/white,
/area/station/medical/virology)
+<<<<<<< HEAD
+=======
+"vay" = (
+/obj/structure/table/reinforced,
+/obj/item/storage/medkit/regular,
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vaC" = (
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/command/corporate_dock)
@@ -59959,9 +62729,34 @@
},
/turf/open/floor/iron/white,
/area/station/medical/pharmacy)
+<<<<<<< HEAD
"vfJ" = (
/turf/closed/wall,
/area/station/maintenance/department/science)
+=======
+"vfG" = (
+/obj/structure/sign/warning/vacuum/directional/west,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/station/hallway/secondary/exit/departure_lounge)
+"vfJ" = (
+/turf/closed/wall,
+/area/station/maintenance/department/science)
+"vfL" = (
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/structure/cable,
+/obj/structure/sign/warning/vacuum/external/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vfM" = (
/obj/effect/landmark/start/depsec/science,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -60041,6 +62836,7 @@
/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
/turf/open/floor/catwalk_floor,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
"vhq" = (
/obj/structure/cable,
/obj/machinery/atmospherics/components/binary/valve/digital/on{
@@ -60049,6 +62845,8 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vhz" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -60066,6 +62864,7 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/service/bar/backroom)
+<<<<<<< HEAD
"vhR" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -60075,6 +62874,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vhT" = (
/obj/effect/turf_decal/tile/blue/half/contrasted{
dir = 1
@@ -60130,12 +62931,15 @@
/obj/structure/flora/bush/grassy/style_random,
/turf/open/floor/grass,
/area/station/science/research)
+<<<<<<< HEAD
"vje" = (
/obj/effect/turf_decal/box/corners{
dir = 8
},
/turf/open/floor/iron/dark,
/area/station/science/ordnance)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vji" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/yellow{
@@ -60215,6 +63019,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/station/maintenance/disposal)
+<<<<<<< HEAD
"vke" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -60223,6 +63028,8 @@
},
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vkn" = (
/obj/machinery/firealarm/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -60394,6 +63201,22 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
+=======
+"vno" = (
+/obj/machinery/fax{
+ fax_name = "Chief Engineer's Office";
+ name = "Chief Engineer's Fax Machine"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/trimline/yellow/filled/line{
+ dir = 5
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/station/command/heads_quarters/ce)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vnr" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/structure/disposalpipe/segment{
@@ -60598,6 +63421,7 @@
/turf/open/floor/iron,
/area/station/engineering/lobby)
"vqN" = (
+<<<<<<< HEAD
/turf/open/floor/iron/dark/small,
/area/station/science/cytology)
"vqW" = (
@@ -60607,6 +63431,11 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden,
/turf/open/floor/iron,
/area/station/maintenance/disposal/incinerator)
+=======
+/obj/machinery/vending/cytopro,
+/turf/open/floor/iron/dark/small,
+/area/station/science/cytology)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vqY" = (
/obj/structure/table,
/obj/item/clipboard,
@@ -60697,6 +63526,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/station/maintenance/central/lesser)
+<<<<<<< HEAD
"vug" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -60706,6 +63536,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vuh" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 4
@@ -60740,6 +63572,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/station/service/theater)
+<<<<<<< HEAD
+=======
+"vvE" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vvG" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -60922,6 +63761,7 @@
/obj/effect/turf_decal/tile/purple/opposingcorners,
/turf/open/floor/iron/white,
/area/station/science/auxlab/firing_range)
+<<<<<<< HEAD
"vzl" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/obj/machinery/door/window/brigdoor/left/directional/north,
@@ -60932,6 +63772,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white,
/area/station/ai_monitored/turret_protected/ai_upload_foyer)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzu" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -60952,6 +63794,7 @@
},
/turf/open/floor/grass,
/area/station/medical/chemistry)
+<<<<<<< HEAD
"vzJ" = (
/obj/structure/cable/layer3,
/obj/machinery/button/elevator/directional/south{
@@ -60969,6 +63812,8 @@
},
/turf/open/floor/catwalk_floor/iron_dark,
/area/station/ai_monitored/turret_protected/ai)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vzP" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -61066,6 +63911,7 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/iron/dark,
/area/station/commons/locker)
+<<<<<<< HEAD
"vAX" = (
/obj/structure/sign/warning/vacuum/directional/west,
/obj/effect/turf_decal/stripes/line{
@@ -61075,6 +63921,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/hallway/secondary/exit/departure_lounge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vAY" = (
/obj/machinery/light/directional/south,
/obj/effect/turf_decal/tile/neutral,
@@ -61306,6 +64154,16 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/plating,
/area/station/maintenance/central/lesser)
+<<<<<<< HEAD
+=======
+"vFz" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/table/reinforced,
+/obj/machinery/light/small/dim/directional/east,
+/obj/item/coin/titanium,
+/turf/open/floor/iron/dark,
+/area/station/ai_monitored/turret_protected/aisat/foyer)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vFD" = (
/obj/machinery/door/window/brigdoor/security/cell/left/directional/west{
id = "Cell 4";
@@ -61460,6 +64318,7 @@
},
/turf/open/floor/wood/tile,
/area/station/security/courtroom)
+<<<<<<< HEAD
"vHm" = (
/obj/machinery/door/airlock/virology/glass{
name = "Virology Lab";
@@ -61482,6 +64341,8 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron/white,
/area/station/medical/virology)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vHA" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -61727,6 +64588,27 @@
/obj/machinery/door/poddoor/incinerator_ordmix,
/turf/open/floor/engine/vacuum,
/area/station/science/ordnance/burnchamber)
+<<<<<<< HEAD
+=======
+"vNc" = (
+/obj/machinery/modular_computer/preset/id{
+ dir = 1
+ },
+/obj/machinery/button/flasher{
+ id = "hopflash";
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/obj/machinery/requests_console/auto_name/directional/south,
+/obj/effect/mapping_helpers/requests_console/information,
+/obj/effect/mapping_helpers/requests_console/assistance,
+/obj/effect/mapping_helpers/requests_console/announcement,
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vNd" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -62430,6 +65312,18 @@
},
/turf/open/floor/iron/white/smooth_large,
/area/station/medical/surgery/theatre)
+<<<<<<< HEAD
+=======
+"vZP" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/left/directional/east{
+ name = "Security Desk";
+ req_access = list("security")
+ },
+/obj/item/hand_labeler,
+/turf/open/floor/iron,
+/area/station/security/brig/entrance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vZX" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -62603,6 +65497,7 @@
},
/turf/open/floor/iron,
/area/station/engineering/gravity_generator)
+<<<<<<< HEAD
"wde" = (
/obj/structure/railing,
/obj/effect/turf_decal/trimline/yellow/filled/line{
@@ -62611,6 +65506,8 @@
/obj/item/radio/intercom/directional/east,
/turf/open/floor/iron,
/area/station/engineering/main)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wdm" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 4
@@ -62728,6 +65625,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/security/warden)
+<<<<<<< HEAD
+=======
+"wfi" = (
+/obj/effect/turf_decal/stripes{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/structure/cable/layer1,
+/turf/open/floor/engine,
+/area/station/engineering/supermatter/room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wfl" = (
/obj/effect/landmark/atmospheric_sanity/ignore_area,
/turf/closed/wall/r_wall,
@@ -62871,6 +65780,7 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/iron/white/smooth_large,
/area/station/science/ordnance/storage)
+<<<<<<< HEAD
"wiX" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -62881,6 +65791,8 @@
/obj/item/radio/intercom/directional/south,
/turf/open/floor/iron,
/area/station/command/gateway)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wje" = (
/obj/effect/spawner/structure/window/reinforced/plasma,
/obj/machinery/door/poddoor/preopen{
@@ -62994,6 +65906,7 @@
/obj/item/storage/crayons,
/turf/open/floor/iron/grimy,
/area/station/service/chapel/office)
+<<<<<<< HEAD
"wkV" = (
/obj/effect/turf_decal/tile/dark_blue,
/obj/effect/mapping_helpers/mail_sorting/service/hop_office,
@@ -63002,6 +65915,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wkX" = (
/mob/living/basic/mining/hivelord,
/turf/open/misc/asteroid/airless,
@@ -63150,6 +66065,7 @@
dir = 8
},
/area/station/science/xenobiology)
+<<<<<<< HEAD
"wnH" = (
/obj/effect/turf_decal/stripes{
dir = 1
@@ -63161,6 +66077,8 @@
/obj/structure/cable/layer1,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wnL" = (
/turf/open/floor/plating,
/area/station/medical/medbay/central)
@@ -63676,6 +66594,16 @@
},
/turf/open/floor/plating,
/area/station/maintenance/department/medical/central)
+<<<<<<< HEAD
+=======
+"wxH" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4;
+ name = "Captain"
+ },
+/turf/open/floor/carpet/executive,
+/area/station/command/meeting_room)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wxQ" = (
/obj/machinery/computer/operating{
dir = 8
@@ -64410,6 +67338,13 @@
"wJy" = (
/turf/closed/wall,
/area/station/medical/storage)
+<<<<<<< HEAD
+=======
+"wJC" = (
+/obj/structure/sign/poster/contraband/communist_state/directional/east,
+/turf/open/space/basic,
+/area/space/nearstation)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wJN" = (
/obj/machinery/space_heater/improvised_chem_heater,
/turf/open/floor/plating,
@@ -64666,6 +67601,20 @@
},
/turf/open/floor/iron/textured_large,
/area/station/service/hydroponics/garden)
+<<<<<<< HEAD
+=======
+"wOn" = (
+/obj/machinery/door/airlock/research/glass{
+ name = "Ordnance Lab"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/airlock/access/all/science/ordnance,
+/turf/open/floor/iron/dark,
+/area/station/science/ordnance)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wOo" = (
/turf/closed/wall/r_wall,
/area/station/ai_monitored/turret_protected/ai_upload)
@@ -64816,6 +67765,7 @@
"wSf" = (
/turf/open/floor/iron/white,
/area/station/medical/exam_room)
+<<<<<<< HEAD
"wSh" = (
/obj/machinery/photocopier,
/obj/machinery/light/directional/north,
@@ -64824,6 +67774,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/hop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wSi" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -65265,6 +68217,17 @@
},
/turf/open/floor/catwalk_floor/iron_white,
/area/station/science/lobby)
+<<<<<<< HEAD
+=======
+"xas" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/effect/turf_decal/siding/blue{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed/directional/south,
+/turf/open/floor/iron/white,
+/area/station/command/heads_quarters/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xay" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -65287,6 +68250,25 @@
/obj/effect/turf_decal/tile/blue/fourcorners,
/turf/open/floor/iron/white,
/area/station/medical/treatment_center)
+<<<<<<< HEAD
+=======
+"xaH" = (
+/obj/structure/filingcabinet,
+/obj/machinery/button/ticket_machine{
+ pixel_x = 24;
+ pixel_y = 6
+ },
+/obj/machinery/button/door/directional/east{
+ id = "hopdesk";
+ name = "desk shutter control";
+ pixel_y = -6
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xaI" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/dark_blue{
@@ -65502,6 +68484,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/station/hallway/secondary/command)
+<<<<<<< HEAD
"xet" = (
/obj/structure/chair{
dir = 8
@@ -65515,6 +68498,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xey" = (
/obj/machinery/camera/autoname/directional/west,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -65535,11 +68520,14 @@
dir = 9
},
/area/station/command/corporate_dock)
+<<<<<<< HEAD
"xeI" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible,
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xeJ" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -65631,6 +68619,7 @@
},
/turf/open/openspace,
/area/station/science/xenobiology)
+<<<<<<< HEAD
"xgw" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/cable,
@@ -65643,6 +68632,8 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white,
/area/station/medical/chemistry/minisat)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xgG" = (
/turf/closed/wall/rust,
/area/station/maintenance/department/medical/central)
@@ -65730,6 +68721,7 @@
},
/turf/open/floor/iron/herringbone,
/area/station/commons/fitness/recreation)
+<<<<<<< HEAD
"xiz" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
/obj/effect/turf_decal/stripes/corner{
@@ -65737,6 +68729,8 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xiC" = (
/obj/effect/mapping_helpers/broken_floor,
/obj/machinery/light/small/dim/directional/east,
@@ -65883,6 +68877,15 @@
},
/turf/open/floor/engine,
/area/station/hallway/secondary/entry)
+<<<<<<< HEAD
+=======
+"xla" = (
+/obj/structure/table,
+/obj/item/ai_module/core/full/dungeon_master,
+/obj/structure/cable,
+/turf/open/floor/circuit,
+/area/station/ai_monitored/turret_protected/ai_upload)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xlm" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/frame/machine,
@@ -65936,11 +68939,14 @@
/obj/machinery/firealarm/directional/north,
/turf/open/floor/iron/dark/textured,
/area/station/hallway/secondary/exit/departure_lounge)
+<<<<<<< HEAD
"xlO" = (
/obj/effect/turf_decal/stripes,
/obj/structure/cable,
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xlX" = (
/obj/machinery/duct,
/obj/structure/cable,
@@ -66178,6 +69184,7 @@
/obj/item/stack/rods/ten,
/turf/open/floor/plating,
/area/station/maintenance/central/greater)
+<<<<<<< HEAD
"xqZ" = (
/obj/machinery/computer/security{
dir = 4
@@ -66188,6 +69195,8 @@
},
/turf/open/floor/iron/dark,
/area/station/command/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xrb" = (
/obj/effect/spawner/structure/window/reinforced,
/obj/structure/cable,
@@ -66469,10 +69478,13 @@
/obj/structure/cable,
/turf/open/floor/carpet/black,
/area/station/command/heads_quarters/hos)
+<<<<<<< HEAD
"xvz" = (
/obj/machinery/button/ignition/incinerator/atmos,
/turf/closed/wall/r_wall,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xvH" = (
/obj/machinery/door/airlock/grunge{
name = "Quiet Room"
@@ -66701,6 +69713,7 @@
},
/turf/open/floor/iron/freezer,
/area/station/commons/toilet/restrooms)
+<<<<<<< HEAD
"xzO" = (
/obj/machinery/light/small/directional/south,
/obj/effect/turf_decal/tile/neutral,
@@ -66720,6 +69733,8 @@
},
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xzP" = (
/mob/living/carbon/human/species/monkey,
/obj/structure/flora/bush/sparsegrass/style_random,
@@ -66793,6 +69808,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/iron,
/area/station/hallway/secondary/command)
+<<<<<<< HEAD
+=======
+"xAR" = (
+/obj/machinery/button/elevator/directional/east{
+ id = "aisat"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron/dark/smooth_large,
+/area/station/ai_monitored/turret_protected/aisat_interior)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xAV" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron,
@@ -66900,6 +69927,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/wood/parquet,
/area/station/cargo/boutique)
+<<<<<<< HEAD
"xCH" = (
/obj/effect/turf_decal/stripes,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
@@ -66907,6 +69935,8 @@
},
/turf/open/floor/engine,
/area/station/engineering/supermatter/room)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xCI" = (
/obj/structure/broken_flooring/side/directional/east,
/obj/effect/decal/cleanable/dirt/dust,
@@ -67051,6 +70081,15 @@
},
/turf/open/floor/iron,
/area/station/engineering/lobby)
+<<<<<<< HEAD
+=======
+"xFh" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/plating,
+/area/station/maintenance/port/lesser)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xFt" = (
/obj/structure/railing/corner{
dir = 4
@@ -67117,6 +70156,22 @@
/obj/item/storage/box/monkeycubes,
/turf/open/floor/iron/white/textured_large,
/area/station/science/xenobiology)
+<<<<<<< HEAD
+=======
+"xGX" = (
+/obj/machinery/pdapainter{
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/airalarm/directional/south,
+/obj/item/storage/box/stickers{
+ pixel_y = 16
+ },
+/turf/open/floor/iron/dark,
+/area/station/command/heads_quarters/hop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xGY" = (
/obj/item/radio/intercom/directional/south,
/turf/open/floor/engine,
@@ -67140,6 +70195,20 @@
/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2,
/turf/open/floor/plating,
/area/station/command/corporate_showroom)
+<<<<<<< HEAD
+=======
+"xHT" = (
+/obj/structure/cable,
+/obj/machinery/light/warm/dim/directional/south,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/yellow/filled/line,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/white,
+/area/station/medical/chemistry/minisat)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xHY" = (
/turf/open/floor/iron/white,
/area/station/medical/medbay/lobby)
@@ -67252,6 +70321,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
/area/station/construction/mining/aux_base)
+<<<<<<< HEAD
"xKd" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden,
/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos,
@@ -67262,6 +70332,8 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/engine,
/area/station/maintenance/disposal/incinerator)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xKh" = (
/obj/structure/closet/wardrobe/miner,
/obj/effect/turf_decal/tile/brown/anticorner/contrasted{
@@ -67370,6 +70442,29 @@
},
/turf/open/floor/iron/dark/textured,
/area/station/medical/morgue)
+<<<<<<< HEAD
+=======
+"xNb" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/south{
+ id = "capshut";
+ pixel_x = -8;
+ name = "shutter control"
+ },
+/obj/machinery/fax{
+ fax_name = "Captain's Office";
+ name = "Captain's Fax Machine"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/keycard_auth/wall_mounted/directional/south{
+ pixel_y = -24;
+ pixel_x = 8
+ },
+/turf/open/floor/carpet/royalblue,
+/area/station/command/heads_quarters/captain/private)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xNh" = (
/obj/effect/turf_decal/stripes/corner{
dir = 4
@@ -67753,12 +70848,15 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/white/smooth_large,
/area/station/science/research)
+<<<<<<< HEAD
"xVi" = (
/obj/structure/table,
/obj/effect/spawner/round_default_module,
/obj/machinery/flasher/directional/north,
/turf/open/floor/circuit/red,
/area/station/ai_monitored/turret_protected/ai_upload)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xVk" = (
/obj/effect/turf_decal/tile/yellow{
dir = 8
@@ -68351,6 +71449,7 @@
},
/turf/open/floor/iron/white,
/area/station/medical/storage)
+<<<<<<< HEAD
"yfp" = (
/obj/machinery/lift_indicator{
pixel_y = -3;
@@ -68359,6 +71458,8 @@
},
/turf/closed/wall/r_wall,
/area/station/ai_monitored/turret_protected/aisat_interior)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yfw" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/spawner/random/entertainment/lighter,
@@ -68645,6 +71746,7 @@
"ylj" = (
/turf/open/floor/circuit,
/area/station/science/robotics/lab)
+<<<<<<< HEAD
"ylk" = (
/obj/effect/turf_decal/tile/neutral{
dir = 1
@@ -68654,6 +71756,8 @@
/obj/structure/sign/directions/dorms/directional/west,
/turf/open/floor/iron,
/area/station/hallway/primary/central)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ylm" = (
/obj/structure/cable,
/obj/effect/decal/cleanable/dirt,
@@ -68713,6 +71817,13 @@
/obj/item/stamp/head/rd,
/turf/open/floor/iron/dark,
/area/station/command/heads_quarters/rd)
+<<<<<<< HEAD
+=======
+"ylS" = (
+/obj/machinery/button/ignition/incinerator/atmos,
+/turf/closed/wall/r_wall,
+/area/station/maintenance/disposal/incinerator)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ylV" = (
/turf/closed/wall,
/area/station/security/checkpoint/supply)
@@ -80497,7 +83608,11 @@ nvp
tZO
lGJ
dGG
+<<<<<<< HEAD
keE
+=======
+kcr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tUo
sye
hgN
@@ -82473,7 +85588,11 @@ dUc
xrb
xrb
nPw
+<<<<<<< HEAD
dEG
+=======
+qwB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iqf
cKn
pjt
@@ -82810,7 +85929,11 @@ pwn
isy
hSB
cnd
+<<<<<<< HEAD
imh
+=======
+uPg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bui
yit
dpf
@@ -82985,7 +86108,11 @@ cLf
dUc
cLf
xrb
+<<<<<<< HEAD
nEx
+=======
+hAS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
syF
ckc
sqk
@@ -83066,12 +86193,20 @@ fvo
lcM
isy
isy
+<<<<<<< HEAD
ajy
+=======
+lJo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
crz
bui
yit
yit
+<<<<<<< HEAD
pQd
+=======
+gft
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
cBb
cBb
cBb
@@ -83288,7 +86423,11 @@ tnO
gtj
gli
gli
+<<<<<<< HEAD
cTu
+=======
+beS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bGq
ehP
uyL
@@ -83756,7 +86895,11 @@ cLf
iUF
cLf
sNu
+<<<<<<< HEAD
nEx
+=======
+hAS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rXZ
vjm
hbw
@@ -84061,7 +87204,11 @@ rzg
xrH
jCX
sdc
+<<<<<<< HEAD
tsV
+=======
+lwW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uyL
esN
fXZ
@@ -86600,7 +89747,11 @@ fAR
keQ
ftK
jza
+<<<<<<< HEAD
tzq
+=======
+qqq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pWB
jiy
mJx
@@ -87117,7 +90268,11 @@ jza
vEX
hEI
gHS
+<<<<<<< HEAD
kxh
+=======
+drl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mGG
gkt
kcA
@@ -87134,7 +90289,11 @@ xNq
tqN
bPZ
aSZ
+<<<<<<< HEAD
dKM
+=======
+rWf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lsJ
nVT
koA
@@ -87942,7 +91101,11 @@ bGD
nxG
nxG
nxG
+<<<<<<< HEAD
ous
+=======
+hpB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nxG
nxG
tuA
@@ -88409,8 +91572,13 @@ uJO
azb
rRK
rRK
+<<<<<<< HEAD
lVE
tCl
+=======
+ava
+vZP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qvK
rRK
rRK
@@ -88430,7 +91598,11 @@ kmu
dxT
tCE
xMk
+<<<<<<< HEAD
hmJ
+=======
+rVD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
deY
aQS
vTx
@@ -88459,7 +91631,11 @@ prW
prW
prW
prW
+<<<<<<< HEAD
ktk
+=======
+dvz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
prW
tOm
hDK
@@ -88681,7 +91857,11 @@ aSZ
rjs
fNp
aSZ
+<<<<<<< HEAD
abH
+=======
+eGz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qRr
kmu
dxT
@@ -89207,7 +92387,11 @@ bSC
pSk
hUI
noF
+<<<<<<< HEAD
pGE
+=======
+lop
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bAw
xEW
hDV
@@ -89239,7 +92423,11 @@ jNJ
pUY
kJT
hgV
+<<<<<<< HEAD
sDQ
+=======
+wJC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dUc
uuN
gJE
@@ -89464,7 +92652,11 @@ cOR
ufV
jVI
noF
+<<<<<<< HEAD
wiX
+=======
+rIf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bAw
ign
iIB
@@ -89711,7 +92903,11 @@ rjX
rjX
iXj
rjX
+<<<<<<< HEAD
eMi
+=======
+oez
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tHF
hqz
bAw
@@ -89968,7 +93164,11 @@ oGB
qyz
ahI
rjX
+<<<<<<< HEAD
jLd
+=======
+lyJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tHF
tCE
bAw
@@ -90486,7 +93686,11 @@ kmu
qbA
mMC
bAw
+<<<<<<< HEAD
fLF
+=======
+egN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
joL
ttT
koG
@@ -91282,7 +94486,11 @@ isH
agu
lpE
kAg
+<<<<<<< HEAD
siO
+=======
+ujv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kmu
hGE
nxG
@@ -92765,7 +95973,11 @@ cLf
fZF
mGX
clb
+<<<<<<< HEAD
ghN
+=======
+jmP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mSf
axD
fYe
@@ -93538,7 +96750,11 @@ csW
wMy
toJ
dGh
+<<<<<<< HEAD
hvB
+=======
+jqu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hrM
cLf
dUc
@@ -93572,7 +96788,11 @@ dTU
pMD
acc
kYl
+<<<<<<< HEAD
nFk
+=======
+sUD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dGc
fDN
enu
@@ -93610,7 +96830,11 @@ hUS
hUS
hUS
qtP
+<<<<<<< HEAD
vAX
+=======
+vfG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vew
buI
pSK
@@ -93795,7 +97019,11 @@ uMA
pGf
qtg
nbm
+<<<<<<< HEAD
cpR
+=======
+iDJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hrM
cLf
dUc
@@ -94052,7 +97280,11 @@ sqo
gHX
hAg
csW
+<<<<<<< HEAD
bao
+=======
+fzx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hrM
cLf
sgz
@@ -94309,7 +97541,11 @@ jpd
jRc
ruc
jcW
+<<<<<<< HEAD
jVn
+=======
+xNb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
axD
eKR
sgz
@@ -94324,7 +97560,11 @@ sSX
agw
bUj
sgz
+<<<<<<< HEAD
bdY
+=======
+cIa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lDn
uZx
aFJ
@@ -94369,7 +97609,11 @@ rjn
kmu
rFV
tOm
+<<<<<<< HEAD
ihJ
+=======
+sut
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hzF
hzF
hjo
@@ -94575,8 +97819,13 @@ puT
tsP
wNa
jSs
+<<<<<<< HEAD
lct
dRF
+=======
+jzC
+mcw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aKg
pmC
qka
@@ -94818,11 +98067,19 @@ cLf
bqX
bqX
bhY
+<<<<<<< HEAD
xqZ
fks
mrq
eBK
soc
+=======
+rcz
+eYO
+mrq
+eBK
+bQc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
neH
nZB
fCY
@@ -94832,6 +98089,7 @@ fZr
bUM
vGz
sgz
+<<<<<<< HEAD
wSh
vhR
wsS
@@ -94839,6 +98097,15 @@ eXM
mvT
sgz
hWR
+=======
+sRP
+qgn
+wsS
+eXM
+xGX
+sgz
+dFM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lUp
uZx
rqj
@@ -95074,7 +98341,11 @@ cLf
cLf
bqX
ogH
+<<<<<<< HEAD
nXf
+=======
+aeJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xcs
tYQ
tYQ
@@ -95089,11 +98360,19 @@ cdX
pLO
sFB
sgz
+<<<<<<< HEAD
gEL
vug
fRP
sKF
aHq
+=======
+xaH
+mnI
+jqT
+sKF
+vNc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sgz
mKD
xeo
@@ -95347,9 +98626,15 @@ vVr
sgz
sgz
sgz
+<<<<<<< HEAD
hGX
qIp
kat
+=======
+raX
+bbf
+cTc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sgz
sgz
kJp
@@ -95397,7 +98682,11 @@ oGX
kmu
aly
dxT
+<<<<<<< HEAD
xzO
+=======
+nBA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hzF
hzF
eGn
@@ -95594,18 +98883,32 @@ kXN
klL
raA
eKR
+<<<<<<< HEAD
ill
gkQ
bRN
fjo
+=======
+mlG
+gkQ
+bRN
+sXf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eKR
lkQ
dhl
fbC
+<<<<<<< HEAD
lAb
auM
bPo
xet
+=======
+qms
+auM
+hvt
+iwm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aBy
mhG
jDT
@@ -95862,7 +99165,11 @@ kaz
dbJ
mMH
sPS
+<<<<<<< HEAD
wkV
+=======
+jww
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
btw
btw
btw
@@ -96180,7 +99487,11 @@ cSb
cSb
cSb
qtP
+<<<<<<< HEAD
axP
+=======
+rKq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vew
uIW
hSg
@@ -96365,7 +99676,11 @@ efb
rCd
kNX
eKR
+<<<<<<< HEAD
kvf
+=======
+tKX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kZg
nPm
yjH
@@ -96373,7 +99688,11 @@ eKR
lkQ
qrh
kPv
+<<<<<<< HEAD
guS
+=======
+lQl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vFf
ylz
iFv
@@ -96873,7 +100192,11 @@ cLf
cLf
bqX
cQP
+<<<<<<< HEAD
hhG
+=======
+vay
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eon
sZK
sZK
@@ -97136,7 +100459,11 @@ kYU
jTd
rkz
lrc
+<<<<<<< HEAD
qdu
+=======
+eHa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ktI
ita
hOb
@@ -97154,7 +100481,11 @@ juw
pSO
xYn
pSO
+<<<<<<< HEAD
ner
+=======
+jaa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qbA
tCE
mJR
@@ -97649,7 +100980,11 @@ cLf
eKR
iSE
viK
+<<<<<<< HEAD
mWV
+=======
+oIV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
peL
bkb
juw
@@ -100793,8 +104128,13 @@ prW
anT
prW
sOA
+<<<<<<< HEAD
muW
cNW
+=======
+bVA
+aKJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jqj
dxT
aQS
@@ -101523,9 +104863,15 @@ bDy
irx
gyl
gvF
+<<<<<<< HEAD
dJY
tHF
fpT
+=======
+qaz
+tHF
+qAo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uZx
fDa
eMG
@@ -101797,7 +105143,11 @@ nxG
nxG
hjJ
nxG
+<<<<<<< HEAD
ylk
+=======
+glH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iAE
xAm
nMR
@@ -101827,7 +105177,11 @@ dct
hqk
jFc
jFc
+<<<<<<< HEAD
rVR
+=======
+iOc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
adV
usQ
ltS
@@ -102010,11 +105364,19 @@ lPj
cqm
srs
oyO
+<<<<<<< HEAD
dLp
gHQ
iJP
kee
kwi
+=======
+pyH
+gHQ
+iJP
+kee
+jbM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ncc
srs
sYI
@@ -102267,11 +105629,19 @@ fxo
vDK
srs
eJQ
+<<<<<<< HEAD
jop
fZA
xkc
kee
eWE
+=======
+vFz
+kbv
+xkc
+kee
+jBg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qjp
srs
iVK
@@ -102526,8 +105896,13 @@ dZy
wHJ
wHJ
wHJ
+<<<<<<< HEAD
pBh
yfp
+=======
+mDP
+usL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wHJ
kTx
kYu
@@ -104325,7 +107700,11 @@ wze
aby
hGZ
wZz
+<<<<<<< HEAD
ieG
+=======
+cdo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wZz
ipR
kYu
@@ -106124,7 +109503,11 @@ fOM
jTg
ajU
wZz
+<<<<<<< HEAD
efj
+=======
+cSa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wZz
odg
hwP
@@ -106421,7 +109804,11 @@ rXT
kNk
bwQ
mEs
+<<<<<<< HEAD
qea
+=======
+xFh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lPe
lPe
lPe
@@ -108002,7 +111389,11 @@ apK
bTt
svK
ulc
+<<<<<<< HEAD
lQJ
+=======
+kCr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uFb
gLq
lrk
@@ -108257,9 +111648,15 @@ aWD
aWD
aWD
aWD
+<<<<<<< HEAD
aUm
mIY
pOj
+=======
+ugJ
+mIY
+eLk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aWD
aWD
aWD
@@ -109497,7 +112894,11 @@ jLY
rSh
xJR
gOY
+<<<<<<< HEAD
kot
+=======
+wOn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gOY
gOY
cxg
@@ -109537,7 +112938,11 @@ oAn
aWD
aWD
cNM
+<<<<<<< HEAD
vke
+=======
+mCb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xCf
urc
xCf
@@ -109753,9 +113158,15 @@ lCw
fDz
fDz
fDz
+<<<<<<< HEAD
vje
efJ
uRn
+=======
+bPc
+efJ
+ofG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gOY
cxg
cxg
@@ -109794,7 +113205,11 @@ cXn
vNk
oHA
xfi
+<<<<<<< HEAD
cWW
+=======
+jtS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rhS
rhS
equ
@@ -110011,8 +113426,13 @@ fDz
xTs
fDz
fDz
+<<<<<<< HEAD
iwA
fCo
+=======
+rkI
+rYe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gOY
gOY
cxg
@@ -110051,7 +113471,11 @@ eFM
xCf
xCf
xCf
+<<<<<<< HEAD
jbI
+=======
+cYB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rhS
rhS
rhS
@@ -110305,7 +113729,11 @@ vUr
eus
aWD
qWG
+<<<<<<< HEAD
fQS
+=======
+vas
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fMW
cfJ
ybD
@@ -110562,7 +113990,11 @@ vUb
uMq
aWD
mkL
+<<<<<<< HEAD
ibe
+=======
+qHp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uFC
uFC
jnY
@@ -110782,7 +114214,11 @@ tGW
tGW
nli
pLk
+<<<<<<< HEAD
glu
+=======
+vvE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aWM
vzP
gOY
@@ -110819,7 +114255,11 @@ vUb
nZH
uFC
jnY
+<<<<<<< HEAD
fdZ
+=======
+oUb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uFC
lNk
sJG
@@ -111039,7 +114479,11 @@ tvB
tRZ
nkM
vxZ
+<<<<<<< HEAD
kkW
+=======
+dyS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lfq
mDx
gOY
@@ -111295,9 +114739,15 @@ tTK
oEP
vBN
xfQ
+<<<<<<< HEAD
kvA
xXF
gbw
+=======
+cAG
+xXF
+sLr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mDx
cxg
cxg
@@ -111591,9 +115041,15 @@ xxi
uFC
eBZ
kpn
+<<<<<<< HEAD
lMd
lMd
lMd
+=======
+pxu
+pxu
+pxu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oyV
axQ
yho
@@ -111847,9 +115303,15 @@ tbk
rkp
uFC
boT
+<<<<<<< HEAD
dQa
wCm
xiz
+=======
+kAh
+wCm
+qWs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
utV
gea
xaP
@@ -112106,7 +115568,11 @@ uFC
uFC
uFC
uFC
+<<<<<<< HEAD
nAD
+=======
+lwv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nPW
oyV
xaP
@@ -112363,7 +115829,11 @@ kUX
vxX
vxX
uFC
+<<<<<<< HEAD
gxd
+=======
+cUD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nPW
oyV
xaP
@@ -112620,7 +116090,11 @@ kUX
vxX
vxX
uFC
+<<<<<<< HEAD
nfR
+=======
+pbD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nPW
oyV
kiT
@@ -112877,7 +116351,11 @@ kUX
vxX
vxX
uFC
+<<<<<<< HEAD
jWv
+=======
+biG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nPW
oyV
xaP
@@ -113135,7 +116613,11 @@ vxX
vxX
uFC
lCu
+<<<<<<< HEAD
lMd
+=======
+pxu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oyV
xaP
xIV
@@ -113147,9 +116629,15 @@ xIV
xIV
xIV
xIV
+<<<<<<< HEAD
wnH
vhq
xlO
+=======
+rLz
+uei
+nNN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jnY
fnI
mlk
@@ -113396,7 +116884,11 @@ kQF
bHH
sBe
ceu
+<<<<<<< HEAD
jHO
+=======
+gTe
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wFG
sji
cjV
@@ -113404,9 +116896,15 @@ sGE
wFG
wFG
nxc
+<<<<<<< HEAD
jVT
icr
xCH
+=======
+pWG
+icr
+jHz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jnY
xzT
dqK
@@ -113653,7 +117151,11 @@ nPW
oVs
oVs
oVs
+<<<<<<< HEAD
xeI
+=======
+dtY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oVs
mYD
fXc
@@ -113661,9 +117163,15 @@ gas
oVs
pUa
acG
+<<<<<<< HEAD
cnA
acG
mmG
+=======
+kFO
+acG
+fEm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
anu
auD
dqK
@@ -113907,6 +117415,7 @@ vxX
uFC
spr
xcm
+<<<<<<< HEAD
uCd
lGQ
ddO
@@ -113921,6 +117430,22 @@ dwt
lzX
hPG
mte
+=======
+jQs
+luq
+ddO
+xcm
+xcm
+rVT
+hLq
+kWI
+xcm
+sWN
+wfi
+cXy
+vfL
+mWh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jnY
tgr
mlk
@@ -142420,8 +145945,13 @@ guN
vYz
vYz
gHN
+<<<<<<< HEAD
fgY
xgw
+=======
+uTk
+hro
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eYP
eYP
rup
@@ -143192,7 +146722,11 @@ vYz
aUf
eYP
fkF
+<<<<<<< HEAD
pxO
+=======
+xHT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gHN
hhX
hhX
@@ -147803,7 +151337,11 @@ oZQ
oZQ
oZQ
rXd
+<<<<<<< HEAD
qwf
+=======
+qqL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mUi
fpx
rDE
@@ -148338,7 +151876,11 @@ sZH
pWr
pNW
ahq
+<<<<<<< HEAD
hsm
+=======
+kuI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sKt
kSU
uXQ
@@ -148346,7 +151888,11 @@ bHc
tBo
jCN
gbF
+<<<<<<< HEAD
gHh
+=======
+ukv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uOJ
evQ
evQ
@@ -148597,12 +152143,20 @@ qml
ahq
qDH
dzA
+<<<<<<< HEAD
mqI
+=======
+mZr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wWu
jaf
gey
cDD
+<<<<<<< HEAD
prL
+=======
+prS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
asz
uOJ
evQ
@@ -148824,7 +152378,11 @@ pic
gli
gBq
gBq
+<<<<<<< HEAD
qJn
+=======
+dPk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gBq
oAH
uaN
@@ -149597,7 +153155,11 @@ oZQ
oZQ
oZQ
sdc
+<<<<<<< HEAD
tsV
+=======
+lwW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
uyL
uSA
wDv
@@ -149823,8 +153385,13 @@ tIr
idB
mQo
kUG
+<<<<<<< HEAD
rFY
flW
+=======
+dkq
+tgv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
peD
vjA
pIF
@@ -151430,7 +154997,11 @@ eCR
xck
ljZ
xhJ
+<<<<<<< HEAD
txp
+=======
+qvV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aOm
aOm
aOm
@@ -151687,7 +155258,11 @@ ezF
xnq
qJo
xhJ
+<<<<<<< HEAD
hYT
+=======
+keg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unE
oZt
vZj
@@ -151945,7 +155520,11 @@ xnq
pTw
xhJ
oZt
+<<<<<<< HEAD
pyn
+=======
+fQG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oZt
oZt
oZt
@@ -152205,7 +155784,11 @@ tHA
hsE
etg
oZt
+<<<<<<< HEAD
dZr
+=======
+rDx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hPb
fnU
xzP
@@ -152452,6 +156035,7 @@ xhJ
kpP
gvw
gvw
+<<<<<<< HEAD
sVG
nAs
wYY
@@ -152463,6 +156047,19 @@ xOF
dgS
vHm
cJb
+=======
+oRR
+nAs
+wYY
+tSn
+xas
+xhJ
+mfP
+xOF
+dgS
+kzI
+cNk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gtO
gcy
aRN
@@ -152709,7 +156306,11 @@ xhJ
iDw
plH
gvw
+<<<<<<< HEAD
fln
+=======
+eOI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xYZ
jlb
whG
@@ -152719,7 +156320,11 @@ cgB
kHw
teV
oZt
+<<<<<<< HEAD
tFq
+=======
+rix
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ixR
qro
hOh
@@ -152976,7 +156581,11 @@ oZt
oZt
oZt
oZt
+<<<<<<< HEAD
mST
+=======
+nZb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fPi
iHL
rwq
@@ -153223,17 +156832,29 @@ vxX
vxX
vxX
gvw
+<<<<<<< HEAD
euC
cwi
jYw
uKv
fer
+=======
+gjt
+jEf
+kQV
+uKv
+evg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gvw
vxX
vxX
vxX
oZt
+<<<<<<< HEAD
mNa
+=======
+jCU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tkh
cgw
fMY
@@ -161126,9 +164747,15 @@ uRI
kCs
rxW
lFG
+<<<<<<< HEAD
oMQ
tbZ
coD
+=======
+wxH
+tbZ
+lLC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sBl
eYF
lYL
@@ -165747,11 +169374,19 @@ pHA
pHA
pHA
wOo
+<<<<<<< HEAD
xVi
erY
qHx
eWO
muq
+=======
+txw
+erY
+qHx
+eWO
+daz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wOo
pHA
pHA
@@ -166008,7 +169643,11 @@ iJg
ebs
cWr
oVG
+<<<<<<< HEAD
cKS
+=======
+xla
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wOo
bFS
bFS
@@ -166775,11 +170414,19 @@ bFS
bFS
bFS
mbL
+<<<<<<< HEAD
hsI
vzl
vJG
crm
aAK
+=======
+pla
+iIT
+vJG
+rbs
+gGh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mbL
bFS
bFS
@@ -168571,12 +172218,20 @@ jVV
mQE
hPx
fNk
+<<<<<<< HEAD
dgP
+=======
+pYw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wHJ
hfH
sIW
hNC
+<<<<<<< HEAD
nFO
+=======
+gQs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hNC
sIW
gBx
@@ -169085,7 +172740,11 @@ cxg
mQE
mQE
gwF
+<<<<<<< HEAD
ciC
+=======
+eaW
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wHJ
dqA
sIW
@@ -169095,7 +172754,11 @@ ciR
sIW
dfd
wHJ
+<<<<<<< HEAD
pnw
+=======
+rBZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lPi
meH
sJT
@@ -169344,6 +173007,7 @@ imZ
mQE
fTj
wHJ
+<<<<<<< HEAD
qCp
lmo
sIW
@@ -169351,6 +173015,15 @@ sIW
oBv
lmo
nrU
+=======
+lEa
+lmo
+sIW
+sIW
+lUF
+lmo
+xAR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wHJ
tww
ffT
@@ -169861,7 +173534,11 @@ kWb
lWW
kBh
upw
+<<<<<<< HEAD
vzJ
+=======
+pRm
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kWb
lWW
lWW
@@ -171403,7 +175080,11 @@ qDl
qDl
kdR
kWb
+<<<<<<< HEAD
lPL
+=======
+nzT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kWb
mjq
qDl
@@ -171660,7 +175341,11 @@ vAB
vAB
qHi
kWb
+<<<<<<< HEAD
snc
+=======
+oNM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kWb
lwr
vAB
@@ -173021,7 +176706,11 @@ vHa
aWD
aWD
aWD
+<<<<<<< HEAD
jgO
+=======
+ewa
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gCT
kgb
gaI
@@ -173276,8 +176965,13 @@ msm
aWD
aWD
aWD
+<<<<<<< HEAD
mhx
pyN
+=======
+hux
+eoO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ugV
ugV
lke
@@ -173532,7 +177226,11 @@ fqs
tCb
fjt
gij
+<<<<<<< HEAD
qnU
+=======
+cVn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
thI
pFF
pFF
@@ -174049,11 +177747,19 @@ vzC
aWD
mog
mog
+<<<<<<< HEAD
tvr
ybD
cSd
ybD
wde
+=======
+fFb
+ybD
+cSd
+ybD
+juV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mog
mog
aWD
@@ -174820,11 +178526,19 @@ sCp
sCp
sCp
wje
+<<<<<<< HEAD
npq
mGP
jjI
mee
fqq
+=======
+anX
+mGP
+jjI
+mee
+uqM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wje
sCp
sCp
@@ -175077,7 +178791,11 @@ mog
mog
sCp
wje
+<<<<<<< HEAD
uGg
+=======
+uca
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eVA
mYb
oZC
@@ -175334,7 +179052,11 @@ mog
mog
sCp
wje
+<<<<<<< HEAD
hCC
+=======
+cSC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jPb
iBH
eVA
@@ -175591,7 +179313,11 @@ mog
mog
sCp
wje
+<<<<<<< HEAD
aTW
+=======
+vno
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lAE
afp
wsW
@@ -175849,7 +179575,11 @@ mog
sCp
wje
wtH
+<<<<<<< HEAD
qPJ
+=======
+kjR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
buk
ygJ
wtH
@@ -176339,7 +180069,11 @@ awM
eqX
efQ
drK
+<<<<<<< HEAD
eTf
+=======
+unH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sKn
ovD
btZ
@@ -177108,7 +180842,11 @@ jMN
qhG
lwZ
diZ
+<<<<<<< HEAD
uNx
+=======
+fvq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
psi
smn
nUS
@@ -177366,7 +181104,11 @@ qhG
stP
ipu
qhG
+<<<<<<< HEAD
rRe
+=======
+evO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sIQ
usm
qhG
@@ -177621,9 +181363,15 @@ dsP
vPt
vPt
stP
+<<<<<<< HEAD
xKd
vkp
vqW
+=======
+tNK
+vkp
+qgD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
smn
rbw
btj
@@ -178651,8 +182399,13 @@ fYe
qhG
bjc
qhG
+<<<<<<< HEAD
xvz
rRj
+=======
+ylS
+mra
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rhi
bDk
eju
diff --git a/_maps/modular_generic/station_m_evidence.dmm b/_maps/modular_generic/station_m_evidence.dmm
index 816bc42f052..be88bbc860e 100644
--- a/_maps/modular_generic/station_m_evidence.dmm
+++ b/_maps/modular_generic/station_m_evidence.dmm
@@ -2,6 +2,18 @@
"a" = (
/turf/template_noop,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"d" = (
+/obj/effect/turf_decal/tile/dark_red/opposingcorners,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/storage/secure/safe/directional/north{
+ name = "evidence safe"
+ },
+/turf/open/floor/iron/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"h" = (
/obj/effect/turf_decal/tile/dark/opposingcorners,
/obj/effect/turf_decal/siding/red{
@@ -26,6 +38,7 @@
/obj/effect/turf_decal/tile/dark/opposingcorners,
/turf/open/floor/iron/dark,
/area/template_noop)
+<<<<<<< HEAD
"p" = (
/obj/effect/turf_decal/tile/dark_red/opposingcorners,
/obj/effect/decal/cleanable/dirt/dust,
@@ -35,6 +48,8 @@
},
/turf/open/floor/iron/dark,
/area/template_noop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"q" = (
/obj/structure/closet/secure_closet/evidence,
/obj/effect/spawner/random/sakhno/ammo,
@@ -76,6 +91,18 @@
},
/turf/open/floor/iron/dark/textured_large,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"z" = (
+/obj/machinery/door/window/brigdoor/left/directional/south{
+ name = "Secure Evidence Lockup";
+ req_one_access = list("armory","detective")
+ },
+/obj/effect/turf_decal/tile/dark_red/opposingcorners,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"A" = (
/obj/machinery/door/airlock/security{
name = "Evidence Lockup"
@@ -153,6 +180,7 @@
},
/turf/open/floor/iron/dark/textured_large,
/area/template_noop)
+<<<<<<< HEAD
"W" = (
/obj/machinery/door/window/brigdoor/left/directional/south{
name = "Secure Evidence Lockup";
@@ -162,6 +190,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/template_noop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"X" = (
/obj/effect/turf_decal/tile/dark/opposingcorners,
/obj/effect/turf_decal/siding/red{
@@ -205,9 +235,15 @@ a
(3,1,1) = {"
a
G
+<<<<<<< HEAD
p
s
W
+=======
+d
+s
+z
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
h
K
m
diff --git a/_maps/shuttles/emergency_birdshot.dmm b/_maps/shuttles/emergency_birdshot.dmm
index 2f89b834530..5931c31825a 100644
--- a/_maps/shuttles/emergency_birdshot.dmm
+++ b/_maps/shuttles/emergency_birdshot.dmm
@@ -226,6 +226,20 @@
/obj/item/trash/cheesie,
/turf/open/floor/mineral/titanium/tiled,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"ll" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/docking_port/mobile/emergency{
+ dir = 8;
+ name = "birdshot emergency shuttle";
+ port_direction = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lp" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
@@ -528,6 +542,7 @@
/obj/machinery/power/shuttle_engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
+<<<<<<< HEAD
"zL" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
@@ -539,6 +554,8 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zV" = (
/obj/structure/toilet{
dir = 4
@@ -1504,7 +1521,11 @@ nQ
nQ
nQ
LX
+<<<<<<< HEAD
zL
+=======
+ll
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
LX
lp
rZ
diff --git a/_maps/shuttles/emergency_monastery.dmm b/_maps/shuttles/emergency_monastery.dmm
index 2f6b923cd43..add77a41c71 100644
--- a/_maps/shuttles/emergency_monastery.dmm
+++ b/_maps/shuttles/emergency_monastery.dmm
@@ -8,10 +8,13 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"af" = (
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/space,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ap" = (
/obj/structure/chair/wood/wings{
dir = 1
@@ -25,10 +28,13 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
+<<<<<<< HEAD
"as" = (
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/space,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aF" = (
/obj/machinery/light/small/directional/south,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -40,6 +46,7 @@
/obj/structure/grille/broken,
/turf/open/space/basic,
/area/shuttle/escape)
+<<<<<<< HEAD
"aJ" = (
/obj/structure/table/wood,
/obj/item/paper_bin{
@@ -49,6 +56,8 @@
/obj/item/pen,
/turf/open/floor/carpet/black,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aO" = (
/obj/structure/sign/plaques/kiddie{
desc = "It reads: PRIVATE EXHIBIT - Please inquire with library staff for guided tours.";
@@ -90,6 +99,14 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"bl" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space/basic,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bn" = (
/obj/machinery/light/small/directional/east,
/obj/machinery/power/apc/auto_name/directional/east,
@@ -135,6 +152,16 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"bC" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bI" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -153,6 +180,7 @@
/obj/structure/lattice,
/turf/open/space,
/area/shuttle/escape)
+<<<<<<< HEAD
"cb" = (
/obj/machinery/power/smes/full,
/obj/structure/cable,
@@ -176,6 +204,8 @@
/obj/item/storage/box/ingredients/wildcard,
/turf/open/floor/iron,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cu" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb/cobweb2,
@@ -191,6 +221,13 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/plating,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"cH" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/space,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
@@ -232,10 +269,13 @@
/obj/structure/lattice,
/turf/open/space,
/area/shuttle/escape)
+<<<<<<< HEAD
"ds" = (
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/escape/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"du" = (
/obj/machinery/door/airlock/external/ruin,
/turf/open/floor/plating,
@@ -369,17 +409,21 @@
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"fA" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/space,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fL" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/structure/lattice,
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/space,
/area/shuttle/escape)
+<<<<<<< HEAD
"fP" = (
/obj/docking_port/mobile/emergency{
movement_force = list("KNOCKDOWN"=3,"THROW"=6);
@@ -387,6 +431,8 @@
},
/turf/closed/mineral,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fT" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/dirt,
@@ -418,12 +464,15 @@
/obj/structure/flora/bush/leavy/style_random,
/turf/open/misc/asteroid,
/area/shuttle/escape)
+<<<<<<< HEAD
"gU" = (
/obj/machinery/mass_driver/chapelgun,
/obj/structure/window/reinforced/spawner/directional/east,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gW" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/iron,
@@ -439,12 +488,15 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
+<<<<<<< HEAD
"hJ" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/plating,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hN" = (
/obj/machinery/door/airlock/external/ruin,
/obj/effect/mapping_helpers/airlock/cyclelink_helper,
@@ -466,6 +518,16 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"hV" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/space/basic,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"hW" = (
/obj/structure/flora/bush/leavy/style_random,
/obj/structure/flora/bush/reed/style_random,
@@ -486,6 +548,17 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"hZ" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ib" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/closed/mineral,
@@ -615,6 +688,15 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"jt" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jx" = (
/turf/open/floor/iron/dark,
/area/shuttle/escape)
@@ -624,6 +706,7 @@
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/plating,
/area/shuttle/escape)
+<<<<<<< HEAD
"jM" = (
/obj/structure/window/reinforced/spawner/directional/north{
pixel_y = 1
@@ -631,6 +714,8 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/space/basic,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jR" = (
/obj/effect/spawner/structure/window/reinforced,
/turf/open/floor/plating/airless,
@@ -739,14 +824,25 @@
/obj/machinery/door/airlock/external/ruin,
/turf/open/floor/plating,
/area/shuttle/escape)
+<<<<<<< HEAD
"lj" = (
/obj/structure/lattice/catwalk,
/turf/open/space/basic,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lm" = (
/obj/machinery/meter,
/turf/open/floor/plating,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"ln" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/space,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lB" = (
/turf/open/floor/iron/chapel{
dir = 8
@@ -774,6 +870,13 @@
},
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"ml" = (
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/space,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mm" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
@@ -1047,6 +1150,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"pW" = (
/obj/structure/window/reinforced/spawner/directional/south,
/obj/structure/window/reinforced/spawner/directional/west,
@@ -1054,6 +1158,16 @@
name = "Outlet Injector"
},
/turf/open/floor/plating/airless,
+=======
+"qi" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/carpet/black,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/shuttle/escape)
"qj" = (
/obj/effect/turf_decal/sand,
@@ -1183,6 +1297,14 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"rZ" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sa" = (
/obj/structure/chair/wood{
dir = 4
@@ -1281,6 +1403,13 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"ti" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space/basic,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tm" = (
/obj/structure/table/wood/fancy,
/obj/item/storage/box/matches{
@@ -1346,6 +1475,13 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/escape/brig)
+<<<<<<< HEAD
+=======
+"uP" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uX" = (
/obj/machinery/power/smes,
/turf/open/floor/plating,
@@ -1470,6 +1606,7 @@
/obj/machinery/atmospherics/components/unary/vent_pump/on,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"wB" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/item/stack/sheet/glass/fifty,
@@ -1481,6 +1618,8 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wS" = (
/obj/machinery/camera/directional/east{
c_tag = "Monastery Secondary Dock";
@@ -1508,11 +1647,14 @@
/obj/item/bikehorn/rubberducky,
/turf/open/floor/iron/showroomfloor,
/area/shuttle/escape)
+<<<<<<< HEAD
"xs" = (
/obj/structure/window/reinforced/spawner/directional/south,
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/space/basic,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xt" = (
/obj/item/kirbyplants/organic/plant22,
/turf/open/floor/iron/dark,
@@ -1615,6 +1757,21 @@
/obj/item/melee/flyswatter,
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"yP" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = 5;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yR" = (
/obj/machinery/door/airlock/grunge{
name = "Chapel"
@@ -1633,6 +1790,20 @@
/obj/effect/turf_decal/tile/yellow,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"zh" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/iron{
+ amount = 20
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zp" = (
/obj/item/storage/bag/plants,
/obj/structure/extinguisher_cabinet/directional/east,
@@ -1763,6 +1934,7 @@
},
/turf/open/misc/asteroid,
/area/shuttle/escape)
+<<<<<<< HEAD
"AL" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/east,
@@ -1770,10 +1942,13 @@
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/plating,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"AM" = (
/obj/structure/flora/tree/jungle/small/style_random,
/turf/open/floor/grass,
/area/shuttle/escape)
+<<<<<<< HEAD
"AU" = (
/obj/structure/table/wood,
/obj/item/paper_bin{
@@ -1783,6 +1958,8 @@
/obj/item/pen,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"AW" = (
/obj/item/clothing/under/misc/burial,
/obj/item/clothing/under/misc/burial,
@@ -1875,12 +2052,15 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"BW" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/plating,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BX" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
dir = 4
@@ -1895,12 +2075,15 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
"Cl" = (
/obj/machinery/power/shuttle_engine/propulsion,
/obj/structure/window/reinforced/spawner/directional/east,
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/floor/plating,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Cn" = (
/obj/item/reagent_containers/cup/bucket,
/obj/item/reagent_containers/cup/bucket,
@@ -2142,6 +2325,19 @@
/obj/machinery/reagentgrinder,
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Fx" = (
+/obj/structure/table,
+/obj/item/reagent_containers/condiment/saltshaker{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/condiment/peppermill,
+/obj/item/storage/box/ingredients/wildcard,
+/turf/open/floor/iron,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"FA" = (
/obj/machinery/button/crematorium{
id = "foo";
@@ -2280,6 +2476,7 @@
"HD" = (
/turf/open/floor/iron/chapel,
/area/shuttle/escape)
+<<<<<<< HEAD
"HE" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/condiment/saltshaker{
@@ -2292,6 +2489,8 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"HL" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/poppy,
@@ -2388,16 +2587,27 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Jf" = (
+/obj/machinery/power/smes/full,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jg" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"Jl" = (
/obj/structure/window/reinforced/spawner/directional/west,
/turf/open/space,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jp" = (
/obj/structure/table,
/obj/item/crowbar,
@@ -2412,6 +2622,18 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Ju" = (
+/obj/item/book/codex_gigas,
+/obj/machinery/camera/directional/south{
+ c_tag = "Monastery Archives Aft";
+ network = list("ss13","monastery")
+ },
+/obj/structure/rack/skeletal,
+/turf/open/floor/iron/dark,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jv" = (
/obj/structure/flora/bush/flowers_yw/style_random,
/obj/structure/flora/bush/sparsegrass/style_random,
@@ -2476,6 +2698,16 @@
/obj/structure/sink/directional/west,
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"JZ" = (
+/obj/docking_port/mobile/emergency{
+ movement_force = list("KNOCKDOWN"=3,"THROW"=6);
+ name = "\proper a monastery with engines strapped to it"
+ },
+/turf/closed/mineral,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Kd" = (
/obj/machinery/light/small/directional/west,
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
@@ -2520,11 +2752,14 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"KL" = (
/obj/structure/window/reinforced/spawner/directional/south,
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/escape/brig)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"KV" = (
/obj/structure/toilet{
pixel_y = 8
@@ -2539,6 +2774,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"Le" = (
/obj/structure/window/reinforced/spawner/directional/north{
pixel_y = 1
@@ -2546,6 +2782,8 @@
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/space/basic,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Lg" = (
/obj/machinery/camera/directional/west{
c_tag = "Monastery Asteroid Dock Port";
@@ -2641,10 +2879,13 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
"Mt" = (
/obj/structure/lattice,
/turf/open/space,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"MC" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -2681,6 +2922,15 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Nb" = (
+/obj/machinery/power/shuttle_engine/propulsion,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Nf" = (
/obj/structure/table,
/obj/item/reagent_containers/condiment/flour,
@@ -2830,6 +3080,13 @@
/obj/effect/station_crash/devastating,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"OL" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"OM" = (
/obj/item/cultivator,
/turf/open/floor/grass,
@@ -2844,6 +3101,15 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/escape/brig)
+<<<<<<< HEAD
+=======
+"Pb" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Pe" = (
/obj/structure/flora/bush/ferny/style_random,
/turf/open/misc/asteroid,
@@ -2924,6 +3190,18 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Qj" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/iron/dark,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Qq" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
dir = 4
@@ -3196,6 +3474,13 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"SU" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/escape/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"SV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
dir = 4
@@ -3205,11 +3490,14 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
+<<<<<<< HEAD
"SW" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/structure/lattice,
/turf/open/space/basic,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"SX" = (
/obj/machinery/light/small/directional/north,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{
@@ -3438,6 +3726,23 @@
/obj/machinery/power/shuttle_engine/propulsion,
/turf/open/floor/plating,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"VF" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{
+ name = "Outlet Injector"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"VM" = (
+/obj/machinery/mass_driver/chapelgun,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/turf/open/floor/iron/dark,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"VN" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
dir = 6
@@ -3453,6 +3758,7 @@
},
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
"Wd" = (
/obj/item/book/codex_gigas,
/obj/machinery/camera/directional/south{
@@ -3462,6 +3768,8 @@
/obj/structure/rack/skeletal,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"We" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
@@ -3532,6 +3840,7 @@
/obj/machinery/biogenerator,
/turf/open/floor/iron,
/area/shuttle/escape)
+<<<<<<< HEAD
"WT" = (
/obj/structure/window/reinforced/spawner/directional/east,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -3539,6 +3848,8 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Xb" = (
/obj/structure/table/wood,
/obj/item/kirbyplants/organic/plant22{
@@ -3571,6 +3882,16 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Xx" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"XF" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -3677,6 +3998,16 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/carpet,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"YU" = (
+/obj/structure/window/reinforced/spawner/directional/north{
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/space/basic,
+/area/shuttle/escape)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"YZ" = (
/obj/structure/table/wood,
/obj/item/storage/bag/books,
@@ -3717,6 +4048,14 @@
/obj/machinery/newscaster/directional/south,
/turf/open/floor/iron/dark,
/area/shuttle/escape)
+<<<<<<< HEAD
+=======
+"Zn" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/escape/brig)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Zr" = (
/obj/machinery/power/apc/auto_name/directional/north,
/obj/structure/cable,
@@ -3796,7 +4135,11 @@ JG
JG
JG
Ho
+<<<<<<< HEAD
fP
+=======
+JZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
lc
zE
@@ -4030,7 +4373,11 @@ nr
pv
Kf
Fm
+<<<<<<< HEAD
aJ
+=======
+qi
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ux
nr
nr
@@ -4295,7 +4642,11 @@ nr
nr
nr
nr
+<<<<<<< HEAD
af
+=======
+uP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hq
JG
JG
@@ -4368,7 +4719,11 @@ Ac
CA
Dr
Ex
+<<<<<<< HEAD
cr
+=======
+Fx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nr
nr
nr
@@ -4461,7 +4816,11 @@ jx
YC
Km
zE
+<<<<<<< HEAD
Le
+=======
+YU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JG
JG
JG
@@ -4705,8 +5064,13 @@ oa
QY
Sq
Tp
+<<<<<<< HEAD
gU
WT
+=======
+VM
+Xx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jn
JG
JG
@@ -4832,18 +5196,30 @@ JG
JG
JG
PB
+<<<<<<< HEAD
lj
+=======
+ti
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iw
iw
iw
iw
gl
zE
+<<<<<<< HEAD
ds
Zh
ds
ds
KL
+=======
+SU
+Zh
+SU
+SU
+Zn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jc
jc
Pe
@@ -4871,7 +5247,11 @@ jx
nl
Km
zE
+<<<<<<< HEAD
jM
+=======
+hV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JG
JG
JG
@@ -4914,7 +5294,11 @@ JG
JG
JG
PB
+<<<<<<< HEAD
lj
+=======
+ti
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iw
JG
JG
@@ -4942,7 +5326,11 @@ zP
CM
BX
Gv
+<<<<<<< HEAD
HE
+=======
+yP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nr
nr
nr
@@ -4996,10 +5384,17 @@ JG
JG
JG
PB
+<<<<<<< HEAD
lj
Mt
af
fA
+=======
+ti
+OL
+uP
+ln
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
zE
AJ
@@ -5073,7 +5468,11 @@ JG
JG
JG
iw
+<<<<<<< HEAD
Mt
+=======
+OL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iw
iw
iw
@@ -5112,7 +5511,11 @@ JA
yc
yc
yc
+<<<<<<< HEAD
cb
+=======
+Jf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sf
nr
VN
@@ -5158,7 +5561,11 @@ iw
JG
JG
dp
+<<<<<<< HEAD
af
+=======
+uP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
Zf
zE
@@ -5194,7 +5601,11 @@ Tk
bI
vj
yc
+<<<<<<< HEAD
cb
+=======
+Jf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sf
Tt
dn
@@ -5224,8 +5635,13 @@ Ho
Ho
Ho
Ho
+<<<<<<< HEAD
AL
Cl
+=======
+bC
+Nb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JG
JG
JG
@@ -5237,7 +5653,11 @@ JG
JG
JG
bd
+<<<<<<< HEAD
Mt
+=======
+OL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bT
zE
zE
@@ -5319,7 +5739,11 @@ aH
iw
iw
iw
+<<<<<<< HEAD
as
+=======
+cH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
zE
jc
@@ -5396,12 +5820,21 @@ JG
JG
"}
(21,1,1) = {"
+<<<<<<< HEAD
af
af
hq
SW
hq
xs
+=======
+uP
+uP
+hq
+rZ
+hq
+bl
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
jc
jc
@@ -5686,7 +6119,11 @@ Kg
oc
ZM
yc
+<<<<<<< HEAD
wB
+=======
+zh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SQ
yh
Wo
@@ -5724,7 +6161,11 @@ JG
JG
"}
(25,1,1) = {"
+<<<<<<< HEAD
pW
+=======
+VF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Sg
ow
WG
@@ -5806,7 +6247,11 @@ JG
JG
"}
(26,1,1) = {"
+<<<<<<< HEAD
as
+=======
+cH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
ox
bb
@@ -6041,7 +6486,11 @@ ID
fY
pD
Iw
+<<<<<<< HEAD
Wd
+=======
+Ju
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zE
JG
JG
@@ -6130,7 +6579,11 @@ JG
Ho
Ho
Ho
+<<<<<<< HEAD
hJ
+=======
+jt
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bv
"}
(30,1,1) = {"
@@ -6197,7 +6650,11 @@ Am
WM
jx
cZ
+<<<<<<< HEAD
cc
+=======
+hZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vt
YZ
Xu
@@ -6225,7 +6682,11 @@ LK
zE
LK
dX
+<<<<<<< HEAD
Jl
+=======
+ml
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fm
zE
zE
@@ -6294,7 +6755,11 @@ PB
Ho
Ho
Ho
+<<<<<<< HEAD
BW
+=======
+Pb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Ye
"}
(32,1,1) = {"
@@ -6302,9 +6767,15 @@ JG
JG
IM
IM
+<<<<<<< HEAD
Jl
Jl
Jl
+=======
+ml
+ml
+ml
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
IM
JG
JG
@@ -6356,7 +6827,11 @@ JG
JG
JG
nr
+<<<<<<< HEAD
AU
+=======
+Qj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Am
WM
jx
@@ -6392,7 +6867,11 @@ JG
JG
JG
JG
+<<<<<<< HEAD
Jl
+=======
+ml
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fm
zE
zE
@@ -6643,8 +7122,13 @@ JG
JG
JG
JG
+<<<<<<< HEAD
Jl
Jl
+=======
+ml
+ml
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jS
zE
ko
@@ -6892,7 +7376,11 @@ JG
JG
JG
JG
+<<<<<<< HEAD
Mt
+=======
+OL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mm
kJ
IM
diff --git a/_maps/shuttles/emergency_shadow.dmm b/_maps/shuttles/emergency_shadow.dmm
index 69c2e6bcb6d..5afa72919cb 100644
--- a/_maps/shuttles/emergency_shadow.dmm
+++ b/_maps/shuttles/emergency_shadow.dmm
@@ -63,6 +63,19 @@
/obj/effect/mob_spawn/corpse/human/clown,
/turf/open/floor/engine/plasma,
/area/shuttle/escape/engine)
+"cv" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 9
+ },
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_y = 9
+ },
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/tile/neutral/opposingcorners,
+/turf/open/floor/iron/dark/smooth_large,
+/area/shuttle/escape)
"cF" = (
/obj/structure/table,
/obj/item/storage/fancy/coffee_cart_rack{
@@ -214,18 +227,6 @@
},
/turf/open/floor/eighties,
/area/shuttle/escape)
-"kv" = (
-/obj/effect/turf_decal/trimline/yellow/corner{
- dir = 8
- },
-/obj/effect/turf_decal/trimline/neutral/line{
- dir = 4
- },
-/obj/item/kirbyplants/organic/plant21,
-/obj/structure/sign/warning/hot_temp/directional/west,
-/obj/item/cigarette/rollie/cannabis,
-/turf/open/floor/iron/dark/textured_large,
-/area/shuttle/escape)
"kx" = (
/obj/structure/chair/comfy/shuttle,
/obj/effect/turf_decal/tile/red/opposingcorners,
@@ -274,19 +275,6 @@
/obj/effect/turf_decal/tile/neutral/opposingcorners,
/turf/open/floor/iron/dark/smooth_large,
/area/shuttle/escape)
-"lF" = (
-/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 9
- },
-/obj/machinery/cell_charger,
-/obj/item/stock_parts/power_store/cell/high{
- pixel_y = 9
- },
-/obj/item/stock_parts/power_store/cell/high,
-/obj/effect/turf_decal/tile/neutral/opposingcorners,
-/turf/open/floor/iron/dark/smooth_large,
-/area/shuttle/escape)
"lS" = (
/obj/structure/chair/comfy/shuttle,
/obj/structure/reagent_dispensers/wall/peppertank/directional/north,
@@ -471,6 +459,18 @@
},
/turf/open/floor/iron/dark/small,
/area/shuttle/escape/engine)
+"xy" = (
+/obj/effect/turf_decal/trimline/yellow/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/trimline/neutral/line{
+ dir = 4
+ },
+/obj/item/kirbyplants/organic/plant21,
+/obj/structure/sign/warning/hot_temp/directional/west,
+/obj/item/cigarette/rollie/cannabis,
+/turf/open/floor/iron/dark/textured_large,
+/area/shuttle/escape)
"yg" = (
/obj/effect/turf_decal/trimline/red/corner{
dir = 1
@@ -1337,7 +1337,7 @@ cH
"}
(12,1,1) = {"
US
-kv
+xy
Dq
cV
ZM
@@ -1512,7 +1512,7 @@ yQ
yQ
YL
AS
-lF
+cv
US
"}
(24,1,1) = {"
diff --git a/_maps/shuttles/emergency_wawa.dmm b/_maps/shuttles/emergency_wawa.dmm
index c4e1efa5146..458ffa8a179 100644
--- a/_maps/shuttles/emergency_wawa.dmm
+++ b/_maps/shuttles/emergency_wawa.dmm
@@ -107,6 +107,11 @@
/obj/machinery/light/small/dim/directional/north,
/turf/open/floor/plating,
/area/shuttle/escape)
+"at" = (
+/obj/structure/lattice,
+/obj/structure/marker_beacon/burgundy,
+/turf/template_noop,
+/area/shuttle/escape)
"au" = (
/obj/structure/chair/comfy/shuttle{
dir = 1
@@ -196,6 +201,19 @@
},
/turf/open/floor/plating,
/area/shuttle/escape)
+"aV" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "dont close or i will kill you"
+ },
+/obj/machinery/conveyor/auto{
+ dir = 4
+ },
+/obj/structure/fans/tiny/shield{
+ max_integrity = 400;
+ name = "recycling shield"
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
"aW" = (
/obj/machinery/recycler{
dir = 8
@@ -334,19 +352,6 @@
/obj/structure/chair/comfy/shuttle,
/turf/open/floor/engine,
/area/shuttle/escape)
-"ee" = (
-/obj/machinery/conveyor/auto{
- dir = 8
- },
-/obj/machinery/door/poddoor/preopen{
- id = "dont close or i will kill you"
- },
-/obj/structure/fans/tiny/shield{
- max_integrity = 400;
- name = "recycling shield"
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
"ga" = (
/obj/effect/turf_decal/tile/yellow/opposingcorners{
dir = 8
@@ -421,19 +426,6 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/mineral/titanium/white,
/area/shuttle/escape)
-"lE" = (
-/obj/machinery/door/poddoor/preopen{
- id = "dont close or i will kill you"
- },
-/obj/machinery/conveyor/auto{
- dir = 4
- },
-/obj/structure/fans/tiny/shield{
- max_integrity = 400;
- name = "recycling shield"
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
"lI" = (
/obj/effect/turf_decal/tile/yellow/opposingcorners{
dir = 8
@@ -571,6 +563,19 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/shuttle/escape)
+"za" = (
+/obj/machinery/conveyor/auto{
+ dir = 8
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "dont close or i will kill you"
+ },
+/obj/structure/fans/tiny/shield{
+ max_integrity = 400;
+ name = "recycling shield"
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
"zT" = (
/obj/effect/turf_decal/siding/dark_blue{
dir = 1
@@ -718,6 +723,10 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/mineral/titanium/white,
/area/shuttle/escape)
+"Pw" = (
+/obj/structure/lattice,
+/turf/template_noop,
+/area/shuttle/escape)
"QP" = (
/obj/machinery/conveyor/auto/inverted{
dir = 1
@@ -758,19 +767,10 @@
"XE" = (
/turf/open/floor/iron/grimy,
/area/shuttle/escape)
-"XI" = (
-/obj/structure/lattice,
-/turf/template_noop,
-/area/shuttle/escape)
"Yk" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/plating,
/area/shuttle/escape)
-"Zg" = (
-/obj/structure/lattice,
-/obj/structure/marker_beacon/burgundy,
-/turf/template_noop,
-/area/shuttle/escape)
(1,1,1) = {"
aa
@@ -789,9 +789,9 @@ aa
aa
aa
bq
-lE
+aV
bq
-lE
+aV
bq
aa
aa
@@ -799,8 +799,8 @@ aa
"}
(2,1,1) = {"
aa
-Zg
-XI
+at
+Pw
al
al
al
@@ -924,7 +924,7 @@ bk
"}
(7,1,1) = {"
aa
-Zg
+at
al
al
ay
@@ -1048,9 +1048,9 @@ bq
bq
"}
(12,1,1) = {"
-Zg
-XI
-XI
+at
+Pw
+Pw
bq
bq
bq
@@ -1089,9 +1089,9 @@ aa
aa
aa
bq
-ee
+za
bq
-ee
+za
bq
aa
aa
diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm
index 503f0bc3bf7..b6ce0c3405e 100644
--- a/_maps/shuttles/pirate_default.dmm
+++ b/_maps/shuttles/pirate_default.dmm
@@ -463,6 +463,26 @@
/obj/structure/sign/warning/vacuum/external/directional/east,
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"br" = (
+/obj/structure/table/wood,
+/obj/item/storage/box/matches,
+/obj/item/reagent_containers/cup/glass/bottle/rum{
+ name = "Captain Pete's Private Reserve Cuban Spaced Rum";
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass{
+ pixel_x = 6;
+ pixel_y = 12
+ },
+/obj/item/cigarette/cigar,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/wood,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bt" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
@@ -805,11 +825,29 @@
/obj/machinery/light/small/directional/east,
/obj/machinery/computer/monitor{
dir = 8
+<<<<<<< HEAD
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm/directional/south,
/obj/effect/mapping_helpers/airalarm/all_access,
/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+=======
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/mapping_helpers/airalarm/all_access,
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/pirate)
+"vB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/rack{
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dir = 8
},
/turf/open/floor/iron/dark,
@@ -969,6 +1007,7 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/iron,
+<<<<<<< HEAD
/area/shuttle/pirate)
"UI" = (
/obj/structure/table/wood,
@@ -986,6 +1025,8 @@
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/wood,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/shuttle/pirate)
(1,1,1) = {"
diff --git a/_maps/shuttles/pirate_dutchman.dmm b/_maps/shuttles/pirate_dutchman.dmm
index b599698bc6f..ccca83f6fab 100644
--- a/_maps/shuttles/pirate_dutchman.dmm
+++ b/_maps/shuttles/pirate_dutchman.dmm
@@ -487,8 +487,14 @@
"xA" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
dir = 1;
+<<<<<<< HEAD
x_offset = -4;
y_offset = -8
+=======
+ x_offset = 7;
+ y_offset = -3;
+ view_range = 10
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/turf/open/floor/carpet/royalblack/airless,
/area/shuttle/pirate/flying_dutchman)
diff --git a/_maps/shuttles/pirate_ex_interdyne.dmm b/_maps/shuttles/pirate_ex_interdyne.dmm
index e8ad6a0e2d2..ad384c545e4 100644
--- a/_maps/shuttles/pirate_ex_interdyne.dmm
+++ b/_maps/shuttles/pirate_ex_interdyne.dmm
@@ -62,6 +62,17 @@
"aj" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"ak" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
+ dir = 8
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/iron/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"al" = (
/obj/machinery/loot_locator{
dir = 8
@@ -144,10 +155,31 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
"aF" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
dir = 4;
x_offset = -3;
+=======
+"aD" = (
+/obj/machinery/power/apc/auto_name/directional/north{
+ cell_type = /obj/item/stock_parts/power_store/battery/bluespace;
+ start_charge = 100
+ },
+/obj/effect/mapping_helpers/apc/cut_AI_wire,
+/obj/effect/turf_decal/tile/dark_blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/power/smes/magical,
+/obj/structure/cable,
+/turf/open/floor/iron/dark,
+/area/shuttle/pirate)
+"aF" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
+ dir = 4;
+ x_offset = 0;
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
y_offset = 7
},
/turf/open/floor/iron/dark,
@@ -269,7 +301,11 @@
/area/shuttle/pirate)
"aS" = (
/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
+<<<<<<< HEAD
/obj/structure/closet/crate/freezer/blood,
+=======
+/obj/structure/closet/crate/freezer/blood/interdyne,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/light/small/blacklight/directional/south,
/obj/machinery/iv_drip,
/turf/open/floor/iron/dark,
@@ -558,6 +594,7 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
+<<<<<<< HEAD
"rV" = (
/obj/machinery/power/apc/auto_name/directional/north{
cell_type = /obj/item/stock_parts/power_store/battery/bluespace;
@@ -572,6 +609,8 @@
/obj/structure/cable,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sP" = (
/obj/effect/turf_decal/tile/dark_blue/opposingcorners,
/obj/structure/table/optable,
@@ -609,6 +648,66 @@
/obj/item/surgical_drapes,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"wf" = (
+/obj/effect/turf_decal/tile/dark_blue/half/contrasted,
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/item/stack/sheet/mineral/plasma,
+/obj/machinery/reagentgrinder,
+/obj/item/storage/box/monkeycubes/syndicate,
+/obj/item/storage/box/monkeycubes/syndicate,
+/obj/item/reagent_containers/cup/bottle,
+/obj/item/reagent_containers/cup/bottle,
+/obj/item/reagent_containers/cup/bottle,
+/obj/item/reagent_containers/cup/beaker/meta,
+/obj/item/stack/sheet/mineral/plasma/thirty,
+/obj/item/stack/sheet/mineral/uranium/five,
+/obj/item/stack/sheet/mineral/uranium/five,
+/obj/item/stack/sheet/mineral/uranium/five,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/silver,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/stack/sheet/mineral/gold,
+/obj/item/reagent_containers/condiment/milk,
+/obj/item/reagent_containers/condiment/milk,
+/obj/item/reagent_containers/condiment/milk,
+/obj/item/reagent_containers/condiment/milk,
+/obj/item/reagent_containers/condiment/milk,
+/turf/open/floor/iron/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yi" = (
/obj/machinery/door/airlock/hatch{
id_tag = "piratebridgebolt";
@@ -701,6 +800,7 @@
},
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
"Lv" = (
/obj/effect/turf_decal/tile/dark_blue/half/contrasted{
dir = 8
@@ -766,6 +866,8 @@
/obj/item/reagent_containers/condiment/milk,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Oe" = (
/obj/effect/turf_decal/tile/dark_blue{
dir = 4
@@ -871,7 +973,11 @@ af
aj
ap
aw
+<<<<<<< HEAD
Lv
+=======
+ak
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bF
aj
af
@@ -983,7 +1089,11 @@ fY
bX
iD
aj
+<<<<<<< HEAD
rV
+=======
+aD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aG
ep
aj
@@ -1106,7 +1216,11 @@ aj
Rq
bu
VF
+<<<<<<< HEAD
MH
+=======
+wf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aj
af
af
diff --git a/_maps/shuttles/pirate_geode.dmm b/_maps/shuttles/pirate_geode.dmm
index afb582e4322..0b7d92797fe 100644
--- a/_maps/shuttles/pirate_geode.dmm
+++ b/_maps/shuttles/pirate_geode.dmm
@@ -430,8 +430,12 @@
"vY" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
dir = 8;
+<<<<<<< HEAD
x_offset = 10;
y_offset = 5
+=======
+ x_offset = -8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/turf_decal/weather/dirt{
dir = 3
@@ -487,7 +491,11 @@
/obj/effect/turf_decal/stripes/white/line{
dir = 8
},
+<<<<<<< HEAD
/turf/open/floor/plating,
+=======
+/turf/open/floor/plating/airless,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/shuttle/pirate)
"yz" = (
/obj/structure/flora/lunar_plant/style_3,
@@ -838,7 +846,11 @@
/obj/machinery/power/shuttle_engine/propulsion{
dir = 8
},
+<<<<<<< HEAD
/turf/open/floor/plating,
+=======
+/turf/open/floor/plating/airless,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/shuttle/pirate)
"Pr" = (
/obj/structure/table/wood,
diff --git a/_maps/shuttles/pirate_grey.dmm b/_maps/shuttles/pirate_grey.dmm
index edceba20545..7bc1186359a 100644
--- a/_maps/shuttles/pirate_grey.dmm
+++ b/_maps/shuttles/pirate_grey.dmm
@@ -353,8 +353,14 @@
/obj/machinery/light/small/directional/west,
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
dir = 4;
+<<<<<<< HEAD
x_offset = -3;
y_offset = 7
+=======
+ x_offset = -5;
+ y_offset = 12;
+ view_range = 10
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/firealarm/directional/south,
@@ -734,6 +740,7 @@
/obj/structure/chair/stool/bar/directional/south,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
"yA" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -741,6 +748,8 @@
/obj/machinery/airalarm/directional/east,
/turf/open/floor/plating,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yI" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
@@ -861,11 +870,29 @@
},
/obj/effect/mapping_helpers/airlock/cutaiwire,
/obj/docking_port/mobile/pirate{
+<<<<<<< HEAD
dir = 4
+=======
+ dir = 8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/obj/structure/fans/tiny,
/turf/open/floor/pod/light,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"Bu" = (
+/obj/machinery/power/apc/auto_name/directional/north{
+ cell_type = /obj/item/stock_parts/power_store/battery/bluespace
+ },
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/cable,
+/obj/effect/mapping_helpers/apc/cut_AI_wire,
+/turf/open/floor/plating,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BL" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
@@ -920,6 +947,16 @@
/obj/item/flashlight,
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"De" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/machinery/airalarm/directional/east,
+/turf/open/floor/plating,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Dn" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
@@ -1218,6 +1255,12 @@
},
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"Pn" = (
+/turf/closed/wall,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"PM" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/spawner/random/trash/grille_or_waste,
@@ -1279,6 +1322,7 @@
},
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
"RY" = (
/obj/machinery/power/apc/auto_name/directional/north{
cell_type = /obj/item/stock_parts/power_store/battery/bluespace
@@ -1290,6 +1334,8 @@
/obj/effect/mapping_helpers/apc/cut_AI_wire,
/turf/open/floor/plating,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Sb" = (
/obj/structure/reagent_dispensers/plumbed,
/turf/open/floor/plating,
@@ -1491,9 +1537,12 @@
/obj/effect/spawner/random/trash/garbage,
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
"ZU" = (
/turf/closed/wall,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
(1,1,1) = {"
je
@@ -1667,7 +1716,11 @@ qm
Ti
"}
(10,1,1) = {"
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Ut
kw
CH
@@ -1682,7 +1735,11 @@ Yj
rV
Tq
uE
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
HD
"}
(11,1,1) = {"
@@ -1701,7 +1758,11 @@ wX
Oa
Tq
Lo
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ei
"}
(12,1,1) = {"
@@ -1710,7 +1771,11 @@ sB
GE
Yj
Nu
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
am
Eq
yN
@@ -1727,7 +1792,11 @@ HD
HD
XX
vJ
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SB
Nm
Vw
@@ -1739,14 +1808,22 @@ Sh
gQ
dd
xy
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
HD
"}
(14,1,1) = {"
pk
pS
pU
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
QO
Ac
Wc
@@ -1762,11 +1839,19 @@ Sh
zB
"}
(15,1,1) = {"
+<<<<<<< HEAD
ZU
dI
Sv
ZU
RY
+=======
+Pn
+dI
+Sv
+Pn
+Bu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xO
yf
Lk
@@ -1784,7 +1869,11 @@ zB
zB
vM
lO
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tJ
xO
ax
@@ -1835,7 +1924,11 @@ Bh
Uf
DP
zB
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(19,1,1) = {"
je
@@ -1848,17 +1941,29 @@ sm
CY
fj
DG
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Ci
Sh
Gb
xm
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
je
"}
(20,1,1) = {"
je
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ia
NI
yU
@@ -1867,23 +1972,37 @@ bv
aD
cJ
tU
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xl
Sh
AR
lO
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
je
"}
(21,1,1) = {"
je
+<<<<<<< HEAD
ZU
ZU
+=======
+Pn
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xm
yU
OG
qo
pT
+<<<<<<< HEAD
yA
sh
ZU
@@ -1892,16 +2011,31 @@ ZU
pB
ZU
ZU
+=======
+De
+sh
+Pn
+Zc
+Pn
+pB
+Pn
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
je
"}
(22,1,1) = {"
je
je
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
EA
ll
FI
Hh
+<<<<<<< HEAD
ZU
ZU
Hh
@@ -1910,6 +2044,16 @@ gz
ZU
RX
ZU
+=======
+Pn
+Pn
+Hh
+Pn
+gz
+Pn
+RX
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
je
je
"}
@@ -1926,8 +2070,13 @@ ti
Yf
FI
aV
+<<<<<<< HEAD
ZU
ZU
+=======
+Pn
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
je
je
je
@@ -1945,7 +2094,11 @@ Am
FT
pk
pk
+<<<<<<< HEAD
ZU
+=======
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
je
je
je
@@ -1958,8 +2111,13 @@ je
je
pk
zB
+<<<<<<< HEAD
ZU
ZU
+=======
+Pn
+Pn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zB
pk
pk
diff --git a/_maps/shuttles/pirate_irs.dmm b/_maps/shuttles/pirate_irs.dmm
index c315f70d3b0..2e595ba817e 100644
--- a/_maps/shuttles/pirate_irs.dmm
+++ b/_maps/shuttles/pirate_irs.dmm
@@ -380,6 +380,7 @@
/obj/machinery/loot_locator,
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
"nj" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate,
/obj/effect/turf_decal/trimline/dark_blue/filled/line{
@@ -387,6 +388,8 @@
},
/turf/open/floor/iron,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nk" = (
/obj/effect/turf_decal/tile/dark_blue/half{
dir = 8
@@ -1026,6 +1029,22 @@
/obj/structure/curtain,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"Dr" = (
+/obj/structure/sign/departments/vault/directional/north,
+/obj/effect/turf_decal/trimline/dark_blue/filled/end{
+ dir = 8
+ },
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/machinery/shower/directional/south,
+/obj/effect/turf_decal/box,
+/obj/structure/fluff/shower_drain,
+/turf/open/floor/iron/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Dy" = (
/obj/machinery/light/directional/south,
/turf/open/floor/iron/white,
@@ -1052,6 +1071,7 @@
},
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
"Ek" = (
/obj/structure/sign/departments/vault/directional/north,
/obj/effect/turf_decal/trimline/dark_blue/filled/end{
@@ -1065,6 +1085,8 @@
/obj/structure/fluff/shower_drain,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Eq" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/bot,
@@ -1424,6 +1446,20 @@
dir = 4
},
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"LV" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
+ y_offset = 11;
+ x_offset = -4;
+ view_range = 10
+ },
+/obj/effect/turf_decal/trimline/dark_blue/filled/line{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"LX" = (
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
@@ -2262,7 +2298,11 @@ WR
"}
(13,1,1) = {"
Rh
+<<<<<<< HEAD
nj
+=======
+LV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ev
mA
pO
@@ -2422,7 +2462,11 @@ OC
Mu
OC
hK
+<<<<<<< HEAD
Ek
+=======
+Dr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
BG
XX
wM
diff --git a/_maps/shuttles/pirate_silverscale.dmm b/_maps/shuttles/pirate_silverscale.dmm
index f5a63f28e49..08b645fb11b 100644
--- a/_maps/shuttles/pirate_silverscale.dmm
+++ b/_maps/shuttles/pirate_silverscale.dmm
@@ -80,10 +80,13 @@
/obj/effect/turf_decal/trimline/yellow/warning,
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
+<<<<<<< HEAD
"eK" = (
/obj/machinery/power/shuttle_engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"eU" = (
/obj/structure/chair/comfy/shuttle,
/turf/open/floor/carpet/royalblack,
@@ -105,6 +108,7 @@
dir = 8
},
/area/shuttle/pirate)
+<<<<<<< HEAD
"fk" = (
/obj/structure/rack{
dir = 8
@@ -130,6 +134,8 @@
/obj/item/gun/ballistic/rifle/boltaction/prime,
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fN" = (
/obj/structure/dresser,
/obj/machinery/light/small/directional/north,
@@ -149,6 +155,17 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"gw" = (
+/mob/living/basic/bot/medbot/nukie{
+ name = "Mortimer";
+ faction = list("pirate");
+ desc = "A lowly medibot serving as the Silverscales' live-in manservant/butler/coat rack. They recently discovered it can heal people as well."
+ },
+/turf/open/floor/carpet/royalblack,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ht" = (
/obj/machinery/door/airlock/silver,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
@@ -177,6 +194,7 @@
/obj/effect/turf_decal/trimline/blue,
/turf/open/floor/pod/light,
/area/shuttle/pirate)
+<<<<<<< HEAD
"iD" = (
/obj/structure/table/glass,
/obj/item/reagent_containers/cup/glass/bottle/tequila{
@@ -205,6 +223,8 @@
},
/turf/open/floor/iron/dark/textured,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"je" = (
/turf/template_noop,
/area/template_noop)
@@ -224,6 +244,7 @@
},
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
"kq" = (
/obj/machinery/porta_turret/syndicate/energy{
dir = 8;
@@ -234,6 +255,8 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ky" = (
/obj/structure/toilet{
dir = 8
@@ -341,6 +364,7 @@
"rB" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pirate)
+<<<<<<< HEAD
"st" = (
/mob/living/basic/bot/medbot/nukie{
name = "Mortimer";
@@ -349,6 +373,8 @@
},
/turf/open/floor/carpet/royalblack,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sB" = (
/turf/open/floor/iron/dark/textured,
/area/shuttle/pirate)
@@ -400,6 +426,19 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"wE" = (
+/obj/machinery/porta_turret/syndicate/energy{
+ dir = 8;
+ faction = list("pirate")
+ },
+/obj/effect/turf_decal/trimline/yellow/warning{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xj" = (
/obj/structure/table/glass,
/obj/item/storage/medkit/brute,
@@ -418,6 +457,26 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"xR" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/melee/energy/sword/saber/purple{
+ pixel_y = 12
+ },
+/obj/item/melee/energy/sword/saber/purple{
+ pixel_x = 8;
+ pixel_y = 7
+ },
+/obj/item/melee/energy/sword/saber/purple{
+ pixel_x = 17
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/pod/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"yv" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/obj/machinery/meter,
@@ -497,9 +556,12 @@
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
"Bl" = (
+<<<<<<< HEAD
/obj/machinery/door/airlock/external/glass/ruin{
id_tag = "piratestarboardexternal"
},
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/docking_port/stationary{
dir = 4;
dwidth = 13;
@@ -509,7 +571,11 @@
width = 26
},
/obj/docking_port/mobile/pirate{
+<<<<<<< HEAD
dir = 4;
+=======
+ dir = 8;
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
launch_status = 0;
movement_force = list("KNOCKDOWN"=0,"THROW"=0);
name = "Silverscale Cruiser";
@@ -519,6 +585,12 @@
dir = 4
},
/obj/effect/mapping_helpers/airlock/cutaiwire,
+<<<<<<< HEAD
+=======
+/obj/machinery/door/airlock/external/glass/ruin{
+ id_tag = "piratestarboardexternal"
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/pod/light,
/area/shuttle/pirate)
"Ch" = (
@@ -595,6 +667,17 @@
},
/turf/open/floor/plating,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"Id" = (
+/obj/structure/guncase,
+/obj/item/gun/energy/laser/luxurypaywall{
+ projectile_damage_multiplier = 1.30;
+ desc = "A laser gun modified to cost 20 credits to fire. Someone on the station should have an ID that works with this thing."
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ig" = (
/obj/structure/table/glass,
/obj/machinery/chem_dispenser/drinks{
@@ -648,6 +731,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
/turf/open/floor/carpet/royalblack,
/area/shuttle/pirate)
+<<<<<<< HEAD
"KB" = (
/obj/structure/rack{
dir = 8
@@ -670,6 +754,8 @@
},
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Lk" = (
/obj/machinery/power/terminal{
dir = 1
@@ -725,8 +811,14 @@
"Mo" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/pirate{
dir = 8;
+<<<<<<< HEAD
x_offset = 10;
y_offset = 5
+=======
+ x_offset = 12;
+ y_offset = 5;
+ view_range = 10
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
},
/turf/open/floor/iron/dark/side{
dir = 8
@@ -761,6 +853,7 @@
/obj/effect/mapping_helpers/airlock/cutaiwire,
/turf/open/floor/pod/light,
/area/shuttle/pirate)
+<<<<<<< HEAD
"NL" = (
/obj/structure/guncase,
/obj/item/gun/energy/laser/luxurypaywall{
@@ -768,6 +861,35 @@
desc = "A laser gun modified to cost 20 credits to fire. Someone on the station should have an ID that works with this thing."
},
/turf/open/floor/pod/dark,
+=======
+"Oo" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/glass/bottle/tequila{
+ pixel_x = 10;
+ pixel_y = 10
+ },
+/obj/item/reagent_containers/cup/glass/bottle/hcider{
+ pixel_x = -6;
+ pixel_y = 8
+ },
+/obj/item/reagent_containers/cup/glass/bottle/rum{
+ pixel_x = -15;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/cup/glass/shaker{
+ pixel_x = 1;
+ pixel_y = 13
+ },
+/obj/item/reagent_containers/cup/glass/bottle/gin{
+ pixel_x = -10;
+ pixel_y = 15
+ },
+/obj/item/reagent_containers/cup/glass/bottle/wine{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark/textured,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/shuttle/pirate)
"Ox" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
@@ -832,6 +954,34 @@
/obj/structure/fireplace,
/turf/open/floor/iron/dark/textured,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"RO" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/obj/item/ammo_box/strilka310/phasic{
+ pixel_y = -5;
+ pixel_x = 5
+ },
+/obj/item/ammo_box/strilka310/phasic{
+ pixel_x = 5
+ },
+/obj/item/ammo_box/strilka310/phasic{
+ pixel_x = -5;
+ pixel_y = -5
+ },
+/obj/item/ammo_box/strilka310/phasic{
+ pixel_x = -5
+ },
+/obj/item/gun/ballistic/rifle/boltaction/prime{
+ pixel_y = 4
+ },
+/obj/item/gun/ballistic/rifle/boltaction/prime,
+/turf/open/floor/pod/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"RU" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
dir = 4
@@ -930,6 +1080,21 @@
/obj/machinery/recharger,
/turf/open/floor/iron/dark,
/area/shuttle/pirate)
+<<<<<<< HEAD
+=======
+"Wd" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/south{
+ id = "pirateportexternal";
+ name = "External Bolt Control";
+ normaldoorcontrol = 1;
+ specialfunctions = 4
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/pirate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ww" = (
/obj/machinery/power/shuttle_engine/heater{
dir = 8
@@ -976,6 +1141,7 @@
/obj/structure/bookcase/random/fiction,
/turf/open/floor/iron/dark/textured,
/area/shuttle/pirate)
+<<<<<<< HEAD
"Yb" = (
/obj/structure/rack{
dir = 8
@@ -991,6 +1157,16 @@
pixel_x = 17
},
/obj/effect/turf_decal/bot,
+=======
+"Yj" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/storage/box/lethalshot,
+/obj/item/storage/box/lethalshot,
+/obj/effect/turf_decal/bot,
+/obj/item/gun/ballistic/shotgun/doublebarrel/slugs,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/pod/dark,
/area/shuttle/pirate)
"YD" = (
@@ -1064,7 +1240,11 @@ rB
Ww
Ww
Ww
+<<<<<<< HEAD
eK
+=======
+Ww
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Ww
Ww
Ww
@@ -1097,15 +1277,25 @@ TV
rB
rB
dQ
+<<<<<<< HEAD
Lf
+=======
+Wd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rB
aZ
aZ
aZ
Is
+<<<<<<< HEAD
KB
fk
Yb
+=======
+Yj
+RO
+xR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rB
Fk
QI
@@ -1143,7 +1333,11 @@ fR
Ox
Qm
wa
+<<<<<<< HEAD
NL
+=======
+Id
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rB
UV
wa
@@ -1204,7 +1398,11 @@ dT
xs
Ai
fT
+<<<<<<< HEAD
iD
+=======
+Oo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
HD
"}
(11,1,1) = {"
@@ -1235,7 +1433,11 @@ xs
Ai
am
am
+<<<<<<< HEAD
st
+=======
+gw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
am
am
Ai
@@ -1341,7 +1543,11 @@ rB
rB
"}
(18,1,1) = {"
+<<<<<<< HEAD
kq
+=======
+wE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rB
zm
RU
@@ -1357,7 +1563,11 @@ rB
Uf
ZY
rB
+<<<<<<< HEAD
kq
+=======
+wE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(19,1,1) = {"
je
diff --git a/_maps/shuttles/ruin_cyborg_mothership.dmm b/_maps/shuttles/ruin_cyborg_mothership.dmm
index 5172fad5942..d8e0d9cc67f 100644
--- a/_maps/shuttles/ruin_cyborg_mothership.dmm
+++ b/_maps/shuttles/ruin_cyborg_mothership.dmm
@@ -1,10 +1,13 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+<<<<<<< HEAD
"ad" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/window/reinforced/spawner/directional/west,
/turf/template_noop,
/area/shuttle/ruin/cyborg_mothership)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aB" = (
/obj/machinery/conveyor{
dir = 8;
@@ -47,6 +50,14 @@
/obj/structure/cable,
/turf/open/floor/plating/airless,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
+=======
+"dI" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/template_noop,
+/area/shuttle/ruin/cyborg_mothership)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dO" = (
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/circuit/airless,
@@ -143,12 +154,15 @@
},
/turf/open/floor/circuit/airless,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
"jm" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/window/reinforced/spawner/directional/east,
/turf/template_noop,
/area/shuttle/ruin/cyborg_mothership)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"jx" = (
/obj/effect/mapping_helpers/burnt_floor,
/obj/effect/turf_decal/stripes/asteroid/line{
@@ -160,6 +174,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
"kn" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/window/reinforced/spawner/directional/north,
@@ -169,6 +184,8 @@
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating/airless,
/area/shuttle/ruin/cyborg_mothership)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ks" = (
/obj/machinery/holopad/secure,
/obj/structure/cable,
@@ -190,6 +207,7 @@
/obj/item/stack/rods,
/turf/template_noop,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
"lo" = (
/obj/structure/window/reinforced/spawner/directional/north,
/obj/structure/closet/crate/preopen,
@@ -202,6 +220,8 @@
/obj/item/stack/rods/fifty,
/turf/open/floor/plating/airless,
/area/shuttle/ruin/cyborg_mothership)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lv" = (
/obj/structure/cable,
/obj/machinery/conveyor{
@@ -257,6 +277,21 @@
/obj/effect/mapping_helpers/broken_floor,
/turf/open/floor/plating/airless,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
+=======
+"nM" = (
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/closet/crate/preopen,
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 8
+ },
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/rods/fifty,
+/turf/open/floor/plating/airless,
+/area/shuttle/ruin/cyborg_mothership)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oe" = (
/obj/structure/spacevine,
/obj/structure/cable,
@@ -532,11 +567,14 @@
/obj/structure/cable,
/turf/open/floor/plating/airless,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
"Bp" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/north,
/turf/template_noop,
/area/shuttle/ruin/cyborg_mothership)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BD" = (
/obj/structure/cable,
/obj/machinery/power/solar,
@@ -748,6 +786,15 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
+=======
+"OY" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/template_noop,
+/area/shuttle/ruin/cyborg_mothership)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Pf" = (
/obj/structure/window/reinforced/spawner/directional/south,
/obj/structure/closet/crate/solarpanel_small,
@@ -803,11 +850,32 @@
/obj/machinery/light/floor,
/turf/open/floor/iron/showroomfloor,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
+=======
+"SV" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/template_noop,
+/area/shuttle/ruin/cyborg_mothership)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ty" = (
/obj/structure/lattice,
/obj/item/stack/sheet/mineral/titanium,
/turf/template_noop,
/area/shuttle/ruin/cyborg_mothership)
+<<<<<<< HEAD
+=======
+"TH" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/window/reinforced/spawner/directional/north,
+/obj/effect/turf_decal/stripes/asteroid/line{
+ dir = 4
+ },
+/obj/machinery/power/port_gen/pacman,
+/turf/open/floor/plating/airless,
+/area/shuttle/ruin/cyborg_mothership)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TZ" = (
/obj/item/radio/intercom/directional/south,
/obj/structure/ai_core,
@@ -933,7 +1001,11 @@ hR
hR
kz
kz
+<<<<<<< HEAD
jm
+=======
+SV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zn
hR
hR
@@ -959,7 +1031,11 @@ kz
zZ
gG
zZ
+<<<<<<< HEAD
jm
+=======
+SV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zn
hR
hR
@@ -980,12 +1056,20 @@ hR
hR
hR
hR
+<<<<<<< HEAD
kn
+=======
+TH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RD
wA
jx
Pf
+<<<<<<< HEAD
jm
+=======
+SV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zn
hR
hR
@@ -1141,7 +1225,11 @@ hR
zF
Ge
dC
+<<<<<<< HEAD
Bp
+=======
+dI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
"}
@@ -1166,7 +1254,11 @@ hR
hR
qc
of
+<<<<<<< HEAD
jm
+=======
+SV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
"}
@@ -1192,7 +1284,11 @@ so
ss
of
dC
+<<<<<<< HEAD
jm
+=======
+SV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
"}
(12,1,1) = {"
@@ -1242,7 +1338,11 @@ so
KN
Hg
qn
+<<<<<<< HEAD
ad
+=======
+OY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
"}
(14,1,1) = {"
@@ -1266,7 +1366,11 @@ hR
hR
mC
of
+<<<<<<< HEAD
ad
+=======
+OY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
"}
@@ -1291,7 +1395,11 @@ hR
Yl
Jj
Ai
+<<<<<<< HEAD
Bp
+=======
+dI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
"}
@@ -1430,12 +1538,20 @@ hR
hR
hR
hR
+<<<<<<< HEAD
lo
+=======
+nM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
YC
yd
KR
Rv
+<<<<<<< HEAD
ad
+=======
+OY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
hR
@@ -1459,7 +1575,11 @@ kz
zZ
WO
zZ
+<<<<<<< HEAD
ad
+=======
+OY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
hR
@@ -1483,7 +1603,11 @@ hR
hR
kz
kz
+<<<<<<< HEAD
ad
+=======
+OY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Vb
hR
hR
diff --git a/_maps/shuttles/starfury_corvette.dmm b/_maps/shuttles/starfury_corvette.dmm
index b9e8ce992f6..2e9547bb085 100644
--- a/_maps/shuttles/starfury_corvette.dmm
+++ b/_maps/shuttles/starfury_corvette.dmm
@@ -56,6 +56,36 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/sbc_corvette)
+<<<<<<< HEAD
+=======
+"ai" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/corvette{
+ dir = 8;
+ y_offset = 0;
+ x_offset = -3
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_corvette)
+"aj" = (
+/obj/machinery/door/airlock/external{
+ id_tag = "SBC_corvette_bolt";
+ name = "Syndicate Corvette Airlock"
+ },
+/obj/docking_port/mobile/syndicate_corvette{
+ preferred_direction = 1;
+ port_direction = 4
+ },
+/obj/structure/fans/tiny,
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/sbc_corvette)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ak" = (
/obj/structure/chair/comfy/shuttle{
name = "tactical chair"
@@ -266,6 +296,16 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_corvette)
+<<<<<<< HEAD
+=======
+"aO" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "SBC_corvette_blast"
+ },
+/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/sbc_corvette)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aP" = (
/obj/machinery/door/airlock/hatch{
name = "Syndicate Corvette Cockpit"
@@ -347,6 +387,7 @@
"aZ" = (
/turf/open/floor/catwalk_floor/iron_dark,
/area/shuttle/sbc_corvette)
+<<<<<<< HEAD
"eV" = (
/obj/machinery/door/airlock/external{
id_tag = "SBC_corvette_bolt";
@@ -360,6 +401,8 @@
},
/turf/open/floor/plating,
/area/shuttle/sbc_corvette)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qH" = (
/obj/structure/table,
/obj/item/wrench,
@@ -369,6 +412,7 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_corvette)
+<<<<<<< HEAD
"rQ" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/syndicate/corvette{
dir = 8
@@ -378,6 +422,8 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_corvette)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uo" = (
/turf/open/floor/iron/dark/small,
/area/shuttle/sbc_corvette)
@@ -426,6 +472,7 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/sbc_corvette)
+<<<<<<< HEAD
"Zi" = (
/obj/machinery/door/poddoor/preopen{
id = "SBC_corvette_blast"
@@ -433,6 +480,8 @@
/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
/turf/open/floor/plating,
/area/shuttle/sbc_corvette)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
(1,1,1) = {"
aa
@@ -504,7 +553,11 @@ aT
aZ
aU
as
+<<<<<<< HEAD
eV
+=======
+aj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(9,1,1) = {"
aM
@@ -534,12 +587,17 @@ ay
aM
"}
(12,1,1) = {"
+<<<<<<< HEAD
Zi
+=======
+aO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qH
ac
aW
ae
aQ
+<<<<<<< HEAD
Zi
"}
(13,1,1) = {"
@@ -558,5 +616,25 @@ Zi
Zi
Zi
Zi
+=======
+aO
+"}
+(13,1,1) = {"
+aO
+aO
+ai
+ag
+ap
+aO
+aO
+"}
+(14,1,1) = {"
+aa
+aO
+aO
+aO
+aO
+aO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
"}
diff --git a/_maps/shuttles/whiteship_birdshot.dmm b/_maps/shuttles/whiteship_birdshot.dmm
index a8d1a879aca..be2ae8e5ade 100644
--- a/_maps/shuttles/whiteship_birdshot.dmm
+++ b/_maps/shuttles/whiteship_birdshot.dmm
@@ -63,6 +63,7 @@
},
/turf/open/floor/iron/small,
/area/shuttle/abandoned/crew)
+<<<<<<< HEAD
"cj" = (
/obj/structure/closet/secure_closet/freezer/fridge/open,
/obj/item/reagent_containers/condiment/enzyme,
@@ -90,6 +91,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/cafeteria,
/area/shuttle/abandoned/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cB" = (
/obj/structure/chair/stool/directional/west,
/obj/effect/decal/cleanable/dirt,
@@ -386,6 +389,36 @@
/obj/structure/cable,
/turf/open/floor/catwalk_floor,
/area/shuttle/abandoned/crew)
+<<<<<<< HEAD
+=======
+"nz" = (
+/obj/structure/closet/secure_closet/freezer/fridge/open,
+/obj/item/reagent_containers/condiment/enzyme,
+/obj/item/food/meat/slab/synthmeat{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/food/meat/slab/synthmeat{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/food/meat/slab/synthmeat{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/condiment/flour{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/condiment/flour{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/condiment/milk,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/cafeteria,
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nL" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
@@ -1950,7 +1983,11 @@ fU
Gg
GS
wY
+<<<<<<< HEAD
cj
+=======
+nz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JP
Kf
jv
diff --git a/_maps/shuttles/whiteship_cere.dmm b/_maps/shuttles/whiteship_cere.dmm
index 578f3dba14d..cba527e12d1 100644
--- a/_maps/shuttles/whiteship_cere.dmm
+++ b/_maps/shuttles/whiteship_cere.dmm
@@ -495,6 +495,19 @@
},
/turf/open/floor/wood,
/area/shuttle/abandoned/bridge)
+<<<<<<< HEAD
+=======
+"wM" = (
+/obj/structure/cable,
+/obj/structure/cable/layer1,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced/titaniumglass,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/shuttle/abandoned/cargo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wN" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/reagent_dispensers/fueltank,
@@ -665,6 +678,7 @@
/obj/effect/spawner/random/maintenance/six,
/turf/open/floor/pod/dark,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
"Gu" = (
/obj/structure/cable,
/obj/structure/cable/layer1,
@@ -675,6 +689,8 @@
/obj/item/stock_parts/power_store/cell/high,
/turf/open/floor/catwalk_floor/iron_dark,
/area/shuttle/abandoned/cargo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ha" = (
/obj/machinery/computer/mech_bay_power_console{
dir = 4
@@ -682,6 +698,19 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/dark,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
+=======
+"Hw" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
+ dir = 1;
+ x_offset = 0;
+ y_offset = 10
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/shuttle/abandoned/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"HI" = (
/obj/machinery/power/port_gen/pacman/pre_loaded,
/obj/structure/cable,
@@ -965,6 +994,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/pod/dark,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
"Xq" = (
/obj/machinery/light/small/directional/east,
/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
@@ -975,6 +1005,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/shuttle/abandoned/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"XT" = (
/obj/machinery/door/airlock/external/glass/ruin,
/obj/effect/decal/cleanable/dirt,
@@ -1145,7 +1177,11 @@ WF
gK
US
gK
+<<<<<<< HEAD
Gu
+=======
+wM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aG
oB
DC
@@ -1247,7 +1283,11 @@ kP
EQ
aQ
Fj
+<<<<<<< HEAD
Xq
+=======
+Hw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
su
"}
(12,1,1) = {"
diff --git a/_maps/shuttles/whiteship_donut.dmm b/_maps/shuttles/whiteship_donut.dmm
index 4ce4153077d..fe7ca4db4d0 100644
--- a/_maps/shuttles/whiteship_donut.dmm
+++ b/_maps/shuttles/whiteship_donut.dmm
@@ -34,6 +34,14 @@
/obj/structure/window/reinforced/spawner/directional/south,
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
+<<<<<<< HEAD
+=======
+"aX" = (
+/obj/machinery/power/shuttle_engine/heater,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"be" = (
/obj/machinery/power/shuttle_engine/propulsion/left,
/turf/open/floor/plating/airless,
@@ -202,11 +210,14 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
+<<<<<<< HEAD
"uj" = (
/obj/machinery/power/shuttle_engine/heater,
/obj/structure/window/reinforced/spawner/directional/north,
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vu" = (
/obj/structure/table,
/obj/effect/decal/cleanable/dirt,
diff --git a/_maps/shuttles/whiteship_kilo.dmm b/_maps/shuttles/whiteship_kilo.dmm
index 3f2400cd69c..87ba6632b25 100644
--- a/_maps/shuttles/whiteship_kilo.dmm
+++ b/_maps/shuttles/whiteship_kilo.dmm
@@ -135,6 +135,7 @@
"hN" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
+<<<<<<< HEAD
dir = 8
},
/obj/effect/turf_decal/stripes/line{
@@ -244,6 +245,97 @@
},
/turf/open/floor/pod/light,
/area/shuttle/abandoned/bridge)
+=======
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/greenglow,
+/obj/machinery/light/small/red/directional/west,
+/turf/open/floor/plating,
+/area/shuttle/abandoned/bar)
+"id" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/abandoned/crew)
+"ie" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/storage/belt/utility{
+ pixel_y = 9
+ },
+/obj/item/screwdriver,
+/obj/effect/turf_decal/trimline/brown/corner{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/brown/warning{
+ dir = 10
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/abandoned/engine)
+"ig" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/structure/cable,
+/obj/machinery/airalarm/directional/south,
+/obj/effect/mapping_helpers/airalarm/all_access,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/shuttle/abandoned/bar)
+"ik" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/airlock/external/ruin{
+ id_tag = "ntms_exterior";
+ name = "NTMS-037 Mining Airlock"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/mapping_helpers/airlock/cyclelink_helper_multi{
+ cycle_id = "exterior_whiteship"
+ },
+/obj/effect/mapping_helpers/airlock/locked,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/abandoned/bar)
+"iI" = (
+/obj/effect/spawner/structure/window/reinforced/shuttle,
+/obj/machinery/door/poddoor{
+ id = "whiteship_bridge";
+ name = "Cockpit Emergency Blast Door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned/bridge)
+"jr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/power/shuttle_engine/propulsion/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned/engine)
+"jM" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_y = 5
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/siding/thinplating_new{
+ dir = 6
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron/cafeteria{
+ dir = 1
+ },
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kq" = (
/obj/structure/rack,
/obj/effect/turf_decal/bot,
@@ -251,6 +343,32 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
+=======
+"ku" = (
+/obj/machinery/door/airlock/external/ruin{
+ name = "External Freight Airlock"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/docking_port/mobile{
+ callTime = 250;
+ can_move_docking_ports = 1;
+ dir = 2;
+ shuttle_id = "whiteship";
+ launch_status = 0;
+ movement_force = list("KNOCKDOWN"=0,"THROW"=0);
+ name = "Mining Shuttle";
+ port_direction = 8;
+ preferred_direction = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned/cargo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kG" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/bot,
@@ -280,6 +398,7 @@
dir = 1
},
/area/shuttle/abandoned/bar)
+<<<<<<< HEAD
"lS" = (
/obj/machinery/door/airlock/external/ruin{
name = "External Freight Airlock"
@@ -303,6 +422,8 @@
},
/turf/open/floor/plating,
/area/shuttle/abandoned/cargo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mt" = (
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -340,6 +461,7 @@
/obj/structure/cable,
/turf/open/floor/mineral/plastitanium,
/area/shuttle/abandoned/bridge)
+<<<<<<< HEAD
"mI" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -349,6 +471,17 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/bar)
+=======
+"mX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/power/shuttle_engine/propulsion{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned/engine)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nt" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -368,6 +501,7 @@
/obj/structure/cable,
/turf/open/floor/mineral/titanium/tiled/white,
/area/shuttle/abandoned/bridge)
+<<<<<<< HEAD
"pD" = (
/obj/machinery/power/shuttle_engine/heater{
dir = 8
@@ -378,6 +512,17 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/engine)
+=======
+"oQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/power/shuttle_engine/propulsion/right{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pI" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
@@ -430,6 +575,7 @@
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned/bar)
+<<<<<<< HEAD
"rX" = (
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
@@ -438,6 +584,9 @@
/turf/open/floor/iron,
/area/shuttle/abandoned/bar)
"sh" = (
+=======
+"rC" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/stripes/line{
dir = 8
},
@@ -446,6 +595,16 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/engine)
+<<<<<<< HEAD
+=======
+"rX" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/structure/cable,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sz" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/chair{
@@ -498,6 +657,7 @@
/obj/item/gun/energy/laser/retro,
/turf/open/floor/mineral/plastitanium,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
"tR" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -507,6 +667,8 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/engine)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uf" = (
/obj/effect/turf_decal/trimline/white/corner{
dir = 8
@@ -564,6 +726,7 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/shuttle/abandoned/engine)
+<<<<<<< HEAD
"zd" = (
/obj/machinery/cell_charger,
/obj/structure/table,
@@ -581,6 +744,12 @@
/obj/effect/turf_decal/trimline/white/line{
dir = 8
},
+=======
+"zl" = (
+/obj/effect/turf_decal/trimline/white/line{
+ dir = 8
+ },
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/trimline/white/filled/warning{
dir = 4
},
@@ -609,6 +778,7 @@
/obj/effect/mapping_helpers/airalarm/all_access,
/turf/open/floor/pod/light,
/area/shuttle/abandoned/bridge)
+<<<<<<< HEAD
"zJ" = (
/obj/effect/decal/cleanable/dirt,
/obj/item/cigbutt,
@@ -678,6 +848,81 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/engine)
+=======
+"zu" = (
+/obj/machinery/cell_charger,
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/stock_parts/power_store/cell/emproof/empty{
+ pixel_y = 7;
+ pixel_x = 5
+ },
+/obj/effect/turf_decal/tile/brown,
+/turf/open/floor/iron/white/corner{
+ dir = 8
+ },
+/area/shuttle/abandoned/cargo)
+"zJ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/cigbutt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 8
+ },
+/obj/structure/cable,
+/turf/open/floor/iron,
+/area/shuttle/abandoned/bar)
+"Am" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/crate/large,
+/obj/machinery/space_heater,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/abandoned/cargo)
+"Bk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/turf/open/floor/plating,
+/area/shuttle/abandoned/cargo)
+"BL" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/blood,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/mapping_helpers/airalarm/all_access,
+/turf/open/floor/plating,
+/area/shuttle/abandoned/cargo)
+"BS" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/abandoned/bar)
+"CG" = (
+/turf/closed/wall/mineral/plastitanium/nodiagonal,
+/area/shuttle/abandoned/engine)
+"CQ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/greenglow,
+/turf/open/floor/plating,
+/area/shuttle/abandoned/cargo)
+"Fr" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 8
+ },
+/obj/structure/cable,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/iron,
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"FW" = (
/obj/effect/spawner/structure/window/reinforced/shuttle,
/obj/machinery/door/poddoor{
@@ -876,6 +1121,7 @@
/obj/effect/decal/cleanable/blood/splatter/over_window,
/turf/open/floor/plating,
/area/shuttle/abandoned/bar)
+<<<<<<< HEAD
"Md" = (
/obj/machinery/power/shuttle_engine/heater{
dir = 8
@@ -886,6 +1132,8 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ml" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/suit_storage_unit/standard_unit{
@@ -909,6 +1157,19 @@
/obj/structure/cable,
/turf/open/floor/mineral/titanium/tiled/yellow,
/area/shuttle/abandoned/engine)
+<<<<<<< HEAD
+=======
+"MI" = (
+/obj/machinery/power/shuttle_engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned/engine)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Nh" = (
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/abandoned/engine)
@@ -940,6 +1201,19 @@
/obj/item/storage/box/donkpockets,
/turf/open/floor/bamboo,
/area/shuttle/abandoned/bar)
+<<<<<<< HEAD
+=======
+"OZ" = (
+/obj/machinery/power/shuttle_engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Pe" = (
/obj/machinery/button/door/directional/north{
id = "whiteship_port";
@@ -953,6 +1227,18 @@
/obj/structure/extinguisher_cabinet/directional/west,
/turf/open/floor/plating,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
+=======
+"Pz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/power/shuttle_engine/propulsion/left{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned/bar)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"PR" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
dir = 4
@@ -1000,6 +1286,7 @@
},
/turf/open/floor/plating,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
"Rw" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -1009,6 +1296,8 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned/bar)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"RF" = (
/obj/effect/turf_decal/delivery,
/obj/machinery/door/airlock/shuttle{
@@ -1053,6 +1342,38 @@
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
+=======
+"Ta" = (
+/obj/effect/turf_decal/trimline/white/line,
+/obj/effect/turf_decal/trimline/white/filled/warning{
+ dir = 1
+ },
+/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
+ dir = 4;
+ view_range = 14;
+ y_offset = 5;
+ x_offset = 0
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/button/door{
+ id = "whiteship_windows";
+ name = "NTMS-037 Windows Blast Door Control";
+ pixel_x = -24;
+ pixel_y = 6
+ },
+/obj/machinery/button/door{
+ id = "whiteship_bridge";
+ name = "NTMS-037 Bridge Blast Door Control";
+ pixel_x = -24;
+ pixel_y = -6
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/abandoned/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Tf" = (
/obj/structure/table,
/obj/effect/turf_decal/trimline/brown/filled/shrink_ccw{
@@ -1207,9 +1528,15 @@
(1,1,1) = {"
Nh
+<<<<<<< HEAD
tR
Fz
sh
+=======
+jr
+mX
+rC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Nh
Gu
Gu
@@ -1222,6 +1549,7 @@ Gu
"}
(2,1,1) = {"
Nh
+<<<<<<< HEAD
pD
pD
pD
@@ -1229,6 +1557,15 @@ CG
tR
Fz
sh
+=======
+MI
+MI
+MI
+CG
+jr
+mX
+rC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gL
Gu
Gu
@@ -1241,9 +1578,15 @@ Ss
bl
eT
CG
+<<<<<<< HEAD
pD
pD
pD
+=======
+MI
+MI
+MI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CG
Gu
Gu
@@ -1320,8 +1663,13 @@ NV
NV
nN
NV
+<<<<<<< HEAD
Rw
mI
+=======
+Pz
+oQ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
BS
Gu
"}
@@ -1332,20 +1680,36 @@ bF
eD
Nt
iI
+<<<<<<< HEAD
kk
mH
NV
Md
Md
+=======
+Ta
+mH
+NV
+OZ
+OZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Of
Gu
"}
(10,1,1) = {"
+<<<<<<< HEAD
lS
Bk
vM
Wj
zd
+=======
+ku
+Bk
+vM
+Wj
+zu
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iI
qu
YV
diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm
index 985a7133a94..413d5d19f5a 100644
--- a/_maps/shuttles/whiteship_pubby.dmm
+++ b/_maps/shuttles/whiteship_pubby.dmm
@@ -80,6 +80,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark,
/area/shuttle/abandoned)
+<<<<<<< HEAD
+=======
+"cE" = (
+/obj/effect/turf_decal/bot_white,
+/obj/machinery/atmospherics/components/tank/air/layer4{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cS" = (
/obj/effect/turf_decal/trimline/purple/filled/line{
dir = 10
@@ -452,6 +463,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/carpet/purple,
/area/shuttle/abandoned)
+<<<<<<< HEAD
"rY" = (
/obj/effect/turf_decal/bot_white,
/obj/machinery/atmospherics/components/tank/air/layer4{
@@ -460,6 +472,8 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plating,
/area/shuttle/abandoned)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sl" = (
/obj/machinery/door/poddoor{
id = "whiteship_bridge"
@@ -1359,7 +1373,11 @@ CG
Il
pV
Bu
+<<<<<<< HEAD
rY
+=======
+cE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Sc
ot
cx
diff --git a/_maps/shuttles/whiteship_tram.dmm b/_maps/shuttles/whiteship_tram.dmm
index 82f32e910af..f542c1b02ff 100644
--- a/_maps/shuttles/whiteship_tram.dmm
+++ b/_maps/shuttles/whiteship_tram.dmm
@@ -496,6 +496,28 @@
},
/turf/open/floor/iron/smooth_large,
/area/shuttle/abandoned/engine)
+<<<<<<< HEAD
+=======
+"ca" = (
+/obj/structure/cable,
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/multitool{
+ pixel_x = 7;
+ pixel_y = 5
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/stripes/white/line{
+ dir = 9
+ },
+/obj/machinery/power/apc/auto_name/directional/west,
+/turf/open/floor/iron/smooth_large,
+/area/shuttle/abandoned/engine)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cg" = (
/obj/structure/sign/warning/fire,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
@@ -1143,6 +1165,21 @@
/obj/structure/lattice,
/turf/template_noop,
/area/shuttle/abandoned/cargo)
+<<<<<<< HEAD
+=======
+"Ft" = (
+/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
+ dir = 8;
+ x_offset = 0;
+ y_offset = 13
+ },
+/obj/effect/turf_decal/stripes/white/corner{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/iron/dark/textured_large,
+/area/shuttle/abandoned/bridge)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"FQ" = (
/obj/item/shard/titanium,
/obj/structure/grille/broken,
@@ -1236,6 +1273,7 @@
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
/turf/open/floor/iron/smooth_large,
/area/shuttle/abandoned/engine)
+<<<<<<< HEAD
"NZ" = (
/obj/machinery/computer/camera_advanced/shuttle_docker/whiteship{
dir = 8;
@@ -1248,6 +1286,8 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/abandoned/bridge)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"OL" = (
/obj/machinery/computer/shuttle/white_ship/bridge{
dir = 8
@@ -1257,6 +1297,7 @@
},
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/abandoned/bridge)
+<<<<<<< HEAD
"OV" = (
/obj/structure/cable,
/obj/structure/table,
@@ -1276,6 +1317,8 @@
/obj/machinery/power/apc/auto_name/directional/west,
/turf/open/floor/iron/smooth_large,
/area/shuttle/abandoned/engine)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"PI" = (
/obj/machinery/door/window/survival_pod/left/directional/east,
/obj/effect/turf_decal/delivery/red,
@@ -1569,7 +1612,11 @@ RK
dn
yd
OL
+<<<<<<< HEAD
NZ
+=======
+Ft
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dx
"}
(5,1,1) = {"
@@ -1605,7 +1652,11 @@ da
cl
Rs
ad
+<<<<<<< HEAD
OV
+=======
+ca
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
NU
bx
ad
diff --git a/_maps/templates/battlecruiser_starfury.dmm b/_maps/templates/battlecruiser_starfury.dmm
index d6c0d2fec79..e88cd3dc383 100644
--- a/_maps/templates/battlecruiser_starfury.dmm
+++ b/_maps/templates/battlecruiser_starfury.dmm
@@ -19,6 +19,17 @@
"ac" = (
/turf/closed/wall/mineral/plastitanium,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"ad" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "syndie_battlecruier_bridge_blast"
+ },
+/obj/structure/cable,
+/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
+/turf/open/floor/plating,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ae" = (
/turf/closed/wall/mineral/plastitanium/nodiagonal,
/area/shuttle/sbc_starfury)
@@ -398,6 +409,17 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"bx" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "syndie_battlecruier_bridge_blast"
+ },
+/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"by" = (
/obj/structure/sign/warning/secure_area,
/turf/closed/wall/mineral/plastitanium/nodiagonal,
@@ -627,6 +649,7 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"cy" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -635,6 +658,8 @@
/obj/effect/turf_decal/stripes/red/line,
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cz" = (
/obj/machinery/newscaster/directional/south,
/obj/structure/table/reinforced/plastitaniumglass,
@@ -975,6 +1000,27 @@
/obj/effect/turf_decal/stripes/red/line,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"dO" = (
+/obj/structure/sign/warning/secure_area/directional/east{
+ desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
+ icon_state = "space";
+ name = "KEEP CLEAR: SHUTTLE BAY"
+ },
+/obj/effect/turf_decal/stripes/red/line,
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_starfury)
+"dS" = (
+/obj/structure/sign/warning/secure_area/directional/west{
+ desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
+ icon_state = "space";
+ name = "KEEP CLEAR: SHUTTLE BAY"
+ },
+/obj/effect/turf_decal/stripes/red/line,
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
@@ -1554,6 +1600,18 @@
/obj/machinery/door/airlock/multi_tile/public/glass,
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"fE" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fF" = (
/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
/obj/machinery/door/firedoor/heavy,
@@ -1576,6 +1634,17 @@
/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
/turf/open/floor/iron/showroomfloor,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"fR" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/effect/turf_decal/siding/thinplating_new/dark,
+/obj/effect/turf_decal/stripes/red/line,
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fS" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -1599,6 +1668,20 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"gp" = (
+/obj/structure/sign/warning/secure_area/directional/east{
+ desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
+ icon_state = "space";
+ name = "KEEP CLEAR: SHUTTLE BAY"
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gx" = (
/obj/effect/mob_spawn/ghost_role/human/syndicate/battlecruiser{
dir = 8
@@ -1628,6 +1711,23 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"gC" = (
+/obj/structure/sign/warning/secure_area/directional/west{
+ desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
+ icon_state = "space";
+ name = "KEEP CLEAR: SHUTTLE BAY"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gD" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable,
@@ -1667,6 +1767,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"gN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
@@ -1680,6 +1781,8 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gO" = (
/obj/effect/turf_decal/tile/red/half/contrasted{
dir = 8
@@ -2129,6 +2232,39 @@
/obj/effect/mapping_helpers/airlock/cutaiwire,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"hZ" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/gun/ballistic/automatic/m90{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/ballistic/automatic/m90,
+/obj/item/gun/ballistic/automatic/m90{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+"ia" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/gun/ballistic/shotgun/bulldog{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/gun/ballistic/shotgun/bulldog,
+/obj/item/gun/ballistic/shotgun/bulldog{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ib" = (
/obj/structure/closet/secure_closet{
anchored = 1;
@@ -2275,6 +2411,23 @@
/obj/effect/turf_decal/tile/red/anticorner/contrasted,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"io" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/gun/ballistic/revolver/syndicate{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/gun/ballistic/revolver/syndicate{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iq" = (
/obj/machinery/microwave,
/obj/structure/table/wood,
@@ -2341,6 +2494,18 @@
/obj/effect/mapping_helpers/airalarm/syndicate_access,
/turf/open/floor/iron,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"ix" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/storage/belt/military,
+/obj/item/ammo_box/magazine/m7mm,
+/obj/item/gun/ballistic/automatic/l6_saw,
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iy" = (
/obj/item/storage/box/donkpockets{
pixel_x = 2
@@ -2394,6 +2559,27 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/carpet/red,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"iG" = (
+/obj/structure/table/wood,
+/obj/item/folder/syndicate/red{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/item/cigarette/cigar{
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/item/storage/box/matches,
+/obj/item/pen{
+ pixel_x = -5
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/effect/mapping_helpers/airalarm/syndicate_access,
+/turf/open/floor/carpet/red,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iI" = (
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/tile/red/half/contrasted{
@@ -2421,6 +2607,28 @@
},
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"iN" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/mod/control/pre_equipped/elite{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/clothing/mask/gas/syndicate{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/item/mod/control/pre_equipped/elite{
+ pixel_x = -4
+ },
+/obj/item/clothing/mask/gas/syndicate,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iO" = (
/obj/structure/table,
/obj/item/shield/energy{
@@ -3016,6 +3224,21 @@
/obj/effect/mapping_helpers/airlock/cutaiwire,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"kN" = (
+/obj/structure/sign/warning/secure_area/directional/north{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ name = "EXTERNAL AIRLOCK"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light/small/red/directional/north,
+/turf/open/floor/plating,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kO" = (
/obj/structure/table/reinforced,
/obj/item/clothing/gloves/color/yellow{
@@ -3075,6 +3298,7 @@
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"lg" = (
/obj/structure/table/reinforced,
/obj/machinery/cell_charger,
@@ -3083,6 +3307,19 @@
dir = 8
},
/turf/open/floor/iron,
+=======
+"lf" = (
+/obj/structure/sign/warning/secure_area/directional/north{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ name = "EXTERNAL AIRLOCK"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light/small/red/directional/north,
+/turf/open/floor/plating,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/shuttle/sbc_starfury)
"lh" = (
/obj/effect/turf_decal/tile/yellow{
@@ -3494,6 +3731,7 @@
/obj/structure/extinguisher_cabinet/directional/south,
/turf/open/floor/engine,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"nu" = (
/obj/machinery/door/poddoor/preopen{
id = "syndie_battlecruier_bridge_blast"
@@ -3502,6 +3740,8 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nz" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green,
@@ -3698,6 +3938,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"qT" = (
/obj/structure/sign/warning/secure_area/directional/east{
desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
@@ -3707,6 +3948,8 @@
/obj/effect/turf_decal/stripes/red/line,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rf" = (
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
dir = 1
@@ -3765,6 +4008,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/pod/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"rF" = (
/obj/structure/rack{
dir = 8
@@ -3776,6 +4020,8 @@
/obj/effect/mapping_helpers/airalarm/syndicate_access,
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sh" = (
/obj/structure/cable,
/obj/effect/turf_decal/tile/dark_green/opposingcorners{
@@ -4044,6 +4290,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"xo" = (
/obj/structure/rack{
dir = 8
@@ -4068,6 +4315,8 @@
},
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xp" = (
/obj/structure/dresser,
/turf/open/floor/carpet,
@@ -4337,6 +4586,7 @@
/obj/machinery/light/directional/south,
/turf/open/floor/mineral/plastitanium/red,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"BG" = (
/obj/structure/sign/warning/secure_area/directional/west{
desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
@@ -4346,6 +4596,8 @@
/obj/effect/turf_decal/stripes/red/line,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BI" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
@@ -4357,6 +4609,7 @@
/obj/effect/turf_decal/tile/dark_red,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"BK" = (
/obj/structure/sign/warning/secure_area/directional/west{
desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
@@ -4371,6 +4624,8 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BN" = (
/obj/effect/turf_decal/siding/thinplating_new/dark,
/obj/structure/window/reinforced/survival_pod/spawner/directional/south,
@@ -4451,6 +4706,22 @@
/obj/structure/cable,
/turf/open/floor/iron/dark/textured,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"Dy" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/structure/cable,
+/obj/effect/turf_decal/siding/thinplating_new/dark{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/red/line{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Dz" = (
/obj/item/crowbar/red,
/obj/structure/cable,
@@ -4458,6 +4729,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/turf/open/floor/iron/dark/textured_large,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"DM" = (
/obj/structure/rack{
dir = 8
@@ -4473,6 +4745,8 @@
},
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"DS" = (
/obj/structure/rack,
/obj/item/stack/sheet/mineral/uranium{
@@ -4489,6 +4763,7 @@
/obj/structure/cable,
/turf/open/floor/pod/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Es" = (
/obj/structure/table/wood,
/obj/item/folder/syndicate/red{
@@ -4507,6 +4782,8 @@
/obj/effect/mapping_helpers/airalarm/syndicate_access,
/turf/open/floor/carpet/red,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ex" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -4726,6 +5003,7 @@
temperature = 80
},
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Hr" = (
/obj/structure/rack{
dir = 8
@@ -4735,6 +5013,8 @@
/obj/item/gun/ballistic/automatic/l6_saw,
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"HF" = (
/obj/machinery/suit_storage_unit/syndicate,
/obj/machinery/light/small/directional/west,
@@ -4816,6 +5096,20 @@
/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"Jl" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/machinery/airalarm/directional/east,
+/obj/item/storage/belt/military,
+/obj/item/ammo_box/magazine/sniper_rounds,
+/obj/item/gun/ballistic/rifle/sniper_rifle/syndicate,
+/obj/effect/mapping_helpers/airalarm/syndicate_access,
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jm" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
@@ -4845,6 +5139,33 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"JL" = (
+/obj/structure/rack{
+ dir = 8
+ },
+/obj/item/card/emag{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/card/emag,
+/obj/item/card/emag{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/thermal{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/clothing/glasses/thermal,
+/obj/item/clothing/glasses/thermal{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"JP" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -4866,6 +5187,7 @@
},
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"KH" = (
/obj/machinery/door/poddoor/preopen{
id = "syndie_battlecruier_bridge_blast"
@@ -4874,6 +5196,8 @@
/obj/effect/spawner/structure/window/reinforced/plasma/plastitanium,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"KK" = (
/obj/structure/filingcabinet,
/turf/open/floor/carpet/red,
@@ -4902,6 +5226,7 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"KZ" = (
/obj/structure/rack{
dir = 8
@@ -4921,6 +5246,8 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Lb" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -4932,6 +5259,7 @@
/obj/structure/marker_beacon/burgundy,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Ly" = (
/obj/structure/sign/warning/secure_area/directional/north{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -4944,6 +5272,8 @@
/obj/machinery/light/small/red/directional/north,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"LH" = (
/obj/structure/table,
/obj/item/storage/medkit/regular{
@@ -4966,6 +5296,7 @@
},
/turf/open/floor/pod/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Mq" = (
/obj/structure/sign/warning/secure_area/directional/north{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -4978,6 +5309,8 @@
/obj/machinery/light/small/red/directional/north,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Mt" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
@@ -5018,6 +5351,7 @@
/obj/machinery/light/small/red/directional/north,
/turf/open/floor/plating,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"MQ" = (
/obj/structure/closet/crate,
/obj/item/stock_parts/power_store/cell/high,
@@ -5029,6 +5363,8 @@
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"MR" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -5134,6 +5470,7 @@
},
/turf/open/floor/iron,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"OZ" = (
/obj/item/book/manual/wiki/barman_recipes,
/obj/item/reagent_containers/cup/glass/shaker{
@@ -5147,6 +5484,8 @@
/obj/machinery/computer/security/telescreen/entertainment/directional/west,
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Pa" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -5314,6 +5653,22 @@
/obj/machinery/firealarm/directional/south,
/turf/open/floor/engine,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"RX" = (
+/obj/item/book/manual/wiki/barman_recipes,
+/obj/item/reagent_containers/cup/glass/shaker{
+ pixel_x = 10
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/effect/turf_decal/siding/dark{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/machinery/computer/security/telescreen/entertainment/directional/west,
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Sb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
@@ -5384,6 +5739,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/mineral/plastitanium,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Tl" = (
/obj/structure/sign/warning/secure_area/directional/east{
desc = "A warning sign which reads 'KEEP CLEAR: SHUTTLE BAY'";
@@ -5395,6 +5751,8 @@
},
/turf/open/floor/iron/dark,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Tn" = (
/obj/effect/turf_decal/stripes/line,
/obj/machinery/portable_atmospherics/canister/plasma,
@@ -5585,6 +5943,20 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/iron/dark/side,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
+=======
+"WI" = (
+/obj/structure/closet/crate,
+/obj/item/stock_parts/power_store/cell/high,
+/obj/item/stock_parts/power_store/cell/high{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/inducer/syndicate,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/shuttle/sbc_starfury)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"WV" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
/turf/open/floor/iron,
@@ -5704,6 +6076,7 @@
},
/turf/open/floor/pod/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Ys" = (
/obj/structure/rack{
dir = 8
@@ -5718,6 +6091,8 @@
},
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Yt" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/bot_red,
@@ -5738,6 +6113,7 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/pod/dark,
/area/shuttle/sbc_starfury)
+<<<<<<< HEAD
"Zh" = (
/obj/structure/rack{
dir = 8
@@ -5753,6 +6129,8 @@
},
/turf/open/floor/pod/light,
/area/shuttle/sbc_starfury)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Zl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
dir = 1
@@ -6049,7 +6427,11 @@ ce
ae
hd
hD
+<<<<<<< HEAD
OZ
+=======
+RX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iq
iy
ae
@@ -6078,7 +6460,11 @@ aa
aa
aa
ac
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
ah
cH
@@ -6264,7 +6650,11 @@ aa
aa
aa
ae
+<<<<<<< HEAD
Mq
+=======
+kN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
MP
aH
@@ -6350,7 +6740,11 @@ aa
aa
aa
ae
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
xr
aH
@@ -6430,7 +6824,11 @@ ri
ay
ay
XI
+<<<<<<< HEAD
qT
+=======
+dO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dV
eR
cO
@@ -6469,7 +6867,11 @@ Jf
ae
kz
kO
+<<<<<<< HEAD
lg
+=======
+fE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
ae
Fc
@@ -6490,7 +6892,11 @@ Ou
Ou
Ou
vT
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dq
vk
ay
@@ -6558,7 +6964,11 @@ aa
aa
Ou
vT
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ne
IM
ae
@@ -6621,10 +7031,17 @@ aa
aa
aa
aa
+<<<<<<< HEAD
KH
KH
KH
KH
+=======
+ad
+ad
+ad
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
by
Sb
@@ -6688,8 +7105,13 @@ aa
(14,1,1) = {"
aa
aa
+<<<<<<< HEAD
KH
KH
+=======
+ad
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aU
bj
eJ
@@ -6703,7 +7125,11 @@ ay
ag
dY
UB
+<<<<<<< HEAD
cy
+=======
+fR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ec
eB
aH
@@ -6724,7 +7150,11 @@ hB
ST
ec
dV
+<<<<<<< HEAD
Tl
+=======
+gp
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
oA
ay
hm
@@ -6756,7 +7186,11 @@ aa
(15,1,1) = {"
aa
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ct
aV
aJ
@@ -6824,7 +7258,11 @@ ac
(16,1,1) = {"
aa
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
al
Dd
xi
@@ -6891,8 +7329,13 @@ mO
"}
(17,1,1) = {"
aa
+<<<<<<< HEAD
KH
KH
+=======
+ad
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
UU
az
aK
@@ -6959,7 +7402,11 @@ ir
"}
(18,1,1) = {"
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pm
an
aA
@@ -7003,7 +7450,11 @@ hq
hP
ae
iu
+<<<<<<< HEAD
Es
+=======
+iG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
nz
ae
Qf
@@ -7027,7 +7478,11 @@ ir
"}
(19,1,1) = {"
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
wo
ao
aB
@@ -7095,7 +7550,11 @@ ae
"}
(20,1,1) = {"
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bo
ap
aC
@@ -7163,8 +7622,13 @@ mO
"}
(21,1,1) = {"
aa
+<<<<<<< HEAD
KH
KH
+=======
+ad
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aq
aD
aO
@@ -7232,7 +7696,11 @@ ir
(22,1,1) = {"
aa
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ar
vr
xO
@@ -7269,7 +7737,11 @@ ST
ae
ae
gB
+<<<<<<< HEAD
gN
+=======
+Dy
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gY
Fl
hS
@@ -7300,7 +7772,11 @@ ir
(23,1,1) = {"
aa
aa
+<<<<<<< HEAD
KH
+=======
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bC
aE
aP
@@ -7368,8 +7844,13 @@ ac
(24,1,1) = {"
aa
aa
+<<<<<<< HEAD
KH
KH
+=======
+ad
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
be
bt
FC
@@ -7404,7 +7885,11 @@ hB
ST
ec
fF
+<<<<<<< HEAD
BK
+=======
+gC
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hs
gO
hv
@@ -7437,10 +7922,17 @@ aa
aa
aa
aa
+<<<<<<< HEAD
KH
KH
KH
KH
+=======
+ad
+ad
+ad
+ad
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
by
po
@@ -7510,7 +8002,11 @@ aa
aa
aa
vT
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ck
Zm
ae
@@ -7578,7 +8074,11 @@ Ou
Ou
Ou
vT
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bV
Wv
ay
@@ -7654,7 +8154,11 @@ xD
ay
ay
PF
+<<<<<<< HEAD
BG
+=======
+dS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AJ
dd
ik
@@ -7710,7 +8214,11 @@ aa
aa
aa
ae
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
xr
aH
@@ -7748,14 +8256,23 @@ ae
ae
ae
Yi
+<<<<<<< HEAD
DM
DM
+=======
+hZ
+hZ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ec
mQ
ae
nR
Xr
+<<<<<<< HEAD
MQ
+=======
+WI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
ko
ae
@@ -7819,7 +8336,11 @@ sB
ec
ec
ec
+<<<<<<< HEAD
xo
+=======
+JL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
XN
qf
@@ -7884,10 +8405,17 @@ gF
gR
Ay
sB
+<<<<<<< HEAD
Zh
Ys
ec
KZ
+=======
+ia
+io
+ec
+iN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
nR
jB
@@ -7896,7 +8424,11 @@ aa
aa
aa
ae
+<<<<<<< HEAD
Ly
+=======
+lf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
fB
aH
@@ -7923,7 +8455,11 @@ ae
ae
Jm
da
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
aa
aa
aa
@@ -7982,7 +8518,11 @@ aa
aa
aa
ac
+<<<<<<< HEAD
nu
+=======
+bx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ae
BN
vk
@@ -8021,8 +8561,13 @@ UH
ae
hC
ib
+<<<<<<< HEAD
rF
Hr
+=======
+Jl
+ix
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fj
ae
ae
diff --git a/_maps/templates/hilbertshotellore.dmm b/_maps/templates/hilbertshotellore.dmm
index 716fa330de5..0b71a99174b 100644
--- a/_maps/templates/hilbertshotellore.dmm
+++ b/_maps/templates/hilbertshotellore.dmm
@@ -5,11 +5,14 @@
"ab" = (
/turf/closed/indestructible/hotelwall,
/area/misc/hilbertshotel)
+<<<<<<< HEAD
"ac" = (
/obj/structure/table/wood/fancy,
/obj/structure/mirror/broken/directional/north,
/turf/open/indestructible/hotelwood,
/area/misc/hilbertshotel)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ad" = (
/turf/open/indestructible/hotelwood,
/area/misc/hilbertshotel)
@@ -147,11 +150,14 @@
/obj/structure/sink/directional/east,
/turf/open/indestructible/hoteltile,
/area/misc/hilbertshotel)
+<<<<<<< HEAD
"aJ" = (
/obj/structure/window/reinforced/tinted/spawner/directional/west,
/obj/structure/window/reinforced/tinted/spawner/directional/north,
/turf/open/indestructible/hoteltile,
/area/misc/hilbertshotel)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aK" = (
/obj/machinery/shower/directional/west,
/turf/open/indestructible/hoteltile,
@@ -165,6 +171,7 @@
/obj/effect/decal/cleanable/dirt,
/turf/open/indestructible/hotelwood,
/area/misc/hilbertshotel)
+<<<<<<< HEAD
"aN" = (
/obj/structure/toilet{
dir = 8
@@ -177,6 +184,8 @@
/obj/structure/window/reinforced/tinted/spawner/directional/west,
/turf/open/indestructible/hoteltile,
/area/misc/hilbertshotel)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aP" = (
/obj/item/bikehorn/rubberducky,
/obj/machinery/light/small/directional/east,
@@ -191,11 +200,14 @@
/obj/machinery/smartfridge/food,
/turf/open/indestructible/hotelwood,
/area/misc/hilbertshotel)
+<<<<<<< HEAD
"aS" = (
/obj/structure/window/reinforced/tinted/spawner/directional/west,
/obj/structure/window/reinforced/tinted/spawner/directional/south,
/turf/open/indestructible/hoteltile,
/area/misc/hilbertshotel)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aT" = (
/obj/structure/table/reinforced,
/obj/structure/sink/kitchen/directional/north,
@@ -293,11 +305,44 @@
/obj/item/paper/crumpled/ruins/hotel_note,
/turf/open/indestructible/hotelwood,
/area/misc/hilbertshotel)
+<<<<<<< HEAD
+=======
+"ej" = (
+/obj/structure/window/reinforced/tinted/spawner/directional/west,
+/turf/open/indestructible/hoteltile,
+/area/misc/hilbertshotel)
+"tf" = (
+/obj/structure/window/reinforced/tinted/spawner/directional/west,
+/obj/structure/window/reinforced/tinted/spawner/directional/south,
+/turf/open/indestructible/hoteltile,
+/area/misc/hilbertshotel)
+"Gk" = (
+/obj/structure/table/wood/fancy,
+/obj/structure/mirror/broken/directional/north,
+/turf/open/indestructible/hotelwood,
+/area/misc/hilbertshotel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Mn" = (
/obj/structure/table/wood/fancy,
/obj/machinery/light/small/directional/north,
/turf/open/indestructible/hotelwood,
/area/misc/hilbertshotel)
+<<<<<<< HEAD
+=======
+"XX" = (
+/obj/structure/window/reinforced/tinted/spawner/directional/west,
+/obj/structure/window/reinforced/tinted/spawner/directional/north,
+/turf/open/indestructible/hoteltile,
+/area/misc/hilbertshotel)
+"Yw" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted/spawner/directional/north,
+/obj/structure/window/reinforced/tinted/spawner/directional/west,
+/turf/open/indestructible/hoteltile,
+/area/misc/hilbertshotel)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
(1,1,1) = {"
aa
@@ -472,7 +517,7 @@ aa
(11,1,1) = {"
aa
ab
-ac
+Gk
ad
ad
aL
@@ -480,7 +525,7 @@ av
ap
aD
aC
-aN
+Yw
bi
aV
ab
@@ -496,9 +541,9 @@ ad
aw
ab
aE
-aJ
-aO
-aS
+XX
+ej
+tf
aE
ab
aa
diff --git a/_maps/templates/holodeck_beach.dmm b/_maps/templates/holodeck_beach.dmm
index d485a495db3..304e18fbf3b 100644
--- a/_maps/templates/holodeck_beach.dmm
+++ b/_maps/templates/holodeck_beach.dmm
@@ -22,6 +22,12 @@
"t" = (
/turf/open/floor/holofloor/carpet,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"B" = (
+/turf/open/floor/holofloor/beach/water,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"H" = (
/obj/effect/holodeck_effect/mobspawner/monkey,
/turf/open/floor/holofloor/beach,
@@ -30,9 +36,12 @@
/obj/item/toy/seashell,
/turf/open/floor/holofloor/beach,
/area/template_noop)
+<<<<<<< HEAD
"N" = (
/turf/open/floor/holofloor/beach/water,
/area/template_noop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Q" = (
/obj/effect/holodeck_effect/mobspawner/crab/jon,
/turf/open/floor/holofloor/beach,
@@ -68,7 +77,11 @@ R
R
R
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(2,1,1) = {"
R
@@ -80,7 +93,11 @@ S
R
Q
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(3,1,1) = {"
X
@@ -92,7 +109,11 @@ t
t
R
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(4,1,1) = {"
R
@@ -104,7 +125,11 @@ R
R
R
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(5,1,1) = {"
R
@@ -116,7 +141,11 @@ t
t
R
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(6,1,1) = {"
R
@@ -128,7 +157,11 @@ g
R
q
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(7,1,1) = {"
R
@@ -140,7 +173,11 @@ R
R
f
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(8,1,1) = {"
W
@@ -152,7 +189,11 @@ R
M
R
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(9,1,1) = {"
R
@@ -164,5 +205,9 @@ R
R
R
a
+<<<<<<< HEAD
N
+=======
+B
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
diff --git a/_maps/templates/holodeck_chapelcourt.dmm b/_maps/templates/holodeck_chapelcourt.dmm
index b3141fd42f5..a54c880e8a4 100644
--- a/_maps/templates/holodeck_chapelcourt.dmm
+++ b/_maps/templates/holodeck_chapelcourt.dmm
@@ -1,10 +1,58 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+<<<<<<< HEAD
+=======
+"aa" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/closet/secure_closet/courtroom,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"ab" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/obj/item/food/grown/harebell,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ac" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/holofloor/chapel/bottom_left,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"ad" = (
+/obj/structure/table/wood/fancy,
+/obj/item/clothing/suit/chaplainsuit/nun,
+/obj/item/clothing/head/chaplain/nun_hood,
+/obj/item/clothing/suit/chaplainsuit/holidaypriest,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ae" = (
/obj/structure/table/wood,
/obj/item/folder/blue,
@@ -20,6 +68,24 @@
"ag" = (
/turf/open/floor/holofloor/chapel/top_left,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"ah" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/food/grown/poppy,
+/obj/item/food/grown/poppy,
+/obj/item/food/grown/poppy,
+/obj/item/food/grown/poppy,
+/obj/item/food/grown/poppy,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ai" = (
/turf/open/floor/holofloor/chapel/bottom_right,
/area/template_noop)
@@ -37,11 +103,94 @@
},
/turf/open/floor/holofloor/chapel/top_right,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"al" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/folder/blue,
+/obj/item/pen/red,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"am" = (
+/obj/item/clothing/head/helmet/chaplain/witchunter_hat,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"an" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/tile/neutral/half/contrasted,
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"ao" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/storage/fancy/candle_box,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"ap" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"aq" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/folder/red,
+/obj/item/pen/red,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"ar" = (
+/obj/item/gavelblock,
+/obj/item/gavelhammer,
+/obj/structure/table/wood,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"as" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"at" = (
/obj/structure/table/wood,
/obj/item/food/grown/harebell,
@@ -54,6 +203,24 @@
},
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"au" = (
+/obj/structure/table/wood/fancy,
+/obj/item/book/bible,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"av" = (
/obj/structure/table/wood,
/obj/item/folder/red,
@@ -63,6 +230,44 @@
},
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aw" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"ax" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"ay" = (
+/obj/item/toy/figure/chaplain,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"az" = (
/obj/structure/closet/secure_closet/courtroom,
/obj/effect/turf_decal/tile/neutral/opposingcorners{
@@ -101,6 +306,25 @@
},
/turf/open/floor/holofloor/chapel/bottom_right,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aF" = (
+/obj/item/clothing/suit/costume/judgerobe,
+/obj/item/clothing/head/costume/powdered_wig,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aG" = (
/obj/structure/table/wood,
/obj/item/food/grown/poppy,
@@ -113,6 +337,33 @@
},
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aH" = (
+/obj/structure/table/wood/fancy,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"aI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aJ" = (
/obj/effect/turf_decal/tile/neutral/half/contrasted{
dir = 8
@@ -122,12 +373,51 @@
"aK" = (
/turf/open/floor/holofloor/chapel/top_right,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aL" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aM" = (
/obj/effect/turf_decal/tile/neutral/opposingcorners{
dir = 1
},
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aN" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"aO" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aP" = (
/obj/effect/turf_decal/tile/neutral/fourcorners,
/turf/open/floor/holofloor/dark,
@@ -140,12 +430,42 @@
/obj/effect/turf_decal/tile/neutral/anticorner/contrasted,
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aS" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aT" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/holofloor/chapel/top_left,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aU" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/obj/item/hand_labeler,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aV" = (
/obj/structure/chair{
dir = 1
@@ -155,6 +475,34 @@
},
/turf/open/floor/holofloor/dark,
/area/template_noop)
+<<<<<<< HEAD
+=======
+"aW" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+"aX" = (
+/obj/item/clothing/suit/chaplainsuit/bishoprobe,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/table/wood/fancy,
+/turf/open/floor/holofloor/dark,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aY" = (
/obj/item/gavelblock,
/obj/item/gavelhammer,
diff --git a/_maps/templates/holodeck_lounge.dmm b/_maps/templates/holodeck_lounge.dmm
index 508c9a0de85..1c155269081 100644
--- a/_maps/templates/holodeck_lounge.dmm
+++ b/_maps/templates/holodeck_lounge.dmm
@@ -31,6 +31,7 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
"e" = (
/obj/structure/table/wood,
/obj/item/cigarette/pipe,
@@ -38,6 +39,9 @@
/turf/open/floor/holofloor/carpet,
/area/template_noop)
"g" = (
+=======
+"f" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green,
/turf/open/floor/holofloor{
@@ -45,6 +49,15 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
+=======
+"h" = (
+/obj/structure/table/wood,
+/obj/item/cigarette/pipe,
+/obj/effect/holodeck_effect/random_book,
+/turf/open/floor/holofloor/carpet,
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"i" = (
/obj/structure/table/wood/shuttle_bar,
/obj/item/reagent_containers/cup/glass/shaker,
@@ -53,6 +66,16 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
+=======
+"j" = (
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "wood"
+ },
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"k" = (
/obj/structure/table/wood/poker,
/obj/item/storage/box/matches,
@@ -61,6 +84,17 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
+=======
+"l" = (
+/obj/structure/chair/stool/bar/directional/south,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "wood"
+ },
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"m" = (
/obj/structure/chair/wood,
/turf/open/floor/holofloor{
@@ -85,6 +119,7 @@
"q" = (
/turf/open/floor/holofloor/carpet,
/area/template_noop)
+<<<<<<< HEAD
"r" = (
/obj/structure/window/reinforced/spawner/directional/east,
/turf/open/floor/holofloor{
@@ -100,6 +135,8 @@
icon_state = "wood"
},
/area/template_noop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"t" = (
/obj/structure/table/wood/shuttle_bar,
/obj/item/book/manual/wiki/barman_recipes,
@@ -117,6 +154,7 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
"v" = (
/obj/structure/table/wood/shuttle_bar,
/obj/structure/window/reinforced/spawner/directional/east,
@@ -125,6 +163,8 @@
icon_state = "wood"
},
/area/template_noop)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"w" = (
/obj/structure/table/wood,
/obj/item/instrument/saxophone,
@@ -256,6 +296,17 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
+=======
+"T" = (
+/obj/structure/table/wood/poker,
+/obj/item/cigarette/pipe,
+/turf/open/floor/holofloor{
+ dir = 9;
+ icon_state = "wood"
+ },
+/area/template_noop)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"U" = (
/obj/structure/table/wood/poker,
/obj/item/storage/dice,
@@ -271,9 +322,15 @@
icon_state = "wood"
},
/area/template_noop)
+<<<<<<< HEAD
"X" = (
/obj/structure/table/wood/poker,
/obj/item/cigarette/pipe,
+=======
+"Y" = (
+/obj/structure/table/wood/shuttle_bar,
+/obj/structure/window/reinforced/spawner/directional/east,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/holofloor{
dir = 9;
icon_state = "wood"
@@ -297,7 +354,11 @@ H
a
"}
(2,1,1) = {"
+<<<<<<< HEAD
g
+=======
+f
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
z
z
z
@@ -314,9 +375,15 @@ u
u
z
z
+<<<<<<< HEAD
r
s
v
+=======
+j
+l
+Y
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
c
G
"}
@@ -347,7 +414,11 @@ p
(6,1,1) = {"
m
P
+<<<<<<< HEAD
X
+=======
+T
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
o
z
F
@@ -390,5 +461,9 @@ O
q
E
E
+<<<<<<< HEAD
e
+=======
+h
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
diff --git a/_maps/templates/lazy_templates/ninja_den.dmm b/_maps/templates/lazy_templates/ninja_den.dmm
index b992aad5116..c28a1443466 100644
--- a/_maps/templates/lazy_templates/ninja_den.dmm
+++ b/_maps/templates/lazy_templates/ninja_den.dmm
@@ -66,11 +66,14 @@
},
/turf/open/floor/vault/rock,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"aW" = (
/obj/machinery/griddle,
/obj/item/kitchen/rollingpin,
/turf/open/floor/iron/cafeteria,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"be" = (
/obj/structure/chair/comfy/black{
dir = 4
@@ -80,6 +83,7 @@
"bl" = (
/turf/open/floor/bamboo/tatami/purple,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"bm" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -90,6 +94,8 @@
/obj/machinery/light/small/directional/west,
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bH" = (
/obj/machinery/photocopier,
/turf/open/floor/catwalk_floor,
@@ -143,6 +149,14 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"cK" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green,
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cQ" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/turf_decal/siding/wood{
@@ -228,6 +242,7 @@
/obj/machinery/duct,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"er" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -237,6 +252,8 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fu" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -246,12 +263,43 @@
},
/turf/open/floor/eighties/red,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"ga" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/toy/mecha/phazon,
+/turf/open/floor/bamboo/tatami/purple{
+ dir = 8
+ },
+/area/centcom/central_command_areas/holding)
+"gd" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/toy/katana{
+ desc = "As seen in your favourite Japanese cartoon.";
+ name = "anime katana"
+ },
+/turf/open/floor/bamboo/tatami,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gp" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
},
/turf/open/misc/sandy_dirt,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"gy" = (
+/obj/machinery/griddle,
+/obj/item/kitchen/rollingpin,
+/turf/open/floor/iron/cafeteria,
+/area/centcom/central_command_areas/holding)
+"gK" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/rcl/pre_loaded,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gX" = (
/obj/structure/window/paperframe{
can_atmos_pass = 0
@@ -306,11 +354,25 @@
},
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"hD" = (
/obj/structure/sink/directional/east,
/obj/structure/mirror/directional/west,
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/showroomfloor,
+=======
+"hv" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+"hw" = (
+/obj/item/kirbyplants/organic/plant10,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/black,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"hH" = (
/obj/item/flashlight/lantern,
@@ -335,16 +397,28 @@
},
/turf/open/floor/wood/large,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"iD" = (
/obj/structure/table/reinforced/rglass,
/obj/item/book/manual/hydroponics_pod_people,
/obj/item/paper/guides/jobs/hydroponics,
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iF" = (
/obj/structure/table/wood,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"iH" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/large,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"iQ" = (
/obj/machinery/gibber,
/turf/open/floor/catwalk_floor,
@@ -360,6 +434,7 @@
/obj/effect/turf_decal/siding/wood/corner,
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"jm" = (
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks/beer{
@@ -372,6 +447,17 @@
pixel_y = -4
},
/obj/machinery/light/small/directional/west,
+=======
+"jc" = (
+/obj/structure/table/wood/fancy/royalblue,
+/obj/item/toy/toy_xeno,
+/turf/open/floor/wood/parquet,
+/area/centcom/central_command_areas/holding)
+"jf" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/table/wood/fancy/green,
+/obj/effect/spawner/random/entertainment/gambling,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
"jq" = (
@@ -418,10 +504,21 @@
/obj/item/food/meat/slab/synthmeat,
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"kc" = (
/obj/structure/table/reinforced/plastitaniumglass,
/obj/item/storage/crayons,
/turf/open/floor/catwalk_floor,
+=======
+"jR" = (
+/obj/structure/chair/wood{
+ dir = 4
+ },
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/black,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"kl" = (
/obj/effect/turf_decal/siding/wood,
@@ -432,11 +529,14 @@
name = "Guest House Entrance"
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"kM" = (
/obj/structure/table/wood/fancy/royalblue,
/obj/item/toy/toy_xeno,
/turf/open/floor/wood/parquet,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"kO" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -459,6 +559,7 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"kY" = (
/obj/structure/table/wood/fancy/royalblue,
/obj/item/clothing/mask/animal/pig,
@@ -482,6 +583,22 @@
pixel_y = 9
},
/turf/open/floor/wood/tile,
+=======
+"lh" = (
+/obj/structure/toilet,
+/obj/structure/window/reinforced/survival_pod/spawner/directional/east,
+/obj/machinery/door/window/survival_pod/left/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/centcom/central_command_areas/holding)
+"ln" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 4
+ },
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/black,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"lx" = (
/obj/machinery/light/small/directional/north,
@@ -545,12 +662,15 @@
},
/turf/open/floor/wood/parquet,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"nq" = (
/obj/structure/sign/painting/library{
pixel_y = 32
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nt" = (
/obj/structure/flora/rock/pile/style_random,
/turf/open/misc/ironsand{
@@ -566,9 +686,27 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/iron/stairs/medium,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"of" = (
/obj/machinery/vending/boozeomat,
/turf/closed/wall/mineral/wood,
+=======
+"nW" = (
+/obj/machinery/light/warm/directional/west,
+/turf/open/water{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/centcom/central_command_areas/holding)
+"od" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/storage/basket,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/iron/sepia,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"oh" = (
/obj/machinery/light/directional/south,
@@ -585,10 +723,19 @@
},
/turf/open/floor/wood/parquet,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"op" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green,
/turf/open/floor/carpet/black,
+=======
+"os" = (
+/obj/machinery/shower/directional/south,
+/obj/item/soap/syndie,
+/obj/structure/curtain,
+/obj/machinery/door/window/survival_pod/left/directional/south,
+/turf/open/floor/iron/showroomfloor,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"ov" = (
/obj/structure/flora/rock/pile/style_random,
@@ -600,6 +747,14 @@
initial_gas_mix = "TEMP=2.7"
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"oG" = (
+/turf/open/water{
+ initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
+ },
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oH" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -638,6 +793,23 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"pu" = (
+/obj/structure/closet/crate,
+/obj/item/vending_refill/autodrobe,
+/obj/item/stack/sheet/paperframes/fifty,
+/obj/item/stack/sheet/paperframes/fifty,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/fancy/candle_box,
+/obj/item/storage/box/lights/mixed,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pB" = (
/obj/structure/rack,
/obj/item/nullrod/claymore{
@@ -711,6 +883,20 @@
/obj/machinery/autolathe,
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"qx" = (
+/obj/structure/sink/directional/east,
+/obj/structure/mirror/directional/west,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/showroomfloor,
+/area/centcom/central_command_areas/holding)
+"qE" = (
+/turf/closed/indestructible/fakedoor{
+ name = "Guest House Back Entrance"
+ },
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qF" = (
/obj/structure/flora/bush/flowers_yw/style_random,
/turf/open/floor/grass,
@@ -719,6 +905,23 @@
/obj/machinery/light/directional/east,
/turf/open/floor/wood/large,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"qI" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/wallframe/newscaster{
+ pixel_x = -6
+ },
+/obj/item/flashlight/lamp/bananalamp{
+ pixel_x = 9;
+ pixel_y = 9
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qT" = (
/obj/effect/turf_decal/siding/wood{
dir = 10
@@ -741,11 +944,29 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"rn" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer{
+ dir = 4;
+ pixel_x = -8;
+ pixel_y = 1
+ },
+/obj/item/reagent_containers/cup/beaker{
+ pixel_x = 7;
+ pixel_y = -4
+ },
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rz" = (
/obj/structure/flora/bush/flowers_yw/style_random,
/obj/structure/flora/bush/flowers_br/style_random,
/turf/open/floor/grass,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"rE" = (
/turf/closed/indestructible/fakedoor{
name = "Guest House Back Entrance"
@@ -758,6 +979,8 @@
/obj/effect/landmark/holding_facility,
/turf/open/floor/wood/large,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"rQ" = (
/obj/machinery/duct,
/turf/open/floor/iron/cafeteria,
@@ -775,6 +998,7 @@
dir = 8
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"so" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -801,6 +1025,13 @@
/turf/open/water{
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
+=======
+"sc" = (
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/iron/showroomfloor,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"ts" = (
/obj/item/food/meat/slab/chicken,
@@ -821,6 +1052,18 @@
/obj/structure/closet/secure_closet/freezer/meat/open,
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"uv" = (
+/obj/structure/toilet/greyscale{
+ dir = 4
+ },
+/obj/structure/sink/directional/west,
+/obj/structure/mirror/directional/east,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/showroomfloor,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uw" = (
/mob/living/basic/bot/medbot/stationary{
desc = "A little medical robot. You can make out the word \"sincerity\" on its chassis.";
@@ -835,6 +1078,21 @@
initial_gas_mix = "TEMP=2.7"
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"uL" = (
+/obj/structure/closet/crate/bin,
+/obj/item/clothing/suit/costume/xenos,
+/obj/item/clothing/head/costume/xenos,
+/obj/item/xenos_claw,
+/obj/item/grown/log/bamboo,
+/obj/item/grown/log/bamboo,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"uQ" = (
/obj/structure/chair/wood{
dir = 8
@@ -843,6 +1101,7 @@
dir = 4
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"uZ" = (
/obj/structure/closet/crate,
/obj/item/vending_refill/autodrobe,
@@ -857,6 +1116,8 @@
},
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"vr" = (
/obj/structure/rack,
/obj/item/nullrod/claymore/saber{
@@ -875,9 +1136,16 @@
/obj/machinery/seed_extractor,
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"vW" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole/bookmanagement,
+=======
+"vS" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
"wc" = (
@@ -893,10 +1161,13 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"wz" = (
/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/south,
/turf/open/floor/wood/large,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wU" = (
/turf/open/floor/wood/parquet,
/area/centcom/central_command_areas/holding)
@@ -945,6 +1216,7 @@
dir = 1
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"xR" = (
/obj/structure/chair/wood{
dir = 4
@@ -954,6 +1226,8 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xU" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/turf_decal/siding/wood{
@@ -984,6 +1258,7 @@
/obj/structure/chair/stool/directional/west,
/turf/open/misc/beach/sand,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"zg" = (
/obj/structure/table/reinforced/rglass,
/obj/item/shovel/spade{
@@ -991,6 +1266,14 @@
},
/obj/item/cultivator,
/turf/open/floor/wood/tile,
+=======
+"zc" = (
+/obj/structure/table/wood,
+/obj/machinery/microwave{
+ pixel_y = 6
+ },
+/turf/open/floor/carpet/black,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"zh" = (
/obj/structure/closet/secure_closet/freezer/fridge/open,
@@ -1037,6 +1320,7 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Ac" = (
/obj/effect/turf_decal/siding/wood,
/obj/structure/table/reinforced/plastitaniumglass,
@@ -1053,6 +1337,8 @@
/obj/effect/turf_decal/tile/dark/fourcorners,
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Af" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -1073,6 +1359,15 @@
"Am" = (
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"An" = (
+/obj/structure/table/reinforced,
+/obj/item/book/manual/chef_recipes,
+/obj/item/knife/kitchen,
+/turf/open/floor/iron/cafeteria,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ar" = (
/obj/structure/sink/kitchen/directional/west,
/obj/item/reagent_containers/cup/bucket,
@@ -1136,11 +1431,22 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Co" = (
/obj/structure/toilet,
/obj/structure/window/reinforced/survival_pod/spawner/directional/east,
/obj/machinery/door/window/survival_pod/left/directional/south,
/turf/open/floor/iron/showroomfloor,
+=======
+"CD" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 8
+ },
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet/black,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"CG" = (
/turf/closed/indestructible/wood,
@@ -1150,18 +1456,22 @@
dir = 8
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"CP" = (
/obj/structure/sink/directional/west,
/obj/structure/mirror/directional/east,
/obj/machinery/light/small/directional/south,
/turf/open/floor/iron/showroomfloor,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"CT" = (
/obj/structure/table/reinforced/plastitaniumglass,
/turf/open/floor/bamboo/tatami{
dir = 4
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Dd" = (
/obj/structure/toilet/greyscale{
dir = 4
@@ -1171,6 +1481,8 @@
/obj/machinery/light/small/directional/north,
/turf/open/floor/iron/showroomfloor,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Dh" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/turf_decal/tile/dark/fourcorners,
@@ -1210,6 +1522,7 @@
"DI" = (
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"DJ" = (
/obj/structure/table/reinforced/plastitaniumglass,
/obj/item/toy/mecha/phazon,
@@ -1217,17 +1530,22 @@
dir = 8
},
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"DL" = (
/obj/structure/chair/wood{
dir = 4
},
/turf/open/floor/wood/large,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"DW" = (
/turf/open/water{
initial_gas_mix = "o2=22;n2=82;TEMP=293.15"
},
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"DZ" = (
/obj/structure/kitchenspike,
/obj/item/gun/magic/hook,
@@ -1292,12 +1610,15 @@
/obj/machinery/light/directional/west,
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"FD" = (
/obj/structure/table/wood,
/obj/item/food/grown/tea/astra,
/obj/item/food/grown/soybeans,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"FE" = (
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
@@ -1341,6 +1662,25 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"Gw" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/clothing/suit/costume/hawaiian{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/suit/costume/hawaiian,
+/obj/item/clothing/suit/costume/hawaiian{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/suit/costume/hawaiian,
+/obj/effect/turf_decal/tile/dark/fourcorners,
+/turf/open/floor/iron/sepia,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Gy" = (
/obj/structure/table/wood,
/obj/item/reagent_containers/cup/glass/bottle/sake{
@@ -1348,6 +1688,7 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"GC" = (
/obj/structure/table/reinforced,
/obj/item/book/manual/chef_recipes,
@@ -1362,6 +1703,8 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"GN" = (
/obj/structure/bed/dogbed/cayenne{
name = "Paprika's bed"
@@ -1435,12 +1778,39 @@
initial_gas_mix = "TEMP=2.7"
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"HV" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/obj/effect/landmark/holding_facility,
+/turf/open/floor/wood/large,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"HW" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
},
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"Ia" = (
+/obj/structure/table/reinforced,
+/obj/item/food/grown/tea/astra{
+ pixel_y = 13
+ },
+/obj/item/food/grown/soybeans{
+ pixel_y = 13
+ },
+/obj/machinery/reagentgrinder{
+ desc = "Used to grind things up into raw materials and liquids.";
+ pixel_y = 5
+ },
+/turf/open/floor/iron/cafeteria,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ig" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -1452,6 +1822,7 @@
/obj/machinery/deepfryer,
/turf/open/floor/iron/cafeteria,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Iz" = (
/obj/machinery/shower/directional/south,
/obj/item/soap/syndie,
@@ -1459,6 +1830,8 @@
/obj/machinery/door/window/survival_pod/left/directional/south,
/turf/open/floor/iron/showroomfloor,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"II" = (
/mob/living/basic/bot/medbot/stationary{
desc = "When engaged in combat, the vanquishing of thine enemy can be the warrior's only concern.";
@@ -1467,6 +1840,25 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"IM" = (
+/obj/structure/table/reinforced/rglass,
+/obj/item/book/manual/hydroponics_pod_people,
+/obj/item/paper/guides/jobs/hydroponics,
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/holding)
+"Jf" = (
+/obj/structure/table/reinforced/rglass,
+/obj/item/wrench{
+ pixel_y = -16
+ },
+/obj/item/wirecutters{
+ pixel_y = 3
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jg" = (
/obj/item/clothing/shoes/galoshes{
pixel_y = -8
@@ -1499,6 +1891,7 @@
},
/turf/open/floor/catwalk_floor,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Jw" = (
/obj/item/food/grown/rice,
/obj/item/food/grown/rice,
@@ -1519,6 +1912,16 @@
name = "kitchen cabinet"
},
/turf/open/floor/carpet/black,
+=======
+"Jz" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp{
+ pixel_x = -5;
+ pixel_y = 11
+ },
+/obj/item/camera_film,
+/turf/open/floor/wood/large,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"JC" = (
/obj/structure/closet{
@@ -1560,6 +1963,30 @@
},
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"JV" = (
+/obj/item/food/grown/rice,
+/obj/item/food/grown/rice,
+/obj/item/food/grown/rice,
+/obj/item/food/grown/rice,
+/obj/item/food/grown/rice,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/potato,
+/obj/item/food/grown/onion,
+/obj/item/food/grown/onion,
+/obj/item/food/grown/onion/red,
+/obj/item/food/grown/onion/red,
+/obj/item/food/grown/coffee,
+/obj/structure/closet/secure_closet/freezer/fridge/open{
+ name = "kitchen cabinet"
+ },
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Kb" = (
/obj/structure/musician/piano,
/turf/open/misc/beach/sand,
@@ -1573,6 +2000,7 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Ks" = (
/obj/structure/table/reinforced,
/obj/item/food/grown/tea/astra{
@@ -1587,6 +2015,8 @@
},
/turf/open/floor/iron/cafeteria,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Kt" = (
/obj/structure/dresser,
/obj/machinery/light/small/directional/west,
@@ -1594,12 +2024,15 @@
dir = 8
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"KW" = (
/obj/structure/sign/painting/library{
pixel_y = 32
},
/turf/open/floor/wood/large,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Lw" = (
/obj/item/bedsheet/syndie{
dir = 4
@@ -1636,6 +2069,7 @@
},
/turf/open/floor/iron/cafeteria,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Mm" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp{
@@ -1644,6 +2078,14 @@
},
/obj/item/camera_film,
/turf/open/floor/wood/large,
+=======
+"My" = (
+/obj/item/kirbyplants/organic/plant10,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/sepia,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"Mz" = (
/obj/structure/closet,
@@ -1659,6 +2101,7 @@
/obj/item/defibrillator,
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"MA" = (
/obj/structure/table/reinforced/plastitaniumglass,
/obj/item/toy/katana{
@@ -1667,6 +2110,8 @@
},
/turf/open/floor/bamboo/tatami,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ML" = (
/obj/structure/window/paperframe{
can_atmos_pass = 0
@@ -1677,6 +2122,33 @@
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"MM" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/toy/figure/syndie,
+/turf/open/floor/bamboo/tatami/purple,
+/area/centcom/central_command_areas/holding)
+"MR" = (
+/obj/structure/table/wood,
+/obj/item/food/grown/tea/astra,
+/obj/item/food/grown/soybeans,
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+"Nt" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks{
+ dir = 4;
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/reagent_containers/condiment/enzyme{
+ pixel_x = 10;
+ pixel_y = 2
+ },
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Nz" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -1713,12 +2185,22 @@
dir = 1
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Oj" = (
/obj/structure/table/wood,
/obj/machinery/microwave{
pixel_y = 6
},
/turf/open/floor/carpet/black,
+=======
+"Od" = (
+/obj/item/kirbyplants/organic/plant10,
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/sepia,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"Ok" = (
/obj/effect/turf_decal/siding/wood{
@@ -1739,6 +2221,7 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Os" = (
/obj/item/kirbyplants/organic/plant10,
/obj/structure/sign/painting/library{
@@ -1746,6 +2229,8 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"OC" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -1762,10 +2247,16 @@
/obj/structure/flora/tree/jungle/small/style_random,
/turf/open/floor/grass,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Pz" = (
/obj/structure/table/reinforced/plastitaniumglass,
/obj/item/rcl/pre_loaded,
/turf/open/floor/catwalk_floor,
+=======
+"PB" = (
+/obj/structure/sign/poster/contraband/syndicate_recruitment/directional/south,
+/turf/open/floor/wood/large,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"PH" = (
/obj/structure/chair/comfy/black{
@@ -1773,6 +2264,7 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Qa" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -1800,6 +2292,21 @@
/obj/structure/table/wood/fancy/green,
/obj/effect/spawner/random/entertainment/gambling,
/turf/open/floor/carpet/black,
+=======
+"PK" = (
+/obj/structure/table/reinforced/rglass,
+/obj/item/shovel/spade{
+ pixel_y = -14
+ },
+/obj/item/cultivator,
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/holding)
+"PV" = (
+/obj/structure/table/wood/fancy/royalblue,
+/obj/item/instrument/piano_synth,
+/obj/item/instrument/saxophone,
+/turf/open/floor/wood/parquet,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"Qt" = (
/obj/machinery/light/small/directional/north,
@@ -1842,6 +2349,7 @@
/obj/machinery/light/directional/north,
/turf/open/floor/iron/cafeteria,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Rj" = (
/obj/structure/table/reinforced/rglass,
/obj/item/wrench{
@@ -1852,6 +2360,8 @@
},
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ry" = (
/obj/structure/dresser,
/obj/machinery/light/small/directional/east,
@@ -1896,6 +2406,7 @@
"Sc" = (
/turf/open/floor/stone,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"Si" = (
/obj/item/kirbyplants/organic/plant10,
/obj/structure/sign/painting/library{
@@ -1903,6 +2414,8 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Tc" = (
/obj/effect/turf_decal/siding/wood,
/obj/structure/chair/sofa/corp/right{
@@ -1932,6 +2445,15 @@
},
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"TO" = (
+/obj/structure/sign/painting/library{
+ pixel_y = 32
+ },
+/turf/open/floor/iron/sepia,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TP" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -1956,10 +2478,37 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"UB" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/toy/figure/ninja,
+/turf/open/floor/bamboo/tatami{
+ dir = 4
+ },
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"UO" = (
/obj/structure/chair/stool/bar/directional/west,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"UW" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood/fancy/green,
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_y = 6
+ },
+/turf/open/floor/carpet/black,
+/area/centcom/central_command_areas/holding)
+"UY" = (
+/obj/machinery/vending/boozeomat,
+/turf/closed/wall/mineral/wood,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Vd" = (
/obj/effect/turf_decal/siding/wood{
dir = 4
@@ -1983,6 +2532,20 @@
/obj/machinery/stasis,
/turf/open/floor/iron/sepia,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"Vj" = (
+/obj/structure/table/wood,
+/obj/effect/turf_decal/siding/wood,
+/obj/item/paper_bin,
+/obj/item/pen/fountain,
+/obj/item/camera/detective{
+ desc = "A polaroid camera with extra capacity for social media marketing.";
+ name = "Professional camera"
+ },
+/turf/open/floor/wood/tile,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"VC" = (
/obj/structure/closet/crate/bin,
/obj/item/soap/syndie,
@@ -2043,6 +2606,7 @@
dir = 4
},
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"WJ" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood,
@@ -2054,6 +2618,8 @@
},
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"WS" = (
/obj/effect/turf_decal/siding/wood/corner{
dir = 4
@@ -2092,6 +2658,14 @@
},
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
+=======
+"Xd" = (
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/storage/crayons,
+/turf/open/floor/catwalk_floor,
+/area/centcom/central_command_areas/holding)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Xi" = (
/obj/structure/flora/rock/pile/jungle/large/style_random{
pixel_y = -3
@@ -2124,6 +2698,7 @@
},
/turf/open/floor/wood/tile,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"XS" = (
/obj/structure/table/wood,
/obj/machinery/chem_dispenser/drinks{
@@ -2136,12 +2711,24 @@
pixel_y = 2
},
/turf/open/floor/carpet/black,
+=======
+"Yd" = (
+/obj/structure/table/wood/fancy/royalblue,
+/obj/item/clothing/mask/animal/pig,
+/obj/item/clothing/mask/animal/horsehead,
+/obj/item/clothing/mask/animal/small/rat,
+/obj/item/clothing/mask/fakemoustache{
+ pixel_y = 9
+ },
+/turf/open/floor/wood/parquet,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/holding)
"Ye" = (
/obj/structure/table/wood/fancy/red,
/obj/item/toy/spinningtoy,
/turf/open/floor/wood/parquet,
/area/centcom/central_command_areas/holding)
+<<<<<<< HEAD
"YF" = (
/obj/structure/table/wood/fancy/royalblue,
/obj/item/instrument/piano_synth,
@@ -2154,6 +2741,8 @@
/obj/item/pen/fountain,
/turf/open/floor/carpet/black,
/area/centcom/central_command_areas/holding)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"YQ" = (
/turf/open/floor/bamboo/tatami{
dir = 4
@@ -2388,7 +2977,11 @@ Zj
LK
Mh
BB
+<<<<<<< HEAD
Ks
+=======
+Ia
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CG
CG
LK
@@ -2423,6 +3016,7 @@ Zj
Zj
Zj
LK
+<<<<<<< HEAD
aW
wV
Ea
@@ -2431,6 +3025,16 @@ Oj
jm
XS
Jw
+=======
+gy
+wV
+Ea
+dg
+zc
+rn
+Nt
+JV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zh
Xn
dg
@@ -2534,6 +3138,7 @@ ox
Zj
Zj
LK
+<<<<<<< HEAD
GC
nA
wV
@@ -2548,6 +3153,22 @@ dg
DW
sH
DW
+=======
+An
+nA
+wV
+dg
+UY
+vS
+Am
+Am
+MR
+dg
+dg
+oG
+nW
+oG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
LK
Ed
xB
@@ -2580,11 +3201,19 @@ AE
Gy
Bo
iF
+<<<<<<< HEAD
op
dg
DW
DW
DW
+=======
+cK
+dg
+oG
+oG
+oG
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
LK
Ed
xB
@@ -2610,7 +3239,11 @@ Zj
Zj
HU
CG
+<<<<<<< HEAD
nq
+=======
+TO
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zN
Jj
Xb
@@ -2762,8 +3395,13 @@ XP
dg
hO
hO
+<<<<<<< HEAD
Qa
Qm
+=======
+UW
+jf
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hO
hO
Ig
@@ -2862,13 +3500,21 @@ Zj
HU
aB
CT
+<<<<<<< HEAD
Qh
+=======
+UB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gX
mw
mw
WW
XP
+<<<<<<< HEAD
WJ
+=======
+Vj
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mw
DL
ht
@@ -2901,18 +3547,30 @@ CG
dg
dg
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GU
dg
dg
Zs
mw
+<<<<<<< HEAD
Mm
+=======
+Jz
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ht
kl
dg
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mw
CG
Zj
@@ -2936,14 +3594,22 @@ Zj
Zj
aB
AO
+<<<<<<< HEAD
Qj
+=======
+MM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ML
mw
mw
hs
dg
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iB
ht
kl
@@ -3023,7 +3689,11 @@ jb
NN
dg
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GU
CG
Zj
@@ -3049,16 +3719,27 @@ CG
dg
dg
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mw
dg
dg
dg
dg
+<<<<<<< HEAD
er
al
Am
vW
+=======
+CD
+al
+Am
+hv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
XP
mw
mw
@@ -3082,14 +3763,24 @@ Zj
Zj
Zj
LK
+<<<<<<< HEAD
Co
hD
+=======
+lh
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dg
QJ
mw
mw
+<<<<<<< HEAD
bm
Ac
+=======
+od
+Gw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
XP
xw
Am
@@ -3119,7 +3810,11 @@ HU
Zj
HU
LK
+<<<<<<< HEAD
Co
+=======
+lh
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
jv
Tv
Xt
@@ -3134,7 +3829,11 @@ dg
Qt
GN
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mw
CG
HU
@@ -3156,8 +3855,13 @@ Zj
ov
HU
LK
+<<<<<<< HEAD
Iz
CP
+=======
+os
+sc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dg
QJ
mw
@@ -3197,16 +3901,28 @@ CG
dg
dg
dg
+<<<<<<< HEAD
KW
wz
+=======
+iH
+PB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dg
dg
dg
dg
+<<<<<<< HEAD
so
xe
Am
vW
+=======
+ln
+xe
+Am
+hv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
XP
mw
mw
@@ -3245,7 +3961,11 @@ JR
RY
dg
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mw
eg
Sc
@@ -3306,16 +4026,26 @@ Zj
HU
aB
Dr
+<<<<<<< HEAD
MA
+=======
+gd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ML
pp
jA
dg
dg
dg
+<<<<<<< HEAD
KW
mw
lb
+=======
+iH
+mw
+qI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kl
Zq
XP
@@ -3345,7 +4075,11 @@ CG
dg
dg
dg
+<<<<<<< HEAD
rF
+=======
+HV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
pp
JC
XP
@@ -3380,7 +4114,11 @@ ov
Zj
aB
xF
+<<<<<<< HEAD
DJ
+=======
+ga
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ML
pp
pp
@@ -3459,7 +4197,11 @@ ML
ND
ND
dg
+<<<<<<< HEAD
Dd
+=======
+uv
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Zk
mw
mw
@@ -3514,7 +4256,11 @@ bH
qr
FB
bP
+<<<<<<< HEAD
kc
+=======
+Xd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CG
Ed
Ed
@@ -3547,11 +4293,19 @@ CG
Zj
HU
CG
+<<<<<<< HEAD
uZ
FE
FE
Ju
Pz
+=======
+pu
+FE
+FE
+Ju
+gK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CG
Ed
Ed
@@ -3597,7 +4351,11 @@ Ed
Ed
CG
LK
+<<<<<<< HEAD
rE
+=======
+qE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
LK
CG
LK
@@ -3609,13 +4367,21 @@ LK
LK
LK
CG
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mw
dg
XP
XP
dg
+<<<<<<< HEAD
KW
+=======
+iH
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GU
dg
af
@@ -3757,17 +4523,29 @@ Mz
DI
dv
dg
+<<<<<<< HEAD
Os
+=======
+hw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
NU
Vf
NU
EC
dg
+<<<<<<< HEAD
GJ
Wm
Mz
dg
sF
+=======
+Od
+Wm
+Mz
+dg
+uL
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hO
hO
hO
@@ -3831,13 +4609,21 @@ wq
DI
Uj
dg
+<<<<<<< HEAD
xR
+=======
+jR
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
NU
NU
NU
NU
dg
+<<<<<<< HEAD
Si
+=======
+My
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DI
DG
dg
@@ -3971,8 +4757,13 @@ xB
Ed
CG
hm
+<<<<<<< HEAD
kY
YF
+=======
+Yd
+PV
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Tj
dg
ni
@@ -4024,7 +4815,11 @@ Rf
RC
wU
wU
+<<<<<<< HEAD
kM
+=======
+jc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CG
CG
CG
@@ -4068,9 +4863,15 @@ HU
Zj
CG
Ar
+<<<<<<< HEAD
Rj
zg
iD
+=======
+Jf
+PK
+IM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CG
Ed
"}
diff --git a/_maps/templates/lazy_templates/nukie_base.dmm b/_maps/templates/lazy_templates/nukie_base.dmm
index cf6aacd092e..64e13b786b7 100644
--- a/_maps/templates/lazy_templates/nukie_base.dmm
+++ b/_maps/templates/lazy_templates/nukie_base.dmm
@@ -1124,6 +1124,7 @@
/obj/machinery/chem_dispenser/mutagensaltpeter,
/turf/open/floor/mineral/plastitanium/red,
/area/centcom/syndicate_mothership/expansion_bioterrorism)
+<<<<<<< HEAD
"mj" = (
/obj/structure/table/wood/poker,
/obj/machinery/light/warm/directional/north,
@@ -1150,6 +1151,8 @@
/obj/effect/turf_decal/tile/bar/opposingcorners,
/turf/open/floor/iron,
/area/centcom/syndicate_mothership/control)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"my" = (
/obj/effect/landmark/start/nukeop_leader,
/obj/effect/turf_decal/tile/bar/opposingcorners,
@@ -1501,6 +1504,36 @@
/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5,
/turf/closed/indestructible/syndicate,
/area/centcom/syndicate_mothership/control)
+<<<<<<< HEAD
+=======
+"qs" = (
+/obj/machinery/light/small/directional/west,
+/obj/structure/closet/secure_closet/freezer/fridge/open,
+/obj/item/food/meat/slab/rawcrab,
+/obj/item/food/meat/slab/rawcrab,
+/obj/item/food/meat/slab/rawcrab,
+/obj/item/food/fishmeat,
+/obj/item/food/fishmeat,
+/obj/item/food/fishmeat,
+/obj/item/food/grown/tomato,
+/obj/item/food/grown/tomato,
+/obj/item/food/grown/tomato,
+/obj/item/reagent_containers/condiment/enzyme,
+/obj/item/storage/fancy/egg_box,
+/obj/item/storage/fancy/egg_box,
+/obj/item/reagent_containers/condiment/milk,
+/obj/item/reagent_containers/condiment/milk,
+/obj/item/reagent_containers/condiment/flour{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/obj/item/reagent_containers/condiment/flour{
+ pixel_x = -5;
+ pixel_y = 9
+ },
+/turf/open/floor/plastic,
+/area/centcom/syndicate_mothership/expansion_fridgerummage)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qv" = (
/obj/item/kirbyplants/random,
/turf/open/floor/mineral/titanium,
@@ -1962,6 +1995,7 @@
},
/turf/open/floor/carpet,
/area/centcom/syndicate_mothership/control)
+<<<<<<< HEAD
"wr" = (
/obj/machinery/light/small/directional/west,
/obj/structure/closet/secure_closet/freezer/fridge/open,
@@ -1989,6 +2023,8 @@
},
/turf/open/floor/plastic,
/area/centcom/syndicate_mothership/expansion_fridgerummage)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ws" = (
/obj/effect/turf_decal/siding/wideplating/dark,
/obj/effect/turf_decal/siding/wideplating/dark{
@@ -2603,6 +2639,35 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/centcom/syndicate_mothership/expansion_bombthreat)
+<<<<<<< HEAD
+=======
+"DY" = (
+/obj/structure/table/wood/poker,
+/obj/machinery/light/warm/directional/north,
+/obj/item/reagent_containers/cup/glass/bottle/whiskey{
+ pixel_x = -4;
+ pixel_y = 14
+ },
+/obj/item/toy/cards/deck{
+ pixel_x = 3;
+ pixel_y = 6
+ },
+/obj/item/cigarette/robust{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/effect/decal/cleanable/ash{
+ pixel_x = 12;
+ pixel_y = -6
+ },
+/obj/effect/spawner/random/entertainment/lighter{
+ pixel_x = 9;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/tile/bar/opposingcorners,
+/turf/open/floor/iron,
+/area/centcom/syndicate_mothership/control)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"DZ" = (
/turf/closed/indestructible/syndicate,
/area/centcom/syndicate_mothership/control)
@@ -6419,7 +6484,11 @@ rJ
Cf
nU
ek
+<<<<<<< HEAD
wr
+=======
+qs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ek
DZ
eK
@@ -7041,7 +7110,11 @@ DZ
Gr
tc
mJ
+<<<<<<< HEAD
mj
+=======
+DY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lQ
Nb
VK
diff --git a/_maps/templates/lazy_templates/wizard_den.dmm b/_maps/templates/lazy_templates/wizard_den.dmm
index 15af9f324ab..bd05b063ab2 100644
--- a/_maps/templates/lazy_templates/wizard_den.dmm
+++ b/_maps/templates/lazy_templates/wizard_den.dmm
@@ -44,6 +44,21 @@
/obj/structure/showcase/machinery/rng,
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+<<<<<<< HEAD
+=======
+"dr" = (
+/obj/structure/table/wood,
+/obj/item/cigarette/cigar{
+ pixel_y = -9;
+ pixel_x = -5
+ },
+/obj/item/camera/spooky{
+ pixel_y = 7;
+ pixel_x = 2
+ },
+/turf/open/floor/engine/cult,
+/area/centcom/wizard_station)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dB" = (
/obj/machinery/light/small/directional/east,
/turf/open/floor/engine/cult,
@@ -315,6 +330,16 @@
/obj/machinery/griddle,
/turf/open/floor/iron,
/area/centcom/wizard_station)
+<<<<<<< HEAD
+=======
+"qg" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/engine/cult,
+/area/centcom/wizard_station)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ql" = (
/obj/structure/table/wood,
/obj/item/flashlight/lamp/green{
@@ -360,6 +385,7 @@
},
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+<<<<<<< HEAD
"sw" = (
/obj/structure/table/wood,
/obj/item/cigarette/cigar{
@@ -372,6 +398,8 @@
},
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sx" = (
/obj/structure/flora/bush/flowers_pp/style_random,
/turf/open/floor/grass,
@@ -500,6 +528,16 @@
},
/turf/open/floor/plastic,
/area/centcom/wizard_station)
+<<<<<<< HEAD
+=======
+"yX" = (
+/obj/structure/railing,
+/obj/structure/railing/corner{
+ dir = 4
+ },
+/turf/open/floor/engine/cult,
+/area/centcom/wizard_station)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zB" = (
/turf/open/floor/iron,
/area/centcom/wizard_station)
@@ -600,6 +638,7 @@
},
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+<<<<<<< HEAD
"Ii" = (
/obj/structure/railing,
/obj/structure/railing/corner{
@@ -607,6 +646,8 @@
},
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"II" = (
/obj/structure/table/wood,
/obj/item/modular_computer/laptop/preset/civilian{
@@ -846,6 +887,7 @@
/obj/machinery/vending/magivend,
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+<<<<<<< HEAD
"Va" = (
/obj/structure/railing,
/obj/structure/railing{
@@ -853,6 +895,8 @@
},
/turf/open/floor/engine/cult,
/area/centcom/wizard_station)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"VB" = (
/turf/closed/indestructible/wood,
/area/centcom/wizard_station)
@@ -1551,7 +1595,11 @@ kZ
uy
VB
TX
+<<<<<<< HEAD
Ii
+=======
+yX
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
VB
VB
op
@@ -1597,7 +1645,11 @@ kZ
uy
VB
fX
+<<<<<<< HEAD
Va
+=======
+qg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fX
VB
VB
@@ -1643,7 +1695,11 @@ LU
cy
VB
eI
+<<<<<<< HEAD
Va
+=======
+qg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fX
fX
dk
@@ -1735,7 +1791,11 @@ LU
cy
VB
fX
+<<<<<<< HEAD
Va
+=======
+qg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fX
fX
dk
@@ -1781,7 +1841,11 @@ kZ
uy
VB
fX
+<<<<<<< HEAD
Va
+=======
+qg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fX
VB
VB
@@ -1827,7 +1891,11 @@ kZ
uy
VB
fX
+<<<<<<< HEAD
Va
+=======
+qg
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
VB
VB
op
@@ -1852,7 +1920,11 @@ op
op
TG
TG
+<<<<<<< HEAD
sw
+=======
+dr
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
HD
VB
Dq
diff --git a/_maps/virtual_domains/breeze_bay.dmm b/_maps/virtual_domains/breeze_bay.dmm
index 6035cfd2000..19d99b74403 100644
--- a/_maps/virtual_domains/breeze_bay.dmm
+++ b/_maps/virtual_domains/breeze_bay.dmm
@@ -13,6 +13,13 @@
"e" = (
/turf/open/floor/carpet/red,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"f" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/open/water/beach,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"g" = (
/obj/item/toy/beach_ball/branded,
/turf/open/misc/beach/sand,
@@ -41,10 +48,13 @@
/obj/structure/table/wood,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"n" = (
/obj/effect/baseturf_helper/virtual_domain,
/turf/open/water/beach,
/area/virtual_domain/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"o" = (
/obj/structure/flora/tree/jungle/style_5,
/turf/open/misc/beach/sand,
@@ -230,7 +240,11 @@ i
Q
i
i
+<<<<<<< HEAD
n
+=======
+f
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
a
"}
(3,1,1) = {"
diff --git a/_maps/virtual_domains/grasslands_hunt.dmm b/_maps/virtual_domains/grasslands_hunt.dmm
new file mode 100644
index 00000000000..c77bdae196f
--- /dev/null
+++ b/_maps/virtual_domains/grasslands_hunt.dmm
@@ -0,0 +1,6650 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aj" = (
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"av" = (
+/obj/structure/flora/bush/pointy/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"aD" = (
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"aZ" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"bd" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"br" = (
+/obj/structure/flora/bush/reed/style_random,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"bG" = (
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"bI" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"bU" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/holofloor/basalt,
+/area/virtual_domain/fullbright)
+"ce" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"cL" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"cS" = (
+/obj/structure/flora/rock/pile,
+/turf/open/floor/holofloor/basalt,
+/area/virtual_domain/fullbright)
+"cZ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"dk" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"ec" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"ep" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"eE" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"fa" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"fm" = (
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"fK" = (
+/turf/closed/indestructible/rock,
+/area/virtual_domain/fullbright)
+"fZ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"gT" = (
+/obj/structure/table/wood,
+/obj/item/gun/ballistic/rifle/boltaction{
+ pixel_y = 8
+ },
+/obj/item/gun/ballistic/rifle/boltaction{
+ pixel_y = 4
+ },
+/obj/item/gun/ballistic/rifle/boltaction,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"hH" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"ic" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"iy" = (
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"iT" = (
+/obj/structure/flora/bush/pointy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"jc" = (
+/obj/structure/flora/bush/stalky/style_random,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"jo" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"jq" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"kd" = (
+/obj/structure/flora/tree/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"kj" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"kq" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"kG" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"kM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"kX" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"lf" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"lh" = (
+/obj/structure/flora/bush/pointy/style_random,
+/turf/closed/indestructible/rock,
+/area/virtual_domain/fullbright)
+"lF" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"lK" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"lN" = (
+/obj/structure/flora/bush/reed/style_random,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"lQ" = (
+/obj/structure/table/wood,
+/obj/item/storage/cans/sixbeer,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"nn" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"nE" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"nK" = (
+/obj/structure/flora/bush/pointy/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"od" = (
+/obj/item/knife/hunting,
+/obj/structure/table/wood,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"or" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"oy" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/pointy/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"oJ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"oT" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"ph" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"pn" = (
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"pJ" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"rj" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"rx" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/tree/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"rO" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"rW" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"sq" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"st" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/misc/dirt/station,
+/area/virtual_domain/fullbright)
+"sx" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"sZ" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"tw" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/misc/dirt/station,
+/area/virtual_domain/fullbright)
+"tM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"tZ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"uh" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"uk" = (
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"uA" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"uN" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"vF" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"vN" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"vS" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"we" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"wq" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"wT" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"xj" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"xw" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"xE" = (
+/obj/structure/flora/bush/ferny/style_random,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"yr" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"yC" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"zb" = (
+/obj/structure/flora/bush/stalky/style_random,
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"zd" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"zr" = (
+/obj/structure/flora/bush/flowers_br/style_random,
+/obj/structure/flora/rock/pile/jungle/large/style_3,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"zX" = (
+/obj/modular_map_root/safehouse{
+ key = "wood"
+ },
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"An" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Az" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"AM" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"AP" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/tree/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Be" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Bl" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Bn" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"BR" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"BS" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/floor/holofloor/basalt,
+/area/virtual_domain/fullbright)
+"Co" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Cw" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"CH" = (
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Dk" = (
+/obj/effect/landmark/bitrunning/loot_signal,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"DM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"DT" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Es" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"EW" = (
+/obj/structure/flora/rock/pile/style_2,
+/turf/open/floor/holofloor/basalt,
+/area/virtual_domain/fullbright)
+"Fm" = (
+/obj/structure/flora/tree/jungle/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"FC" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/structure/flora/bush/leavy,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Gt" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"HT" = (
+/obj/structure/flora/bush/flowers_br/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Ib" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/tree/jungle/small/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Ik" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"IC" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"IQ" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Jr" = (
+/obj/structure/flora/tree/jungle/small/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Js" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/rock/pile/jungle/style_2,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Jv" = (
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Jw" = (
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"JD" = (
+/obj/structure/flora/bush/pointy/style_random,
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"JF" = (
+/turf/open/floor/holofloor/basalt,
+/area/virtual_domain/fullbright)
+"KE" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"KR" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Lx" = (
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"LN" = (
+/obj/structure/flora/bush/fullgrass/style_random,
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Mh" = (
+/obj/structure/flora/bush/pale/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"No" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"NG" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"NY" = (
+/obj/structure/flora/tree/stump,
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/misc/dirt/station,
+/area/virtual_domain/fullbright)
+"PA" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"PM" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/dirt/station,
+/area/virtual_domain/fullbright)
+"PX" = (
+/turf/open/misc/dirt/station,
+/area/virtual_domain/fullbright)
+"Qh" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"QA" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"QM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Rl" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/grassy/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Rs" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"RL" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"RY" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/ferny/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Se" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Sm" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"SK" = (
+/obj/structure/flora/rock/pile/jungle/style_random,
+/turf/open/misc/dirt/station,
+/area/virtual_domain/fullbright)
+"SP" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/structure/flora/bush/lavendergrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"SW" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 10
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Tx" = (
+/obj/structure/flora/bush/ferny/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"TF" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/reed/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Vi" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/holofloor/basalt,
+/area/virtual_domain/fullbright)
+"Vt" = (
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"VN" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"XP" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 9
+ },
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"Yw" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/rock/pile/jungle/style_3,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"YF" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"YH" = (
+/obj/structure/flora/bush/stalky/style_random,
+/turf/open/water,
+/area/virtual_domain/fullbright)
+"YY" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 8
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+"Zk" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/structure/flora/bush/fullgrass/style_random,
+/turf/open/floor/grass,
+/area/virtual_domain/fullbright)
+
+(1,1,1) = {"
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+ec
+"}
+(2,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(3,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(4,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+JF
+JF
+JF
+JF
+JF
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+No
+No
+yC
+LN
+LN
+yC
+yC
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(5,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+cS
+JF
+JF
+JF
+JF
+cS
+JF
+JF
+JF
+fK
+fK
+SK
+SK
+PX
+PX
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+No
+nn
+yC
+yC
+AP
+LN
+yC
+aD
+CH
+CH
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(6,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+uk
+YH
+uk
+uk
+uk
+JF
+JF
+JF
+YH
+YH
+uk
+uk
+An
+An
+ep
+PM
+PM
+PM
+SK
+PX
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+CH
+fm
+fm
+fm
+CH
+yC
+yC
+LN
+yC
+yC
+iT
+aD
+nn
+CH
+No
+nn
+yC
+yC
+yC
+yC
+Fm
+fm
+aD
+CH
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(7,1,1) = {"
+VN
+fK
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+Jv
+uk
+uk
+uk
+An
+An
+ep
+PM
+PM
+PM
+tw
+PX
+PX
+SK
+fK
+fK
+LN
+yC
+yC
+CH
+CH
+aD
+Fm
+iT
+aD
+aD
+yC
+yC
+yC
+aD
+iy
+iT
+aD
+aD
+yC
+aD
+yC
+yC
+yC
+yC
+fm
+fm
+CH
+CH
+CH
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(8,1,1) = {"
+VN
+fK
+fK
+uk
+uk
+uk
+uk
+Jv
+uk
+YH
+uk
+uk
+uk
+uk
+uk
+YH
+tZ
+jq
+jq
+tZ
+YH
+uk
+uk
+An
+An
+zd
+oJ
+vF
+PM
+SK
+SK
+SK
+Rl
+LN
+yC
+yC
+yC
+aD
+iT
+aD
+yC
+aD
+Fm
+nn
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+kd
+nn
+nn
+nn
+nn
+aD
+aD
+aD
+nn
+wT
+fm
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(9,1,1) = {"
+VN
+fK
+uk
+uk
+uk
+uk
+JF
+JF
+EW
+JF
+JF
+JF
+uk
+JF
+JF
+fK
+SK
+PX
+PX
+PM
+vN
+YH
+uk
+uk
+aj
+st
+bI
+Jw
+TF
+vF
+PM
+PX
+QM
+yC
+yC
+yC
+yC
+nn
+pn
+aD
+aD
+aD
+aD
+aD
+pn
+pn
+nn
+nn
+aD
+nn
+iT
+pn
+aD
+aD
+aD
+RL
+fm
+aD
+yC
+yC
+AP
+wT
+nn
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(10,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+JF
+JF
+cS
+JF
+JF
+JF
+JF
+JF
+fK
+fK
+fK
+fK
+fK
+PX
+PM
+cZ
+or
+tZ
+jq
+uk
+An
+uk
+uk
+YH
+kj
+PM
+NY
+PM
+lf
+yC
+KE
+aD
+aD
+Jr
+iT
+aD
+aD
+pn
+aD
+aD
+iy
+nn
+nn
+aD
+aD
+kd
+iT
+nn
+aD
+aD
+fm
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+nn
+nn
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(11,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+JF
+fK
+fK
+JF
+JF
+fK
+fK
+fK
+fK
+fK
+fK
+SK
+PX
+tw
+PM
+PM
+BR
+jq
+uk
+uk
+uk
+aj
+PM
+tw
+PX
+Cw
+KE
+aD
+yC
+aD
+aD
+aD
+aD
+nn
+Fm
+Tx
+yC
+yC
+yC
+yC
+yC
+LN
+fm
+pn
+aD
+aD
+nn
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+AP
+aD
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(12,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+aD
+yC
+pJ
+PM
+PM
+PX
+PX
+PX
+PX
+tw
+BR
+uk
+uk
+aj
+PX
+tw
+tw
+Bl
+yC
+aD
+aD
+aD
+aD
+nn
+aD
+aD
+nn
+aD
+yC
+yC
+yC
+AP
+yC
+yC
+nn
+aD
+CH
+nn
+nn
+aD
+aD
+nn
+nn
+aD
+nn
+nn
+nn
+nn
+aD
+aD
+iT
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(13,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+aD
+aD
+pn
+Mh
+LN
+lK
+lK
+rj
+PX
+PX
+PX
+PM
+PM
+bI
+uk
+aj
+PM
+tw
+PX
+Zk
+Mh
+yC
+yC
+aD
+aD
+nn
+aD
+aD
+RL
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+nn
+iy
+yC
+yC
+yC
+aD
+Fm
+iT
+aD
+nn
+aD
+aD
+aD
+aD
+aD
+aD
+Fm
+iT
+nn
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(14,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+nn
+nn
+nn
+aD
+pn
+jo
+fm
+yC
+LN
+LN
+yC
+kX
+xj
+PX
+PX
+PM
+bI
+YH
+aj
+PX
+PX
+PM
+QM
+fm
+yC
+yC
+yC
+aD
+aD
+CH
+aD
+nn
+yC
+yC
+yC
+AP
+yC
+yC
+yC
+nn
+iT
+yC
+yC
+yC
+aD
+iT
+aD
+aD
+aD
+aD
+iy
+fm
+aD
+nn
+nn
+nn
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(15,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+nn
+nn
+nn
+nn
+nn
+nn
+aD
+pn
+yC
+pn
+KE
+KE
+aD
+yC
+oT
+aZ
+tw
+PX
+PX
+bI
+uk
+uk
+IQ
+tw
+PM
+PX
+Rl
+LN
+yC
+yC
+aD
+aD
+iy
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+aD
+pn
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+wT
+aD
+nn
+aD
+aD
+yC
+aD
+aD
+aD
+nn
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(16,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+nn
+nn
+wT
+wT
+nn
+pn
+fm
+fm
+aD
+aD
+aD
+yC
+aD
+aD
+aD
+aZ
+tw
+PM
+Ik
+uk
+uk
+uk
+aj
+tw
+PM
+PX
+Rl
+yC
+yC
+yC
+aD
+aD
+pn
+aD
+aD
+yC
+yC
+yC
+aD
+yC
+aD
+aD
+Fm
+fm
+aD
+yC
+CH
+aD
+aD
+aD
+aD
+Fm
+iT
+aD
+aD
+aD
+aD
+nn
+nn
+aD
+nn
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(17,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+LN
+LN
+yC
+nn
+nn
+RL
+oy
+nn
+aD
+Fm
+nK
+CH
+fm
+yC
+yC
+aD
+aD
+aD
+aZ
+tw
+PM
+Sm
+uk
+uk
+uk
+aj
+tw
+PM
+PX
+rW
+yC
+yC
+aD
+aD
+aD
+Fm
+pn
+aD
+aD
+yC
+aD
+aD
+aD
+aD
+aD
+fm
+fm
+aD
+nn
+aD
+aD
+aD
+nn
+aD
+fm
+fm
+aD
+aD
+Lx
+Lx
+Lx
+Lx
+Lx
+zX
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(18,1,1) = {"
+VN
+fK
+fK
+fK
+yC
+yC
+AP
+iT
+aD
+aD
+iT
+aD
+aD
+pn
+JD
+aD
+pn
+Fm
+iT
+aD
+yC
+yC
+aD
+kG
+PX
+PX
+Sm
+uk
+Jv
+YH
+aj
+PM
+tw
+wq
+aD
+yC
+aD
+aD
+aD
+nn
+CH
+CH
+aD
+aD
+aD
+aD
+aD
+Fm
+aD
+nn
+nn
+aD
+aD
+aD
+aD
+nn
+nn
+aD
+aD
+aD
+aD
+aD
+fm
+Lx
+gT
+lQ
+Lx
+Lx
+Lx
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(19,1,1) = {"
+VN
+fK
+fK
+fK
+yC
+yC
+yC
+aD
+nn
+nn
+CH
+aD
+fm
+aD
+aD
+aD
+xE
+iT
+pn
+aD
+yC
+yC
+KE
+KE
+SP
+PX
+BR
+uk
+uk
+uk
+aj
+PM
+tw
+Zk
+Mh
+aD
+aD
+aD
+aD
+aD
+CH
+nn
+aD
+aD
+Fm
+pn
+aD
+aD
+aD
+aD
+aD
+aD
+iy
+wT
+aD
+nn
+kq
+sx
+kq
+aD
+sx
+Az
+sx
+Lx
+Lx
+Lx
+Lx
+Lx
+Lx
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(20,1,1) = {"
+VN
+fK
+fK
+fK
+yC
+yC
+yC
+aD
+nn
+nn
+aD
+fm
+fm
+fm
+aD
+nn
+nn
+aD
+aD
+aD
+iy
+iT
+aD
+KE
+kG
+PX
+PM
+bI
+uk
+uk
+aj
+PM
+tw
+lf
+yC
+yC
+yC
+CH
+nn
+aD
+aD
+bG
+aD
+nn
+pn
+aD
+aD
+yC
+yC
+yC
+aD
+aD
+fm
+Az
+sx
+Vt
+PX
+PX
+PX
+ic
+PX
+PM
+PX
+Lx
+Lx
+Lx
+Lx
+Lx
+Lx
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(21,1,1) = {"
+VN
+fK
+fK
+fK
+yr
+fm
+aD
+aD
+nn
+nn
+kd
+yC
+Jr
+fm
+fm
+nn
+nn
+aD
+fm
+fm
+iT
+aD
+aD
+yC
+aZ
+PX
+PM
+vN
+YH
+uk
+aj
+PM
+PX
+Rl
+LN
+yC
+aD
+aD
+aD
+aD
+yC
+aD
+aD
+yC
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+aD
+fa
+PX
+PX
+rW
+YF
+NG
+PX
+PX
+PX
+PX
+wq
+Lx
+Lx
+Lx
+Lx
+Lx
+Lx
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(22,1,1) = {"
+VN
+fK
+fK
+fK
+yC
+aD
+nn
+aD
+aD
+aD
+yC
+yC
+yC
+aD
+Jr
+aD
+aD
+pn
+Fm
+fm
+pn
+aD
+nn
+yC
+aZ
+PM
+PM
+vN
+Jw
+uk
+aj
+PX
+PX
+lF
+LN
+LN
+nn
+nn
+aD
+aD
+aD
+aD
+aD
+aD
+nn
+nn
+nn
+AP
+yC
+yC
+yC
+PA
+PM
+PX
+wq
+yC
+aD
+aD
+cL
+YF
+YF
+bd
+fm
+Lx
+Dk
+Lx
+od
+Lx
+Lx
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(23,1,1) = {"
+VN
+fK
+fK
+fK
+fm
+fm
+nn
+Fm
+yC
+yC
+yC
+yC
+yC
+nn
+nn
+aD
+aD
+pn
+fm
+nn
+nn
+nn
+aD
+fm
+fm
+ce
+PM
+cZ
+Jw
+YH
+aj
+tw
+PX
+PX
+Zk
+aD
+nn
+nn
+nn
+aD
+aD
+Jr
+nn
+aD
+nn
+nn
+nn
+aD
+yC
+sx
+Vt
+PX
+PX
+Be
+aD
+yC
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+Lx
+Lx
+Lx
+Lx
+Lx
+AM
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(24,1,1) = {"
+VN
+fK
+fK
+fK
+Fm
+fm
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+nn
+nn
+nn
+nn
+aD
+aD
+yC
+yC
+yC
+aD
+Mh
+fm
+hH
+PX
+PM
+cZ
+uk
+uk
+ep
+PM
+PX
+Bn
+aD
+nn
+nn
+nn
+nn
+aD
+aD
+aD
+yC
+aD
+aD
+aD
+aD
+Vt
+PX
+rW
+bd
+bd
+aD
+yC
+yC
+yC
+aD
+aD
+aD
+fm
+pn
+aD
+aD
+aD
+nn
+nn
+nn
+aD
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(25,1,1) = {"
+VN
+fK
+fK
+fK
+iT
+aD
+RL
+pn
+nn
+yC
+yC
+AP
+nn
+nn
+aD
+aD
+aD
+Fm
+yC
+yC
+oT
+yC
+yC
+aD
+yC
+aZ
+PX
+PM
+PX
+nE
+uk
+uk
+ep
+PX
+PX
+Ib
+yC
+yC
+nn
+nn
+aD
+aD
+aD
+aD
+pn
+pn
+nn
+aD
+aD
+YF
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+nn
+aD
+Fm
+iT
+aD
+yC
+aD
+pn
+fm
+fm
+aD
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(26,1,1) = {"
+VN
+fK
+fK
+aD
+aD
+aD
+iT
+aD
+nn
+yC
+yC
+yC
+nn
+aD
+aD
+iy
+aD
+aD
+aD
+yC
+oT
+yC
+aD
+aD
+yC
+yC
+SP
+PX
+tw
+PM
+BR
+uk
+ph
+tw
+PX
+rW
+yC
+yC
+yC
+nn
+aD
+nn
+aD
+aD
+aD
+Fm
+pn
+aD
+aD
+yC
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+nn
+aD
+iT
+nn
+aD
+aD
+aD
+nn
+iy
+fm
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(27,1,1) = {"
+VN
+fK
+fK
+aD
+nn
+nn
+pn
+aD
+nn
+nn
+nn
+yC
+nn
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+AP
+fm
+yC
+aD
+CH
+KE
+KE
+SP
+PX
+PM
+PX
+sq
+PX
+PX
+Es
+aD
+yC
+yC
+yC
+aD
+aD
+aD
+aD
+aD
+aD
+pn
+aD
+aD
+yC
+aD
+aD
+nn
+nn
+nn
+yC
+yC
+yC
+rx
+wT
+pn
+aD
+aD
+aD
+aD
+pn
+iT
+iT
+nn
+nn
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(28,1,1) = {"
+VN
+fK
+fK
+CH
+nn
+nn
+Fm
+fm
+aD
+nn
+rx
+aD
+aD
+nn
+aD
+nn
+nn
+nn
+aD
+fm
+fm
+yC
+yC
+yC
+aD
+aD
+yC
+kG
+PX
+tw
+PX
+sq
+tw
+PX
+Zk
+aD
+yC
+yC
+aD
+aD
+aD
+Fm
+aD
+aD
+nn
+nn
+aD
+aD
+aD
+aD
+nn
+iy
+aD
+aD
+nn
+yC
+nn
+wT
+nn
+aD
+aD
+aD
+aD
+aD
+pn
+Fm
+iT
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(29,1,1) = {"
+VN
+fK
+fK
+CH
+nn
+nn
+fm
+pn
+fm
+fm
+aD
+aD
+aD
+aD
+Fm
+nn
+nn
+nn
+nn
+aD
+aD
+aD
+yC
+yC
+aD
+yC
+yC
+yC
+rj
+PX
+tw
+uN
+PM
+Co
+KE
+aD
+aD
+yC
+aD
+aD
+aD
+aD
+aD
+aD
+yC
+yC
+yC
+aD
+aD
+aD
+iT
+aD
+aD
+Fm
+aD
+aD
+nn
+aD
+aD
+aD
+Fm
+aD
+aD
+yC
+aD
+fm
+fm
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(30,1,1) = {"
+VN
+fK
+fK
+CH
+CH
+aD
+aD
+nn
+iT
+Fm
+fm
+aD
+aD
+aD
+iT
+nn
+nn
+nn
+fm
+pn
+nn
+aD
+aD
+yC
+aD
+aD
+yC
+aD
+Vt
+PX
+PX
+uN
+PM
+Se
+yC
+yC
+aD
+aD
+aD
+nn
+nn
+aD
+yC
+yC
+yr
+yC
+yC
+aD
+aD
+aD
+kd
+iT
+aD
+aD
+aD
+fm
+fm
+aD
+nn
+aD
+aD
+aD
+yC
+yC
+aD
+aD
+aD
+aD
+aD
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(31,1,1) = {"
+VN
+fK
+fK
+CH
+aD
+aD
+aD
+aD
+aD
+iT
+aD
+nn
+nn
+nn
+aD
+aD
+aD
+aD
+kd
+fm
+nn
+aD
+aD
+iT
+yC
+aD
+aD
+yC
+aZ
+tw
+PM
+uN
+PM
+PX
+Zk
+yC
+aD
+aD
+aD
+nn
+nn
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+aD
+nn
+nn
+nn
+nn
+aD
+aD
+aD
+Fm
+iT
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+aD
+pn
+pn
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(32,1,1) = {"
+VN
+fK
+fK
+fK
+aD
+fm
+nn
+nn
+nn
+aD
+aD
+nn
+RL
+nn
+CH
+aD
+aD
+aD
+fm
+fm
+aD
+aD
+iT
+Fm
+pn
+aD
+yC
+yC
+aZ
+PX
+PM
+Js
+tw
+PX
+Bn
+aD
+aD
+aD
+aD
+nn
+nn
+aD
+nn
+nn
+Fm
+yC
+yC
+aD
+aD
+nn
+nn
+nn
+nn
+aD
+aD
+nn
+fm
+aD
+yC
+AP
+yC
+yC
+yC
+yC
+yC
+yC
+Gt
+nn
+Jr
+fm
+fK
+fK
+fK
+fK
+VN
+"}
+(33,1,1) = {"
+VN
+fK
+fK
+fK
+aD
+iy
+wT
+nn
+nn
+pn
+aD
+aD
+iT
+aD
+aD
+yC
+nn
+nn
+nn
+aD
+aD
+aD
+nn
+iT
+aD
+aD
+aD
+yC
+aZ
+PX
+PX
+Yw
+PX
+tw
+PX
+Zk
+yC
+aD
+aD
+RL
+yC
+aD
+aD
+aD
+nn
+nn
+nn
+kd
+aD
+aD
+No
+nn
+aD
+aD
+aD
+aD
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+AP
+wT
+nn
+fm
+aD
+fK
+fK
+fK
+fK
+VN
+"}
+(34,1,1) = {"
+VN
+fK
+fK
+fK
+aD
+nn
+fm
+aD
+aD
+Fm
+bG
+aD
+nn
+nn
+nn
+rx
+yC
+yC
+yC
+nn
+aD
+aD
+aD
+aD
+nn
+nn
+nn
+Mh
+hH
+PX
+PX
+bI
+ep
+tw
+PM
+Zk
+yC
+yC
+aD
+yC
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+iy
+dk
+nn
+aD
+kd
+nn
+aD
+aD
+yC
+LN
+yC
+dk
+yC
+yC
+yC
+oT
+nn
+nn
+aD
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(35,1,1) = {"
+VN
+fK
+fK
+fK
+aD
+aD
+aD
+aD
+aD
+pn
+pn
+yC
+yC
+yC
+yC
+nn
+yC
+yC
+yC
+nn
+RL
+aD
+aD
+aD
+yC
+yC
+yC
+fm
+hH
+PX
+tw
+bI
+ph
+PX
+PM
+Zk
+yC
+aD
+aD
+aD
+aD
+yC
+aD
+aD
+nn
+aD
+aD
+aD
+aD
+aD
+yC
+yC
+nn
+aD
+aD
+aD
+aD
+Gt
+nn
+rx
+LN
+yC
+yC
+yC
+yC
+yC
+nn
+nn
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(36,1,1) = {"
+VN
+fK
+fK
+aD
+yC
+aD
+kd
+aD
+aD
+aD
+pn
+yC
+yC
+yC
+yC
+nn
+yC
+yC
+yC
+aD
+iT
+aD
+Fm
+yC
+yC
+yC
+LN
+fm
+we
+PM
+tw
+uN
+PM
+PX
+PM
+rW
+aD
+aD
+nn
+nn
+nn
+aD
+aD
+kd
+aD
+aD
+aD
+rx
+nn
+nn
+yC
+yC
+nn
+aD
+iT
+iT
+aD
+pn
+nn
+nn
+yC
+nn
+yC
+yC
+AP
+nn
+nn
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(37,1,1) = {"
+VN
+fK
+fK
+yC
+yC
+yC
+yC
+aD
+yC
+aD
+Fm
+pn
+aD
+aD
+aD
+yC
+aD
+nn
+nn
+nn
+aD
+aD
+aD
+aD
+yC
+yC
+yC
+hH
+PX
+PM
+PX
+uN
+PM
+PX
+Es
+aD
+Mh
+fm
+yC
+yC
+nn
+nn
+nn
+aD
+aD
+aD
+aD
+nn
+nn
+yC
+yC
+yC
+yC
+yC
+rx
+iT
+aD
+aD
+pn
+iT
+aD
+RL
+yC
+yC
+yC
+nn
+aD
+pn
+fm
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(38,1,1) = {"
+VN
+fK
+fK
+yC
+LN
+LN
+yC
+aD
+yC
+aD
+pn
+pn
+aD
+aD
+aD
+aD
+Fm
+fm
+aD
+aD
+iy
+fm
+aD
+aD
+aD
+yC
+aD
+Vt
+PX
+PX
+XP
+aj
+PM
+PX
+QM
+rO
+Mh
+aD
+yC
+yC
+yC
+aD
+aD
+aD
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+iT
+aD
+aD
+iy
+aD
+aD
+aD
+iT
+aD
+nn
+nn
+nn
+aD
+pn
+kd
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(39,1,1) = {"
+VN
+fK
+fK
+yC
+AP
+LN
+LN
+aD
+yC
+yC
+RL
+pn
+nn
+aD
+aD
+nn
+fm
+fm
+aD
+aD
+fm
+fm
+aD
+aD
+Jr
+fm
+aD
+yC
+IC
+PX
+SK
+bI
+ep
+PX
+PX
+PX
+Zk
+yC
+yC
+yC
+yC
+yC
+aD
+nn
+kd
+aD
+yC
+yC
+AP
+yC
+yC
+yC
+yC
+yC
+aD
+aD
+aD
+iT
+iT
+aD
+aD
+aD
+aD
+iT
+iT
+aD
+aD
+aD
+iT
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(40,1,1) = {"
+VN
+fK
+fK
+yC
+yC
+yC
+kd
+nn
+yC
+yC
+nn
+aD
+nn
+aD
+fm
+fm
+aD
+aD
+nn
+nn
+aD
+aD
+nn
+aD
+fm
+aD
+yC
+yC
+aZ
+PX
+PX
+bI
+zb
+PM
+PX
+PX
+Zk
+fm
+yC
+yC
+yC
+aD
+iT
+aD
+aD
+aD
+aD
+yC
+iT
+yC
+yC
+yC
+AP
+yC
+aD
+aD
+aD
+rx
+nn
+nn
+aD
+nn
+pn
+kd
+iT
+aD
+aD
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(41,1,1) = {"
+VN
+fK
+aD
+yC
+yC
+yC
+aD
+nn
+yC
+yC
+nn
+aD
+aD
+aD
+Fm
+yC
+yC
+aD
+nn
+nn
+Fm
+fm
+aD
+aD
+KE
+aD
+aD
+yC
+aZ
+PX
+PM
+BR
+YH
+vF
+PM
+PX
+Bn
+aD
+aD
+yC
+nn
+nn
+Fm
+iT
+CH
+aD
+aD
+aD
+aD
+iT
+yC
+yC
+yC
+aD
+aD
+nn
+nn
+nn
+nn
+nn
+aD
+aD
+pn
+pn
+aD
+nn
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(42,1,1) = {"
+VN
+fK
+yC
+yC
+RL
+aD
+aD
+nn
+yC
+oT
+nn
+aD
+aD
+aD
+yC
+yC
+yr
+aD
+aD
+aD
+aD
+aD
+aD
+fm
+fm
+aD
+aD
+RY
+kG
+PX
+PM
+PX
+bI
+Jw
+vF
+PM
+PX
+Zk
+yC
+aD
+nn
+nn
+iT
+iy
+iT
+nn
+aD
+nn
+pn
+Fm
+yC
+yC
+yC
+aD
+aD
+aD
+aD
+nn
+nn
+iT
+aD
+aD
+aD
+yC
+yC
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(43,1,1) = {"
+VN
+fK
+yC
+yC
+Gt
+aD
+aD
+nn
+nn
+AP
+nn
+aD
+Jr
+aD
+aD
+aD
+aD
+aD
+nn
+nn
+nn
+aD
+aD
+Jr
+oT
+aD
+KE
+RY
+eE
+PX
+PM
+PM
+bI
+YH
+sZ
+PM
+PX
+Zk
+yC
+aD
+nn
+aD
+aD
+iT
+aD
+aD
+aD
+nn
+pn
+iT
+iT
+yC
+aD
+aD
+aD
+rx
+iT
+aD
+iy
+iT
+aD
+pn
+yC
+dk
+yC
+yC
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(44,1,1) = {"
+VN
+fK
+fK
+aD
+nn
+aD
+nn
+nn
+yC
+oT
+yC
+nn
+aD
+aD
+aD
+fm
+fm
+aD
+nn
+nn
+nn
+nn
+aD
+oT
+yC
+nn
+aD
+KE
+Qh
+PX
+PX
+PX
+Sm
+uk
+DM
+PX
+tw
+Zk
+yC
+aD
+nn
+aD
+nn
+nn
+nn
+aD
+yC
+aD
+aD
+pn
+pn
+aD
+aD
+aD
+aD
+iT
+aD
+aD
+aD
+aD
+aD
+kd
+yC
+yC
+yC
+yC
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(45,1,1) = {"
+VN
+fK
+fK
+aD
+aD
+Jr
+Gt
+nn
+yC
+yC
+yC
+nn
+aD
+aD
+fm
+Fm
+fm
+yC
+yC
+yC
+rx
+wT
+yC
+yC
+yC
+nn
+aD
+aZ
+PM
+PX
+KR
+TF
+YH
+aj
+tw
+PX
+PM
+rW
+CH
+aD
+yC
+yC
+yC
+aD
+aD
+aD
+aD
+pn
+aD
+aD
+Jr
+iT
+nn
+nn
+aD
+yC
+aD
+yC
+yC
+aD
+yC
+yC
+yC
+AP
+dk
+yC
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(46,1,1) = {"
+VN
+fK
+fK
+fK
+nn
+aD
+aD
+nn
+yC
+AP
+yC
+aD
+aD
+wT
+fm
+oT
+oT
+yC
+yC
+yC
+nn
+nn
+aD
+yC
+yC
+nn
+KE
+aZ
+PX
+PX
+tw
+Sm
+uk
+aj
+tw
+PX
+wq
+aD
+aD
+aD
+yC
+yC
+yC
+yC
+aD
+nn
+aD
+kd
+nn
+aD
+pn
+aD
+aD
+pn
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(47,1,1) = {"
+VN
+fK
+fK
+fK
+nn
+aD
+nn
+aD
+nn
+aD
+aD
+aD
+aD
+yC
+yC
+yC
+yC
+yC
+yC
+yC
+aD
+aD
+Fm
+aD
+aD
+bG
+aD
+Vt
+PX
+PM
+Ik
+uk
+uk
+ph
+PX
+Es
+yC
+iT
+iy
+yC
+aD
+yC
+aD
+Fm
+av
+aD
+pn
+pn
+pn
+nn
+aD
+aD
+iT
+iT
+pn
+nn
+nn
+nn
+rx
+nn
+yC
+yC
+yC
+yC
+yC
+yC
+iT
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(48,1,1) = {"
+VN
+fK
+fK
+fK
+nn
+aD
+aD
+kd
+pn
+aD
+aD
+aD
+rx
+nn
+nn
+AP
+yC
+yC
+yC
+oT
+yC
+aD
+aD
+nn
+nn
+aD
+yC
+PA
+PX
+Ik
+uk
+uk
+aj
+PX
+PX
+Zk
+yC
+aD
+iT
+yC
+yC
+yC
+aD
+iT
+pn
+nn
+aD
+aD
+nn
+aD
+aD
+nn
+aD
+Fm
+iT
+aD
+aD
+aD
+fm
+fm
+nn
+nn
+yC
+yC
+yC
+AP
+iT
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(49,1,1) = {"
+VN
+fK
+fK
+CH
+nn
+aD
+pn
+pn
+aD
+aD
+nn
+aD
+pn
+aD
+nn
+nn
+yC
+yC
+yC
+Fm
+fm
+fm
+aD
+aD
+aD
+yC
+aZ
+PX
+PX
+bI
+uk
+YH
+aj
+PM
+FC
+aD
+aD
+aD
+aD
+yC
+aD
+yC
+yC
+yC
+aD
+aD
+aD
+nn
+aD
+aD
+aD
+aD
+pn
+iT
+aD
+aD
+aD
+yC
+CH
+aD
+aD
+nn
+nn
+yC
+aD
+iT
+pn
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(50,1,1) = {"
+VN
+fK
+fK
+nn
+aD
+aD
+aD
+yC
+yC
+CH
+aD
+nn
+aD
+aD
+aD
+pn
+nn
+nn
+nn
+fm
+fm
+aD
+aD
+aD
+Fm
+yC
+aZ
+PX
+PM
+bI
+uk
+uk
+ph
+PM
+Zk
+yC
+Mh
+fm
+aD
+yC
+aD
+yC
+yC
+yC
+aD
+yC
+aD
+aD
+yC
+aD
+Mh
+fm
+aD
+pn
+aD
+aD
+yr
+yC
+aD
+pn
+pn
+aD
+nn
+nn
+nn
+aD
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(51,1,1) = {"
+VN
+fK
+fK
+No
+aD
+aD
+nn
+yC
+AP
+aD
+aD
+aD
+iT
+aD
+aD
+iy
+pn
+aD
+aD
+aD
+aD
+nn
+aD
+aD
+yC
+yC
+aZ
+PX
+PM
+bI
+uk
+aj
+PX
+PX
+Zk
+yC
+fm
+fm
+fm
+aD
+KE
+yC
+yC
+yC
+aD
+nn
+Jr
+yC
+yC
+yC
+fm
+fm
+Mh
+Jr
+yC
+aD
+yC
+yC
+LN
+fm
+kd
+fm
+aD
+kd
+aD
+aD
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(52,1,1) = {"
+VN
+fK
+fK
+nn
+aD
+aD
+nn
+nn
+nn
+aD
+aD
+aD
+Fm
+Gt
+nn
+nn
+aD
+aD
+nn
+aD
+HT
+aD
+aD
+iT
+aD
+yC
+aZ
+PX
+PM
+bI
+uk
+aj
+tw
+PX
+DT
+vS
+rO
+rO
+rO
+sx
+aD
+KE
+KE
+aD
+KE
+sx
+sx
+vS
+vS
+vS
+rO
+uA
+fm
+aD
+yC
+aD
+yC
+yC
+nn
+fm
+fm
+aD
+aD
+aD
+nn
+pn
+nn
+fm
+nn
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(53,1,1) = {"
+VN
+fK
+fK
+nn
+nn
+RL
+aD
+aD
+aD
+aD
+aD
+aD
+aD
+yC
+nn
+nn
+nn
+aD
+Jr
+HT
+yC
+yC
+aD
+Fm
+iT
+yC
+aZ
+PX
+PX
+bI
+uk
+aj
+PX
+PM
+PM
+PM
+tw
+tw
+tw
+PX
+Se
+kM
+kM
+aD
+PA
+PX
+tw
+PX
+PM
+tw
+PX
+PX
+lF
+vS
+yC
+yC
+KE
+aD
+bG
+aD
+aD
+nn
+aD
+aD
+aD
+aD
+RL
+fm
+nn
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(54,1,1) = {"
+VN
+fK
+fK
+fK
+nn
+nn
+aD
+Fm
+CH
+bG
+aD
+HT
+HT
+HT
+aD
+HT
+aD
+HT
+aD
+aD
+yC
+yC
+fm
+fm
+fm
+aD
+Vt
+PM
+tw
+BR
+uk
+uk
+An
+An
+ep
+PX
+PX
+PM
+PM
+PX
+PX
+PX
+PX
+fZ
+PM
+PX
+PX
+PM
+PM
+PM
+PX
+PX
+PX
+PX
+QM
+vS
+sx
+KE
+yC
+KE
+aD
+nn
+aD
+nn
+fm
+aD
+fm
+nn
+nn
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(55,1,1) = {"
+VN
+fK
+fK
+fK
+nn
+nn
+aD
+aD
+iT
+aD
+HT
+HT
+HT
+HT
+HT
+aD
+yC
+aD
+aD
+nn
+aD
+aD
+yC
+aD
+aD
+fm
+hH
+PX
+PX
+PM
+jc
+uk
+uk
+uk
+uk
+An
+oJ
+TF
+TF
+vF
+PM
+PM
+tw
+PX
+tw
+PX
+Ik
+An
+An
+ep
+PM
+PX
+tw
+tw
+PM
+PM
+PX
+xw
+aD
+KE
+yC
+nn
+aD
+aD
+kd
+fm
+CH
+No
+nn
+nn
+fK
+fK
+fK
+fK
+VN
+"}
+(56,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+aD
+aD
+aD
+Fm
+iT
+HT
+HT
+HT
+HT
+HT
+HT
+aD
+aD
+Fm
+fm
+aD
+nn
+aD
+nn
+aD
+fm
+fm
+tM
+PX
+PX
+br
+YH
+uk
+uk
+Jv
+uk
+uk
+YH
+YH
+sZ
+PM
+PM
+PX
+SK
+Ik
+An
+uk
+uk
+uk
+uk
+oJ
+ep
+tw
+tw
+tw
+PX
+PM
+Zk
+yC
+yC
+aD
+KE
+aD
+aD
+fm
+No
+CH
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(57,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+yC
+yC
+yC
+aD
+HT
+HT
+HT
+zr
+HT
+HT
+HT
+aD
+aD
+fm
+fm
+fm
+aD
+aD
+iT
+fm
+aD
+fm
+Mh
+rj
+PX
+cZ
+lN
+YH
+uk
+uk
+uk
+uk
+uk
+uk
+YH
+oJ
+oJ
+An
+An
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+An
+ep
+PM
+PX
+PM
+QM
+yC
+yC
+aD
+nn
+nn
+nn
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(58,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+yC
+yC
+yr
+aD
+aD
+HT
+HT
+HT
+HT
+HT
+HT
+aD
+aD
+nn
+nn
+aD
+nn
+iT
+iy
+fm
+aD
+yC
+yC
+Vt
+PX
+PX
+PM
+nE
+jq
+jq
+jq
+jq
+jq
+uk
+uk
+uk
+jq
+uk
+uk
+uk
+uk
+jq
+tZ
+tZ
+jq
+uk
+uk
+uk
+uk
+ep
+PX
+NY
+tw
+rW
+aD
+aD
+nn
+nn
+nn
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(59,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+yC
+yC
+yC
+yC
+yC
+aD
+HT
+HT
+HT
+HT
+aD
+aD
+aD
+yC
+AP
+yC
+nn
+aD
+iT
+aD
+nn
+yC
+yC
+aD
+rj
+PX
+PM
+PM
+PX
+PM
+PM
+PM
+tw
+BR
+uk
+aj
+st
+bI
+uk
+jq
+ph
+PX
+tw
+PM
+PM
+BR
+uk
+uk
+uk
+aj
+PM
+PX
+PM
+Bn
+yC
+CH
+CH
+CH
+aD
+nn
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(60,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+AP
+LN
+yC
+yC
+oT
+HT
+HT
+aD
+pn
+pn
+HT
+aD
+yC
+yC
+yC
+yC
+nn
+Fm
+aD
+nn
+nn
+yC
+yC
+nn
+aD
+rj
+PX
+PX
+SW
+PM
+PM
+PM
+PM
+PX
+BR
+jq
+Rs
+tZ
+ph
+PX
+PX
+PX
+PM
+tw
+PX
+PM
+vN
+YH
+uk
+uk
+IQ
+PM
+PX
+PM
+Zk
+dk
+dk
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(61,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fm
+aD
+yC
+oT
+Fm
+iT
+aD
+nn
+pn
+aD
+aD
+aD
+yr
+yC
+yC
+yC
+nn
+fm
+aD
+nn
+nn
+nn
+AP
+yC
+yC
+aD
+QA
+QA
+kG
+PX
+PM
+tw
+PX
+NY
+PX
+PM
+PM
+PM
+PX
+PX
+PX
+PX
+PX
+wq
+IC
+PM
+vN
+Jw
+uk
+uk
+kj
+PM
+PX
+PX
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(62,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+CH
+aD
+aD
+aD
+aD
+aD
+iy
+iT
+aD
+HT
+yC
+fm
+fm
+fm
+aD
+aD
+pn
+fm
+aD
+aD
+nn
+nn
+yC
+yC
+yC
+iT
+aD
+KE
+KE
+bd
+bd
+YY
+IC
+PM
+PM
+PX
+PX
+PX
+Es
+YY
+YY
+bd
+bd
+aD
+aZ
+PM
+cZ
+or
+YH
+uk
+uk
+An
+vF
+PX
+SK
+SK
+bU
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(63,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+nn
+aD
+aD
+yC
+yC
+yC
+yC
+Fm
+aD
+aD
+aD
+nn
+AP
+aD
+aD
+pn
+Fm
+iT
+CH
+aD
+nn
+nn
+nn
+RL
+nn
+aD
+yC
+yC
+yC
+nn
+yC
+yC
+bd
+YY
+YY
+YY
+cL
+yC
+yC
+yC
+yC
+aD
+KE
+kG
+PX
+PM
+PM
+Sm
+uk
+uk
+uk
+kj
+PM
+PX
+BS
+JF
+cS
+JF
+JF
+JF
+JF
+JF
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(64,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+nn
+aD
+aD
+yC
+yC
+yC
+aD
+nn
+nn
+nn
+fm
+aD
+nn
+aD
+yC
+aD
+iT
+fm
+nn
+aD
+aD
+aD
+aD
+yC
+aD
+aD
+yC
+yC
+aD
+nn
+yC
+yC
+aD
+yC
+yC
+yC
+fm
+fm
+Mh
+fm
+aD
+KE
+KE
+KE
+rj
+PX
+PX
+BR
+jq
+jq
+jq
+uk
+An
+An
+uk
+uk
+uk
+uk
+JF
+JF
+JF
+JF
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(65,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+nn
+aD
+aD
+aD
+AP
+iT
+aD
+nn
+nn
+nn
+Fm
+iT
+nn
+yC
+yC
+yC
+yC
+aD
+aD
+fm
+fm
+fm
+aD
+aD
+aD
+fm
+nn
+nn
+aD
+aD
+aD
+aD
+Fm
+fm
+fm
+fm
+yC
+yC
+aD
+Jr
+fm
+aD
+aD
+yC
+aZ
+PM
+PX
+PM
+PM
+PX
+PX
+bI
+uk
+uk
+uk
+uk
+uk
+YH
+JF
+JF
+EW
+JF
+JF
+JF
+JF
+fK
+fK
+fK
+VN
+"}
+(66,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+RL
+Gt
+aD
+aD
+iT
+aD
+pn
+nn
+nn
+nn
+iT
+fm
+nn
+yC
+yC
+yC
+yC
+aD
+aD
+aD
+Fm
+nn
+nn
+nn
+aD
+aD
+Fm
+fm
+aD
+nn
+nn
+fm
+fm
+fm
+aD
+fm
+yC
+yC
+aD
+aD
+uh
+yC
+CH
+yC
+yC
+fK
+PX
+PX
+PX
+PX
+tw
+BR
+uk
+YH
+YH
+uk
+uk
+uk
+uk
+uk
+JF
+JF
+JF
+EW
+JF
+fK
+fK
+fK
+VN
+"}
+(67,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+wT
+nn
+aD
+CH
+aD
+aD
+iy
+fm
+aD
+nn
+yC
+nn
+yC
+yC
+yC
+AP
+yC
+yC
+nn
+aD
+fm
+nn
+nn
+nn
+aD
+aD
+fm
+fm
+aD
+Fm
+aD
+aD
+aD
+nn
+nn
+aD
+aD
+aD
+Fm
+fm
+yC
+yC
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+SK
+PX
+PX
+Vi
+JF
+JF
+JF
+Jv
+uk
+uk
+uk
+YH
+YH
+uk
+uk
+uk
+JF
+fK
+fK
+VN
+"}
+(68,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+CH
+aD
+aD
+iT
+aD
+aD
+kd
+yC
+yC
+AP
+yC
+yC
+yC
+yC
+uh
+yC
+nn
+aD
+aD
+nn
+nn
+nn
+nn
+aD
+nn
+CH
+CH
+nn
+nn
+nn
+CH
+nn
+nn
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+SK
+PX
+SK
+bU
+JF
+JF
+JF
+JF
+YH
+uk
+uk
+uk
+uk
+uk
+uk
+uk
+fK
+fK
+VN
+"}
+(69,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+nn
+aD
+nn
+rx
+iT
+aD
+aD
+yC
+yC
+LN
+yC
+yC
+dk
+yC
+yC
+yC
+nn
+aD
+aD
+nn
+RL
+nn
+nn
+aD
+aD
+No
+No
+nn
+nn
+No
+CH
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+JF
+EW
+JF
+JF
+JF
+JF
+uk
+uk
+uk
+uk
+uk
+Jv
+uk
+uk
+fK
+VN
+"}
+(70,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+lh
+iT
+iT
+iT
+CH
+aD
+aD
+nn
+rx
+LN
+yC
+yC
+yC
+yC
+yC
+aD
+Fm
+aD
+aD
+CH
+CH
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+JF
+JF
+JF
+JF
+JF
+JF
+JF
+JF
+JF
+fK
+uk
+uk
+uk
+uk
+fK
+VN
+"}
+(71,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+aD
+nn
+wT
+fm
+CH
+nn
+wT
+nn
+nn
+aD
+aD
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+cS
+JF
+JF
+JF
+JF
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(72,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(73,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(74,1,1) = {"
+VN
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+fK
+VN
+"}
+(75,1,1) = {"
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+VN
+"}
diff --git a/_maps/virtual_domains/meta_central.dmm b/_maps/virtual_domains/meta_central.dmm
new file mode 100644
index 00000000000..bf821cc6e34
--- /dev/null
+++ b/_maps/virtual_domains/meta_central.dmm
@@ -0,0 +1,8434 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ab" = (
+/obj/machinery/newscaster/directional/west,
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = -4
+ },
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"ac" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ai" = (
+/obj/structure/broken_flooring/corner/always_floorplane/directional/south,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"an" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ name = "Showroom Shutters"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"as" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ name = "Showroom Shutters"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"at" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/item/storage/box/mothic_rations{
+ pixel_y = -9;
+ pixel_x = 6
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"au" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/toy/figure/detective{
+ pixel_y = 13
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"av" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"aw" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor/right/directional/north{
+ name = "Head of Personnel's Desk";
+ req_access = list("hop")
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "hop";
+ name = "Privacy Shutters"
+ },
+/obj/structure/desk_bell{
+ pixel_x = 7
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ay" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/item/surgicaldrill,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"aA" = (
+/obj/item/restraints/legcuffs/beartrap/prearmed,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"aC" = (
+/obj/structure/fluff/paper/stack,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"aO" = (
+/obj/structure/toilet{
+ pixel_y = 13
+ },
+/obj/machinery/light/directional/south,
+/obj/machinery/light_switch/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/iron/white,
+/area/virtual_domain)
+"aQ" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/effect/decal/cleanable/food/egg_smudge,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"aT" = (
+/obj/effect/mob_spawn/ghost_role/human/pirate/skeleton/captain,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"aV" = (
+/obj/structure/flora/bush/large/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"aZ" = (
+/obj/machinery/airalarm/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/robot_debris/limb,
+/obj/machinery/exoscanner,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ba" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"bb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/spawner/random/trash,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bd" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor4"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"bf" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor7"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bg" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bl" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bm" = (
+/obj/item/clothing/mask/surgical,
+/obj/effect/mob_spawn/corpse/human/doctor,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"br" = (
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"bs" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/assembly/flash,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bu" = (
+/obj/structure/railing{
+ dir = 10
+ },
+/obj/structure/bonfire/prelit,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"bw" = (
+/obj/effect/decal/cleanable/blood/footprints{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"bO" = (
+/obj/structure/bed/maint,
+/obj/item/bedsheet/pirate,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"bP" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L6"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bQ" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/item/ai_module/malf,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bR" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bS" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bT" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/stock_parts/subspace/filter{
+ pixel_x = 15
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"bU" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"bW" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"bZ" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 9
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/effect/turf_decal/caution/red,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cj" = (
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ck" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L3"
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "w";
+ pixel_y = -15;
+ pixel_x = -17
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "e";
+ pixel_y = -16;
+ pixel_x = -2
+ },
+/obj/effect/decal/cleanable/blood{
+ pixel_y = -13
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cp" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/holosign/barrier,
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cr" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cx" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/item/kirbyplants/organic/plant16,
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cB" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cC" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cD" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"cF" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"cH" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/obj/structure/flora/bush/large/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"cI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 5;
+ pixel_y = 7
+ },
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cK" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cN" = (
+/obj/structure/sign/departments/court/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/barricade/security,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"cO" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/item/trash/fleet_ration,
+/obj/effect/decal/cleanable/food/egg_smudge,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"cW" = (
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"cZ" = (
+/obj/machinery/button/door/directional/west{
+ name = "Privacy Shutters Control"
+ },
+/obj/structure/chair/office{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"db" = (
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"dc" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"dd" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"di" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"dk" = (
+/obj/machinery/button/door/directional/south{
+ name = "E.V.A. Storage Shutter Control"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/suit_storage_unit/void_old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"dl" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"dz" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/bed/dogbed/ian,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"dA" = (
+/obj/structure/holosign/barrier/medical,
+/turf/closed/indestructible/fakedoor,
+/area/virtual_domain)
+"dC" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"dD" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"dE" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"dP" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/obj/structure/sign/directions/command{
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/virtual_domain)
+"dU" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"dX" = (
+/obj/structure/sign/warning/electric_shock/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"dY" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/banner/medical,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"dZ" = (
+/obj/item/storage/belt/utility,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/structure/rack,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Gateway Shutter Control"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ej" = (
+/obj/structure/flora/bush/jungle/a/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"ek" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ep" = (
+/obj/structure/table/wood,
+/obj/item/storage/briefcase/secure{
+ desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides.";
+ name = "\improper Nanotrasen-brand secure briefcase exhibit";
+ pixel_y = 2
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"er" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"eu" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ey" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ez" = (
+/obj/structure/rack,
+/obj/item/storage/toolbox/emergency,
+/obj/item/storage/toolbox/emergency{
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/wrench,
+/obj/item/multitool,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/incident_display/delam/directional/south,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"eA" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/bookcase/random,
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"eB" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"eD" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L3"
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"eG" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"eN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"eR" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/computer/old{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"eV" = (
+/obj/machinery/light/directional/west,
+/obj/structure/table,
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/grenade/chem_grenade/smart_metal_foam{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"eX" = (
+/obj/structure/meateor_fluff/abandoned_headcrab_egg,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"eZ" = (
+/obj/structure/meateor_fluff/eyeball,
+/obj/effect/mob_spawn/corpse/human/doctor,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"fc" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fh" = (
+/turf/open/floor/plating,
+/area/virtual_domain)
+"fj" = (
+/obj/structure/closet/crate/cargo,
+/obj/effect/spawner/random/maintenance/no_decals/seven,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fn" = (
+/obj/item/camera/detective{
+ pixel_y = 4;
+ pixel_x = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fr" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fz" = (
+/obj/machinery/pdapainter{
+ pixel_y = 2
+ },
+/obj/machinery/requests_console/directional/north{
+ department = "Head of Personnel's Desk";
+ name = "Head of Personnel's Requests Console"
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"fB" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fC" = (
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/screwdriver,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_y = 16;
+ icon_state = "candle2_lit";
+ pixel_x = 17
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fD" = (
+/obj/structure/table/reinforced,
+/obj/effect/spawner/random/armory/laser_gun,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"fF" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"fG" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/decal/cleanable/glass,
+/obj/item/clothing/head/costume/party,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fK" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fN" = (
+/obj/structure/sign/directions/science{
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/medical{
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/evac,
+/turf/closed/wall/r_wall,
+/area/virtual_domain)
+"fP" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"fQ" = (
+/obj/effect/turf_decal/bot,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"gb" = (
+/obj/structure/flora/rock/pile/jungle,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"ge" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/obj/structure/flora/tree/jungle/small/style_4,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"gg" = (
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/green{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"gj" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/west,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"gk" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/fluff/paper/stack,
+/obj/item/flashlight/lamp/green,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"gt" = (
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"gC" = (
+/obj/item/kirbyplants/synthetic,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"gE" = (
+/turf/open/floor/wood,
+/area/virtual_domain)
+"gM" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/bodypart/head/robot,
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/machinery/digital_clock/directional/north,
+/obj/item/knife/combat/cyborg{
+ pixel_x = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"gU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"hb" = (
+/obj/structure/table/wood,
+/obj/item/camera{
+ pixel_y = 4
+ },
+/obj/item/radio/intercom/directional/west,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"hc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hd" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hg" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/holosign/barrier,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hh" = (
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"hi" = (
+/obj/structure/broken_flooring/pile/directional/west,
+/obj/structure/holosign/barrier,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"hj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ht" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/obj/effect/spawner/random/trash,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hv" = (
+/obj/structure/bed/medical/emergency,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/vending/wallmed/directional/west,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hw" = (
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hz" = (
+/obj/structure/reagent_dispensers/wall/virusfood/directional/south,
+/obj/structure/meateor_fluff/eyeball,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"hF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Gateway Chamber"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hR" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hU" = (
+/obj/structure/frame/computer,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"hV" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/closet/crate/secure/syndicrate,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"hX" = (
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"hZ" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"id" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"ie" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ii" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/holosign/barrier/atmos,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"il" = (
+/obj/structure/table,
+/obj/machinery/newscaster/directional/north,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/obj/effect/turf_decal/tile/brown{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"im" = (
+/obj/effect/decal/cleanable/blood/gibs/up,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"iv" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ix" = (
+/obj/item/trash/fleet_ration,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"iy" = (
+/obj/machinery/holopad,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"iA" = (
+/obj/structure/flora/bush/jungle/a/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/large/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"iH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/item/trash/can,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"iI" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil,
+/obj/item/crowbar,
+/obj/item/screwdriver{
+ pixel_y = 16
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"iK" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"iP" = (
+/obj/effect/decal/cleanable/food/flour,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"iQ" = (
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/sheet/iron/fifty,
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/machinery/airalarm/directional/west,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/stack/sheet/glass/fifty,
+/obj/item/crowbar,
+/obj/item/wrench,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"iY" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/evac/directional/east,
+/obj/item/stock_parts/subspace/crystal{
+ pixel_y = -12;
+ pixel_x = 6
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"iZ" = (
+/obj/item/storage/box/mothic_rations{
+ pixel_y = -7
+ },
+/obj/effect/decal/cleanable/food/tomato_smudge,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ja" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"jc" = (
+/obj/item/shard,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"jd" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/chair{
+ dir = 1
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"jh" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"jk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"jm" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/clothing/mask/facehugger/dead,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"jt" = (
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"jx" = (
+/obj/effect/turf_decal/siding/dark/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark/corner{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "med"
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"jy" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/computer/old{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"jz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"jC" = (
+/obj/item/ammo_box/magazine/wt550m9,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"jD" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/egg/burst,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"jF" = (
+/obj/machinery/holopad/secure,
+/obj/item/storage/box/lethalshot{
+ pixel_y = 7
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"jG" = (
+/obj/machinery/light_switch/directional/east,
+/obj/structure/table/glass,
+/obj/item/clothing/head/utility/chefhat{
+ pixel_x = 6;
+ pixel_y = 11
+ },
+/obj/item/reagent_containers/condiment/saltshaker,
+/obj/item/reagent_containers/condiment/peppermill{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"jR" = (
+/obj/structure/fluff/paper/stack{
+ dir = 8
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kc" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/mine/gas/plasma,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"kd" = (
+/obj/effect/turf_decal/trimline/blue/filled/corner,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/status_display/evac/directional/south,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kg" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/trash/boritos/red,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"ki" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = 2
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"km" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kn" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ name = "Vacant Commissary Shutter"
+ },
+/obj/structure/noticeboard/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kp" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ name = "Bridge Blast Door"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"kt" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/chair/stool/directional/north,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"kv" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor4-old"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kx" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"kI" = (
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kK" = (
+/obj/structure/sign/directions/command{
+ dir = 4;
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/virtual_domain)
+"kM" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor4"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ name = "E.V.A. Storage Shutter"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"kW" = (
+/obj/structure/table,
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"lb" = (
+/obj/item/stack/sheet/iron,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ld" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ dir = 8;
+ name = "Vacant Commissary Shutter"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lk" = (
+/obj/item/grenade/c4/x4,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"lt" = (
+/obj/machinery/camera/motion/directional/east{
+ c_tag = "E.V.A. Storage"
+ },
+/obj/machinery/requests_console/directional/east{
+ department = "EVA";
+ name = "EVA Requests Console"
+ },
+/obj/machinery/light/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lu" = (
+/obj/structure/chair/stool/directional/east,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lv" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/pickaxe/rusted,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lx" = (
+/obj/structure/barricade/sandbags,
+/obj/machinery/deployable_turret{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"lC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lE" = (
+/obj/structure/sign/departments/science,
+/turf/closed/wall,
+/area/virtual_domain)
+"lG" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lJ" = (
+/obj/item/tank/internals/oxygen,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"lK" = (
+/obj/structure/table/wood,
+/obj/structure/sign/picture_frame/showroom/one{
+ pixel_x = -8;
+ pixel_y = 32
+ },
+/obj/structure/sign/picture_frame/showroom/two{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/item/ammo_casing/shotgun/buckshot/spent,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"lL" = (
+/obj/structure/table,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/stack/package_wrap,
+/obj/item/hand_labeler,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/obj/machinery/light/cold/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"lM" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L6"
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "c";
+ pixel_x = -11;
+ pixel_y = 16
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "o";
+ pixel_y = 16;
+ pixel_x = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"lN" = (
+/obj/item/bodybag{
+ pixel_y = 5;
+ pixel_x = -6
+ },
+/obj/item/reagent_containers/spray/cleaner{
+ pixel_x = 9;
+ pixel_y = -5
+ },
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"lQ" = (
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/turf/closed/wall,
+/area/virtual_domain)
+"lT" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/virtual_domain)
+"lU" = (
+/obj/structure/fluff/paper/stack,
+/obj/structure/marker_beacon/bronze,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"lY" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Gateway Shutter Control";
+ pixel_y = -34
+ },
+/obj/machinery/button/door/directional/south{
+ name = "E.V.A. Storage Shutter Control"
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"mc" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mf" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L4"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mi" = (
+/obj/machinery/light/directional/south,
+/obj/machinery/firealarm/directional/south,
+/obj/structure/rack,
+/obj/item/storage/briefcase/secure,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"mj" = (
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_x = -13;
+ pixel_y = 8;
+ icon_state = "candle3_lit"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"mo" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ dir = 1;
+ name = "Showroom Shutters"
+ },
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"mq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mt" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mw" = (
+/obj/effect/decal/cleanable/blood/gibs/down,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"my" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/structure/table/reinforced/plastitaniumglass,
+/obj/machinery/computer/records/security/laptop/syndie,
+/obj/structure/sign/poster/official/state_laws/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mI" = (
+/obj/structure/bookcase/random,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 9
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mO" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/obj/structure/flora/bush/large/style_random,
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"mP" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/ammo_casing/shotgun/buckshot/spent,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"mQ" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"mW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"nq" = (
+/obj/effect/mob_spawn/corpse/human/scientist,
+/turf/open/misc/dirt/dark/jungle,
+/area/virtual_domain)
+"nw" = (
+/obj/structure/punji_sticks/spikes,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ny" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/blue,
+/obj/machinery/light/broken/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"nz" = (
+/obj/effect/decal/cleanable/glass,
+/obj/item/clothing/head/costume/party,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"nO" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/firealarm/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"nP" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/barricade/sandbags,
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"nS" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"nU" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/sign/departments/aiupload/directional/north,
+/obj/effect/decal/cleanable/shreds,
+/obj/item/card/emag,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"nW" = (
+/obj/machinery/light_switch{
+ pixel_x = 38;
+ pixel_y = -35
+ },
+/obj/machinery/button/flasher{
+ pixel_x = 38;
+ pixel_y = -25
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/bed/maint,
+/obj/item/bedsheet/pirate{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"nY" = (
+/obj/machinery/newscaster/directional/east,
+/obj/machinery/computer/old{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"nZ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 1
+ },
+/obj/item/book,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"od" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/leafy,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"ok" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/borg/upgrade/pinpointer,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ol" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor6"
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/item/modular_computer/laptop{
+ icon_state = "laptop";
+ pixel_y = 12;
+ pixel_x = 2
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"on" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/fluff/paper/stack,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"oo" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Gateway Maintenance"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"op" = (
+/obj/structure/railing{
+ dir = 5
+ },
+/obj/effect/turf_decal/siding/dark{
+ dir = 5
+ },
+/obj/structure/closet/body_bag,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"oy" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"oA" = (
+/obj/structure/table,
+/obj/item/storage/belt/utility,
+/obj/item/storage/belt/utility,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"oD" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"oH" = (
+/obj/structure/sign/plaques/kiddie/perfect_man{
+ pixel_y = 32
+ },
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"oI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom"
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"oM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"oO" = (
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/fullupgrade{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"oQ" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"oS" = (
+/obj/structure/barricade/sandbags,
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pb" = (
+/obj/item/radio/intercom/directional/north{
+ pixel_y = 34
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer/old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"pc" = (
+/obj/structure/fluff/paper/stack{
+ dir = 9
+ },
+/obj/item/book,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pd" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"pr" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/structure/closet/crate/cargo,
+/obj/effect/spawner/random/maintenance/no_decals/seven,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ps" = (
+/turf/closed/wall,
+/area/virtual_domain)
+"pv" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/trash/fleet_ration,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pA" = (
+/obj/structure/broken_flooring/side/directional/west,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"pB" = (
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/virtual_domain)
+"pD" = (
+/turf/closed/indestructible/fakedoor/maintenance,
+/area/virtual_domain)
+"pE" = (
+/obj/structure/fluff/paper/stack{
+ dir = 10
+ },
+/obj/item/flashlight/lamp/green,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pI" = (
+/obj/effect/decal/cleanable/xenoblood/xgibs/up,
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"pJ" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"pK" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/ammo_casing/shotgun/buckshot/spent,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"pL" = (
+/obj/item/extinguisher,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"pN" = (
+/obj/structure/meateor_fluff/eyeball,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"pO" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/fluff/paper/stack{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pP" = (
+/obj/machinery/button/door/directional/north{
+ name = "Privacy Shutters Control"
+ },
+/obj/machinery/computer/old,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"pQ" = (
+/obj/machinery/ticket_machine/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pR" = (
+/obj/structure/broken_flooring/pile/directional/north,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"pT" = (
+/obj/structure/barricade/sandbags,
+/obj/machinery/deployable_turret/hmg,
+/obj/structure/railing/corner/end/flip{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"pW" = (
+/obj/structure/alien/weeds,
+/obj/item/flamethrower/full/tank,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"pX" = (
+/obj/item/photo/old{
+ pixel_y = 14
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qa" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/oil{
+ icon_state = "floor5"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qk" = (
+/obj/structure/chair/comfy/beige,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"qq" = (
+/obj/structure/broken_flooring/side/directional/west,
+/obj/structure/sign/warning/gas_mask/directional/north,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"qr" = (
+/obj/machinery/airalarm/directional/east,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qu" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/chair{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qv" = (
+/obj/item/kirbyplants/organic/plant21,
+/obj/structure/sign/departments/botany/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"qz" = (
+/obj/structure/table/wood,
+/obj/machinery/light_switch/directional/west,
+/obj/item/storage/briefcase/secure{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"qI" = (
+/obj/machinery/light/directional/east,
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"qJ" = (
+/obj/machinery/light/floor,
+/obj/item/stack/sheet/iron,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qL" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/trash/semki/healthy,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qM" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/effect/decal/cleanable/dirt,
+/obj/item/mop,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"qP" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qS" = (
+/obj/machinery/light/small/directional/east,
+/obj/machinery/requests_console/directional/east{
+ department = "Captain's Desk";
+ name = "Captain's Requests Console"
+ },
+/obj/structure/frame/computer{
+ dir = 8
+ },
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 5
+ },
+/obj/item/stack/cable_coil/cut,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"qY" = (
+/obj/item/reagent_containers/cup/bottle/random_virus,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ra" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L13"
+ },
+/obj/effect/decal/cleanable/crayon/x{
+ pixel_x = -6;
+ pixel_y = -15
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rb" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"re" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rf" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/ammo_casing/spent{
+ dir = 9
+ },
+/obj/item/ammo_casing/spent{
+ dir = 10;
+ pixel_x = -13;
+ pixel_y = -8
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"rh" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rj" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rm" = (
+/obj/structure/lattice,
+/obj/effect/decal/cleanable/blood/gibs/torso,
+/turf/open/space/basic,
+/area/virtual_domain)
+"ro" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rq" = (
+/obj/machinery/vending/cigarette,
+/obj/item/gun/ballistic/shotgun/lethal{
+ pixel_y = 13
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"rr" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rs" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"rt" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/frame/machine/secured,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"rv" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ry" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/structure/showcase/machinery/tv/broken,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"rz" = (
+/obj/machinery/computer/old{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"rC" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rJ" = (
+/obj/effect/spawner/random/trash,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"rO" = (
+/obj/item/disk/nuclear/fake/obvious,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"rP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"rQ" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/pen,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"rW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"rX" = (
+/obj/machinery/photocopier,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"sa" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"sc" = (
+/obj/machinery/cell_charger{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"se" = (
+/obj/effect/mine/explosive/flame,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"sf" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/flora/rock/icy,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"si" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"sm" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/suit_storage_unit/void_old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"sr" = (
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ss" = (
+/obj/item/stock_parts/micro_laser/high,
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"st" = (
+/obj/item/seeds/coffee,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"sz" = (
+/obj/effect/decal/cleanable/glass,
+/obj/structure/safe/floor,
+/obj/item/stack/spacecash/c10000,
+/obj/item/stack/spacecash/c10000,
+/obj/item/stack/spacecash/c10000,
+/obj/item/stack/sheet/mineral/gold,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"sA" = (
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"sB" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"sF" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/storage/briefcase/lawyer,
+/obj/structure/noticeboard/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"sI" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 1
+ },
+/obj/structure/frame/computer,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"sS" = (
+/obj/structure/lattice,
+/obj/structure/marker_beacon/bronze,
+/turf/open/space/basic,
+/area/virtual_domain)
+"sX" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/effect/turf_decal/caution/red,
+/obj/item/clothing/suit/caution{
+ pixel_y = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"sZ" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/banner/science,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"te" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel"
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"tf" = (
+/obj/effect/rune,
+/obj/item/knife/envy,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"th" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tj" = (
+/obj/structure/bed/dogbed/renault,
+/mob/living/basic/pet/fox,
+/obj/item/stack/spacecash/c1000{
+ pixel_y = 15;
+ pixel_x = 5
+ },
+/obj/item/storage/briefcase/secure/syndie{
+ pixel_y = 13;
+ pixel_x = -6
+ },
+/obj/item/stack/sheet/mineral/diamond{
+ pixel_x = 9;
+ pixel_y = 9
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"tk" = (
+/obj/machinery/button/door/directional/west{
+ id = "bridge blast";
+ name = "Bridge Access Blast Door Control"
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"tl" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/resin,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"tn" = (
+/obj/effect/decal/cleanable/xenoblood/xgibs/core,
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"to" = (
+/obj/item/boulder{
+ pixel_x = 7;
+ pixel_y = 9
+ },
+/obj/item/boulder{
+ icon_state = "rock_medium";
+ pixel_x = -12;
+ pixel_y = 8
+ },
+/obj/item/boulder{
+ icon_state = "boulder_medium";
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"tq" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tu" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tw" = (
+/obj/structure/flora/rock/pile/jungle,
+/obj/effect/mob_spawn/corpse/human/scientist,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"ty" = (
+/obj/effect/spawner/random/vending/colavend,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"tF" = (
+/obj/structure/fluff/paper/stack{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"tI" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/trash/can/food/pine_nuts,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tM" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/crowbar,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tO" = (
+/obj/structure/sign/directions/evac,
+/obj/structure/sign/directions/medical{
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/science{
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/virtual_domain)
+"tR" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tS" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"tV" = (
+/obj/structure/table/wood,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/item/folder/blue,
+/obj/item/clothing/head/collectable/hop{
+ name = "novelty HoP hat"
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"tW" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/mob_spawn/corpse/human/scientist,
+/turf/open/misc/dirt/dark/jungle,
+/area/virtual_domain)
+"ub" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/mine/explosive/flame,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ud" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/trash/cheesie,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"uf" = (
+/obj/structure/plasticflaps/opaque,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ug" = (
+/obj/structure/holosign/barrier/wetsign,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"uk" = (
+/obj/structure/marker_beacon/bronze,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/virtual_domain)
+"ul" = (
+/obj/machinery/door/poddoor/preopen{
+ name = "Bridge Blast Door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge Access"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"up" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"uq" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_4,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"ut" = (
+/obj/structure/sign/directions/engineering{
+ dir = 4
+ },
+/obj/structure/sign/directions/security{
+ dir = 1;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/command{
+ dir = 8;
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/virtual_domain)
+"uw" = (
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ux" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"uz" = (
+/turf/template_noop,
+/area/template_noop)
+"uA" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"uB" = (
+/turf/closed/indestructible/meat,
+/area/virtual_domain)
+"uD" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/shreds,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"uH" = (
+/obj/structure/bookcase,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"uP" = (
+/obj/machinery/computer/security/telescreen/entertainment/directional/north,
+/obj/item/radio/intercom/directional/west,
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = 2
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"uS" = (
+/turf/closed/wall/r_wall,
+/area/virtual_domain)
+"uT" = (
+/obj/structure/mop_bucket/janitorialcart{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"uX" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer/old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"uY" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/blood,
+/obj/structure/railing{
+ dir = 8
+ },
+/obj/machinery/exoscanner,
+/obj/effect/turf_decal/bot_red,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vf" = (
+/obj/structure/broken_flooring/corner/directional/east,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"vg" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/chair/pew/right,
+/obj/item/reagent_containers/cup/glass/coffee,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vi" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/book/manual/wiki/detective,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vo" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/structure/holosign/barrier/engineering,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vt" = (
+/obj/machinery/bluespace_beacon,
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"vw" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"vy" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L12"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/trash/candle,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"vI" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/button/door/directional/east{
+ name = "Teleporter Shutter Control";
+ pixel_y = 5
+ },
+/obj/structure/alien/weeds,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vK" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"vM" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"vN" = (
+/obj/structure/broken_flooring/pile/directional/west,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"vO" = (
+/obj/item/book/manual/wiki/security_space_law,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"vU" = (
+/obj/machinery/recharger,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"vV" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"vW" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"wa" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/trash/popcorn/caramel,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"wi" = (
+/obj/machinery/holopad,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"wj" = (
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"wl" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/flora/rock/pile/jungle,
+/obj/structure/flora/bush/leavy/style_3,
+/obj/structure/flora/tree/jungle/small/style_2,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"wn" = (
+/obj/machinery/light_switch/directional/south,
+/obj/structure/table/wood,
+/obj/item/razor{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/reagent_containers/cup/glass/flask/gold,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"wo" = (
+/obj/structure/table/wood,
+/obj/item/radio/intercom/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/machinery/coffeemaker/impressa,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"wq" = (
+/obj/structure/reagent_dispensers/wall/virusfood/directional/south,
+/obj/item/clothing/mask/surgical,
+/obj/structure/meateor_fluff/abandoned_headcrab_egg,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"wu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ww" = (
+/obj/item/knife/shiv/plastitanium,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"wA" = (
+/obj/structure/table/glass,
+/obj/structure/safe,
+/obj/item/storage/toolbox/guncase/cqc,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"wB" = (
+/obj/structure/sign/directions/command{
+ dir = 1;
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/virtual_domain)
+"wD" = (
+/obj/machinery/airalarm/directional/north,
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/spawner/random/bureaucracy/briefcase,
+/obj/effect/turf_decal/tile/brown/opposingcorners{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"wH" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"wL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Bridge Access Blast Door Control"
+ },
+/obj/machinery/button/door/directional/south{
+ name = "Council Chamber Blast Door Control";
+ pixel_y = -34
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"wN" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"wP" = (
+/obj/structure/sign/directions/medical{
+ dir = 8;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/evac,
+/obj/structure/sign/directions/science{
+ dir = 4;
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/virtual_domain)
+"wV" = (
+/obj/effect/spawner/random/trash/garbage{
+ spawn_scatter_radius = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"wY" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/obj/machinery/light/broken/directional/north,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"xb" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"xd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"xe" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/machinery/light/small/dim/directional/east,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"xj" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"xu" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"xI" = (
+/obj/item/disk/data{
+ pixel_x = 9;
+ pixel_y = -1
+ },
+/obj/item/disk/tech_disk{
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/disk/design_disk{
+ name = "component design disk";
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/obj/item/toy/talking/ai{
+ name = "\improper Nanotrasen-brand toy AI";
+ pixel_y = 6
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"xK" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"xV" = (
+/obj/machinery/button/door/directional/west{
+ name = "Council Chamber Blast Door Control"
+ },
+/obj/structure/frame/machine/secured,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"xW" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/rods,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"yc" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"yh" = (
+/obj/structure/chair/office{
+ dir = 1;
+ pixel_x = -11
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"yn" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/shutters/preopen{
+ name = "E.V.A. Storage Shutter"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"yq" = (
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_y = 2;
+ pixel_x = 7
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"yt" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/grille/broken,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"yw" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/trash/popcorn,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"yx" = (
+/obj/structure/grille/broken,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/decal/cleanable/glass,
+/obj/effect/mine/explosive/flame,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"yy" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/chair/stool/directional/east,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"yz" = (
+/turf/closed/indestructible/fakedoor,
+/area/virtual_domain)
+"yC" = (
+/obj/structure/showcase/machinery/tv/broken,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"yD" = (
+/obj/effect/turf_decal/tile/bar{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"yE" = (
+/obj/effect/decal/cleanable/blood,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"yH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"yI" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/bikehorn/rubberducky,
+/obj/machinery/light_switch/directional/west,
+/obj/structure/window/reinforced/spawner/directional/north,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"yK" = (
+/obj/effect/turf_decal/tile/purple,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"yM" = (
+/obj/structure/chair/comfy/brown,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"yN" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/structure/bed/medical/emergency,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"yO" = (
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"yP" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "hop";
+ name = "Privacy Shutters"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"yT" = (
+/obj/item/seeds/cucumber,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"zb" = (
+/obj/item/clothing/head/costume/party,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ze" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"zg" = (
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/structure/table/glass,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/mesh,
+/obj/item/stack/medical/suture,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"zj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"zo" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = -4
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"zq" = (
+/obj/structure/mop_bucket,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"zw" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/trash/ready_donk{
+ pixel_y = 10
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"zx" = (
+/obj/structure/grille/broken,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/rods,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"zA" = (
+/obj/machinery/firealarm/directional/east,
+/obj/structure/table/glass,
+/obj/item/papercutter,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"zB" = (
+/obj/structure/broken_flooring/side/directional/north,
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "m";
+ pixel_y = 17;
+ pixel_x = -13
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"zE" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"zL" = (
+/obj/item/reagent_containers/cup/bottle/random_virus,
+/obj/effect/decal/cleanable/blood/gibs/down,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"zO" = (
+/obj/item/stack/rods/ten,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"zP" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer/old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"zQ" = (
+/obj/item/storage/belt/security/full{
+ pixel_x = 8;
+ pixel_y = -6
+ },
+/obj/item/storage/belt/security/full,
+/obj/item/storage/belt/security/full{
+ pixel_x = -8;
+ pixel_y = 6
+ },
+/obj/structure/table/reinforced,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"zR" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"zT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/structure/closet/body_bag,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ad" = (
+/obj/item/clothing/head/cone{
+ pixel_y = -5;
+ pixel_x = 7
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Ah" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ao" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Ar" = (
+/obj/item/ammo_casing/shotgun/buckshot/spent,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Ax" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/obj/item/radio/off,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ay" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"AA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"AC" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/virtual_domain)
+"AD" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/clothing/head/cone{
+ pixel_y = 3;
+ pixel_x = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"AM" = (
+/obj/structure/fluff/paper/stack{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"AN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/clothing/suit/caution{
+ pixel_y = -9
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"AP" = (
+/obj/structure/grille,
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_y = -6
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"AQ" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/ammo_casing/spent{
+ dir = 10
+ },
+/obj/item/ammo_casing/spent{
+ dir = 9;
+ pixel_x = -19;
+ pixel_y = -5
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"AR" = (
+/obj/structure/table,
+/obj/item/folder/yellow,
+/obj/item/storage/medkit/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"AV" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"AX" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Bd" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Bg" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/chair,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Bh" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Bj" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/machinery/light/broken/directional/south,
+/obj/item/stack/rods,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Bn" = (
+/obj/item/ammo_casing/spent,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Bp" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Bt" = (
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Bv" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Bw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"BF" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"BJ" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L1"
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"BK" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/computer/old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"BM" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"BN" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L14"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"BP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters"
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"BZ" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"Ca" = (
+/obj/item/gun/ballistic/shotgun/riot{
+ pixel_y = 6
+ },
+/obj/item/gun/ballistic/shotgun/riot,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"Cb" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Cc" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/flora/bush/leavy/style_2,
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/obj/structure/flora/bush/large/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"Cd" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds/node,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Cg" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/item/restraints/legcuffs/beartrap/prearmed,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Cn" = (
+/obj/effect/turf_decal/trimline/brown/filled/line{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/closet/crate/cargo,
+/obj/effect/spawner/random/maintenance/no_decals/seven,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Cr" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L10"
+ },
+/obj/effect/spawner/random/trash/graffiti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Cw" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/chair/stool/directional/west,
+/obj/effect/turf_decal/tile/brown{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Cx" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger{
+ pixel_x = -6
+ },
+/obj/machinery/recharger{
+ pixel_x = 6
+ },
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"Cy" = (
+/obj/machinery/light_switch/directional/south,
+/obj/effect/spawner/random/vending/colavend,
+/obj/structure/window/reinforced/spawner/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Cz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"CA" = (
+/obj/structure/flora/rock/pile/jungle,
+/obj/structure/barricade/sandbags,
+/turf/open/misc/dirt/dark/jungle,
+/area/virtual_domain)
+"CC" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/railing{
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"CJ" = (
+/obj/structure/holosign/barrier,
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"CK" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/item/banner/security,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"CL" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor3-old"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"CM" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"CQ" = (
+/obj/effect/decal/cleanable/xenoblood,
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Dc" = (
+/obj/effect/turf_decal/bot_white/right,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/clothing/head/cone{
+ pixel_y = 3;
+ pixel_x = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Dk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Dl" = (
+/obj/structure/water_source/puddle,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"Dp" = (
+/obj/structure/chair/sofa/bench/solo,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Dx" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"DA" = (
+/obj/item/seeds/cocoapod,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"DC" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/obj/structure/flora/bush/large/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"DF" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/detective_scanner{
+ pixel_x = -7;
+ pixel_y = -6
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"DL" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/shutters/preopen{
+ name = "Showroom Shutters"
+ },
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"DM" = (
+/turf/closed/indestructible/fakedoor/engineering,
+/area/virtual_domain)
+"DO" = (
+/obj/machinery/door/airlock/maintenance,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"DP" = (
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"DQ" = (
+/obj/machinery/power/shieldwallgen,
+/obj/structure/extinguisher_cabinet/directional/west,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"DU" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 4
+ },
+/obj/item/knife/butcher,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"DV" = (
+/turf/open/misc/dirt/dark/jungle,
+/area/virtual_domain)
+"DW" = (
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 8
+ },
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ec" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/flora/tree/jungle/small/style_5,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"Ed" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/machinery/firealarm/directional/south,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"El" = (
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/obj/structure/meateor_fluff/flesh_pod_open,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"En" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Er" = (
+/obj/structure/rack,
+/obj/item/tank/jetpack/carbondioxide{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Es" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/mecha_wreckage/ripley/paddy,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Eu" = (
+/obj/structure/chair/office{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"EC" = (
+/obj/item/flashlight/lamp/green{
+ pixel_x = -6;
+ pixel_y = -5
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ED" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"EF" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/blue,
+/obj/structure/closet/crate/cardboard,
+/obj/effect/spawner/random/maintenance/no_decals/seven,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"EH" = (
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"EK" = (
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/reagent_containers/spray/chemsprayer/party,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"EQ" = (
+/obj/machinery/door/poddoor/preopen{
+ name = "Bridge Blast Door"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ET" = (
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/machinery/computer/security/wooden_tv{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"EV" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L7"
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "e";
+ pixel_y = -16;
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "guy";
+ pixel_y = -5
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Fc" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/clothing/suit/bio_suit/virology,
+/obj/item/clothing/head/bio_hood/virology{
+ pixel_y = 10;
+ pixel_x = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/obj/structure/sign/warning/biohazard/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Fd" = (
+/turf/open/space/basic,
+/area/space)
+"Ff" = (
+/obj/machinery/firealarm/directional/south,
+/obj/structure/railing{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/dark{
+ dir = 1
+ },
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Fg" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/banner/medical,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"Fh" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Fj" = (
+/obj/structure/table/optable,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Fl" = (
+/obj/effect/turf_decal/trimline/blue/filled/line,
+/obj/effect/decal/cleanable/vomit/toxic,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Fp" = (
+/obj/structure/showcase/machinery/tv{
+ dir = 1;
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Fr" = (
+/obj/effect/decal/cleanable/xenoblood/xgibs/down,
+/obj/structure/alien/weeds,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Fw" = (
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/rods/fifty,
+/obj/item/stack/rods/fifty,
+/obj/structure/table,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"FA" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"FC" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/door/poddoor/shutters/window{
+ name = "Gateway Access Shutter"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"FF" = (
+/obj/structure/sign/warning/secure_area,
+/turf/closed/wall/r_wall,
+/area/virtual_domain)
+"FG" = (
+/obj/effect/turf_decal/trimline/green/filled/corner,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"FI" = (
+/obj/structure/table/wood,
+/obj/item/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/pen,
+/obj/machinery/light_switch/directional/east,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"FK" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/stack/sheet/iron,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"FN" = (
+/obj/structure/closet/crate/preopen,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/stack/rods/fifty,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/effect/spawner/random/engineering/flashlight,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"FO" = (
+/obj/structure/flora/rock/pile/jungle,
+/obj/structure/flora/tree/jungle/small/style_6,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"FR" = (
+/obj/item/storage/toolbox/drone,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"FS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"FT" = (
+/obj/item/clothing/mask/surgical,
+/obj/structure/meateor_fluff/eyeball,
+/obj/effect/decal/cleanable/vomit/toxic,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"FV" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"FZ" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/structure/marker_beacon/bronze,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Gi" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Gk" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "HoP's Desk"
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Gm" = (
+/obj/structure/meateor_fluff/flesh_pod_open,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"Gn" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Gq" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Gr" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Gs" = (
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Gx" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel"
+ },
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Gy" = (
+/obj/structure/flora/rock/pile/jungle/large/style_random,
+/turf/open/misc/dirt/dark/jungle,
+/area/virtual_domain)
+"GA" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/frame/machine/secured,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"GD" = (
+/obj/structure/lattice,
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/space/basic,
+/area/virtual_domain)
+"GG" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/barricade/sandbags,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"GJ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/crate/cardboard/mothic{
+ pixel_y = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"GQ" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"GS" = (
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/machinery/computer/old{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"GT" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Hb" = (
+/obj/effect/spawner/random/trash,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Hc" = (
+/obj/structure/rack,
+/obj/item/gun/ballistic/revolver/golden,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Hd" = (
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Hg" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_y = -9;
+ icon_state = "candle2_lit"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Hh" = (
+/obj/machinery/shower/directional/south,
+/obj/structure/curtain,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/spawner/random/trash/graffiti,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/iron/white,
+/area/virtual_domain)
+"Hl" = (
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Hs" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/frame/machine/secured,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ht" = (
+/obj/machinery/firealarm/directional/north,
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Hv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command/glass{
+ name = "Bridge"
+ },
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Hw" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/chair/office{
+ dir = 4;
+ pixel_x = -10
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"HC" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 8
+ },
+/obj/item/trash/fleet_ration,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"HG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"HH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Network Access"
+ },
+/obj/effect/mapping_helpers/airlock/cyclelink_helper{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/effect/mapping_helpers/airlock/access/all/command/ai_upload,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"HM" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain)
+"HP" = (
+/obj/structure/holosign/barrier/engineering,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"HS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/glass,
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_x = 13;
+ pixel_y = 8;
+ icon_state = "candle3_lit"
+ },
+/obj/item/trash/candle,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"HX" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/item/banner/command,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Ie" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/ammo_casing/spent{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Ii" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Ij" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/item/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Il" = (
+/obj/structure/lattice,
+/obj/item/ammo_box/strilka310/surplus,
+/turf/open/space/basic,
+/area/virtual_domain)
+"Io" = (
+/obj/structure/fluff/paper/stack{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Iq" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Ir" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Iw" = (
+/obj/structure/closet/crate/cardboard{
+ pixel_y = 8
+ },
+/obj/item/spear/explosive,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"IC" = (
+/obj/structure/railing{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"IH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"IJ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"IL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/obj/structure/barricade/sandbags,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"IM" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/ammo_casing/spent,
+/obj/item/ammo_casing/spent{
+ dir = 10;
+ pixel_x = -13;
+ pixel_y = -8
+ },
+/obj/item/ammo_casing/spent{
+ dir = 9;
+ pixel_x = -13;
+ pixel_y = 9
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"IS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access"
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"IU" = (
+/obj/item/radio/off,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Jh" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Captain's Bedroom"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Ji" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/structure/closet/crate/trashcart/filled,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Jm" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"JD" = (
+/obj/structure/spider/stickyweb,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"JG" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"JK" = (
+/obj/item/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"JL" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/barricade/sandbags,
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"JM" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/robot_debris,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"JP" = (
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"JR" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 8
+ },
+/obj/effect/turf_decal/caution/red{
+ dir = 8
+ },
+/obj/item/clothing/suit/caution{
+ pixel_y = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"JY" = (
+/obj/effect/turf_decal/tile/yellow{
+ dir = 4
+ },
+/obj/item/banner/engineering,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ka" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ke" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Kf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Kh" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Kl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Km" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/spawner/random/trash,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Kn" = (
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 4
+ },
+/obj/item/storage/cans/sixbeer,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Kq" = (
+/obj/effect/mapping_helpers/burnt_floor,
+/obj/structure/holosign/barrier/engineering,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Kr" = (
+/obj/item/clothing/head/utility/hardhat,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/structure/railing{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Kv" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L9"
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor4";
+ pixel_y = -15
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Kw" = (
+/obj/structure/plaque/static_plaque/golden/commission/meta,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"KA" = (
+/obj/item/chair,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"KF" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"KM" = (
+/obj/structure/sign/warning/pods,
+/turf/closed/wall,
+/area/virtual_domain)
+"KN" = (
+/obj/machinery/airalarm/directional/east,
+/obj/machinery/vending/cigarette,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"KP" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral,
+/obj/structure/closet/body_bag,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"KQ" = (
+/obj/structure/rack,
+/obj/item/assembly/signaler,
+/obj/item/assembly/signaler,
+/obj/item/assembly/timer,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/digital_clock/directional/south,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"KR" = (
+/obj/machinery/newscaster/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"KT" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"KW" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Lg" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Lh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ll" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 4
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Lm" = (
+/obj/structure/alien/weeds,
+/obj/item/clothing/mask/facehugger/dead,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Lq" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/glasses/hud/security/night{
+ pixel_x = -8;
+ pixel_y = -6
+ },
+/obj/item/clothing/glasses/hud/security/night,
+/obj/item/clothing/glasses/hud/security/night{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"Ls" = (
+/obj/modular_map_root/safehouse{
+ key = "shuttle_space"
+ },
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"Lu" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Lz" = (
+/obj/effect/decal/cleanable/confetti,
+/obj/machinery/jukebox/disco{
+ anchored = 1;
+ req_access = null
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"LB" = (
+/obj/structure/lattice,
+/obj/item/gun/ballistic/rifle/boltaction/surplus,
+/turf/open/space/basic,
+/area/virtual_domain)
+"LD" = (
+/obj/item/kirbyplants/random/dead/research_director,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"LG" = (
+/obj/machinery/firealarm/directional/west,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 4
+ },
+/obj/item/radio/intercom/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"LJ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/obj/machinery/button/door/directional/north{
+ name = "E.V.A. Storage Shutter Control"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/item/clothing/suit/bio_suit/virology{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"LK" = (
+/obj/machinery/button/door/directional/east{
+ name = "Bridge Access Blast Door Control"
+ },
+/obj/effect/turf_decal/tile/blue{
+ dir = 1
+ },
+/obj/structure/flora/rock/icy/style_2,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"LL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/holosign/barrier,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"LN" = (
+/obj/item/kirbyplants,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"LP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"LS" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"LV" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/holosign/barrier,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Mb" = (
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Mj" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Mk" = (
+/obj/structure/table/wood,
+/obj/machinery/light/directional/south,
+/obj/item/papercutter{
+ pixel_x = -4
+ },
+/obj/item/paper/fluff/ids_for_dummies,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Ml" = (
+/obj/effect/decal/cleanable/crayon/x,
+/turf/closed/wall/rust,
+/area/virtual_domain)
+"Mm" = (
+/obj/structure/lattice,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/space/basic,
+/area/virtual_domain)
+"Mn" = (
+/obj/machinery/holopad,
+/obj/machinery/status_display/evac/directional/north,
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Mo" = (
+/obj/effect/turf_decal/tile/red/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/computer/old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Mq" = (
+/obj/machinery/firealarm/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Mr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/light/floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ms" = (
+/obj/item/storage/fancy/cigarettes/cigpack_mindbreaker{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Mt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Council Chamber"
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Mu" = (
+/obj/machinery/firealarm/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/item/clothing/head/bio_hood/virology{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Mz" = (
+/obj/effect/decal/cleanable/shreds,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"MC" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"MF" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"MG" = (
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"MJ" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood,
+/obj/effect/spawner/random/trash,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"ML" = (
+/obj/structure/bed/maint,
+/obj/item/bedsheet/pirate,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"MM" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/iron/fifty,
+/obj/item/storage/toolbox/emergency,
+/obj/effect/spawner/random/engineering/flashlight,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/south,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"MN" = (
+/obj/structure/flora/bush/jungle/a/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"MP" = (
+/obj/structure/sign/picture_frame/showroom/three{
+ pixel_x = -8;
+ pixel_y = 32
+ },
+/obj/structure/sign/picture_frame/showroom/four{
+ pixel_x = 8;
+ pixel_y = 32
+ },
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"MS" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/screwdriver,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"MZ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/bookcase/random,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ne" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/flasher/directional/east{
+ pixel_y = -26
+ },
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Nh" = (
+/obj/structure/barricade/sandbags,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Nl" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law{
+ pixel_y = 3
+ },
+/obj/item/radio/intercom/command/directional/north,
+/obj/item/paper/fluff/jobs/engineering/frequencies,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Nm" = (
+/obj/machinery/firealarm/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"No" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ name = "HoP Queue Shutters"
+ },
+/obj/effect/turf_decal/loading_area{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Nq" = (
+/obj/item/stock_parts/scanning_module/triphasic{
+ pixel_x = 4
+ },
+/obj/effect/mapping_helpers/burnt_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Nr" = (
+/obj/effect/turf_decal/bot_white,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/status_display/ai/directional/north,
+/obj/item/stock_parts/subspace/amplifier{
+ pixel_y = -6
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Nu" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ny" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/structure/barricade/security,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Nz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ id = "council blast";
+ name = "Council Blast Doors"
+ },
+/obj/structure/barricade/wooden/crude,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ND" = (
+/obj/effect/turf_decal/bot,
+/obj/machinery/digital_clock/directional/north,
+/obj/item/light/bulb/broken{
+ pixel_x = 15
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"NG" = (
+/obj/structure/chair/office{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"NN" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/trimline/blue/filled/corner{
+ dir = 8
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"NO" = (
+/obj/machinery/airalarm/directional/west,
+/obj/structure/broken_flooring/singular/always_floorplane/directional/east,
+/obj/item/surgery_tray/full/deployed,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"NR" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 5
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"NZ" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/structure/barricade/sandbags,
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Oc" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/clothing/mask/party_horn,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Od" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Oe" = (
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Of" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Oh" = (
+/obj/effect/spawner/random/decoration/microwave{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Oi" = (
+/obj/structure/holosign/barrier/atmos,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Oj" = (
+/obj/item/ammo_box/magazine/wt550m9,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Ol" = (
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Om" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L8"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Oq" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Or" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/item/evidencebag,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Os" = (
+/obj/structure/rack,
+/obj/item/aicard,
+/obj/item/radio/off,
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Ou" = (
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ov" = (
+/obj/machinery/vending/boozeomat,
+/obj/machinery/light/small/directional/west,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Ox" = (
+/obj/item/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/green/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"OC" = (
+/obj/structure/tank_dispenser/oxygen{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"OD" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/magboots,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/north,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"OE" = (
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/turf/open/floor/iron/white,
+/area/virtual_domain)
+"OS" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"OU" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/trash/popcorn/caramel,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"OV" = (
+/obj/item/flashlight/flare{
+ icon_state = "flare-on";
+ light_on = 1
+ },
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"OX" = (
+/obj/machinery/fax{
+ pixel_y = 9
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Pa" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L4"
+ },
+/obj/effect/decal/cleanable/crayon{
+ icon_state = "l";
+ pixel_x = 10;
+ pixel_y = 16
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Pd" = (
+/obj/item/cigbutt,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Pg" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/alien/weeds,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Pk" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/alien/weeds,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Pq" = (
+/obj/item/ammo_casing/spent{
+ dir = 1
+ },
+/obj/item/ammo_casing/spent{
+ dir = 10;
+ pixel_x = -13;
+ pixel_y = -8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Py" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/item/radio/intercom/directional/west,
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/clothing/mask/facehugger/dead,
+/obj/structure/displaycase,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"PC" = (
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/closet/crate/trashcart/filled,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"PG" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L10"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"PP" = (
+/obj/structure/table/wood,
+/obj/item/book/manual/wiki/security_space_law,
+/obj/machinery/light/small/directional/west,
+/obj/item/paper/fluff/gateway,
+/obj/item/coin/plasma,
+/obj/item/melee/chainofcommand,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"PQ" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"PR" = (
+/obj/machinery/vending/boozeomat/syndicate_access,
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"PT" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"PU" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"PY" = (
+/obj/item/restraints/legcuffs/beartrap/prearmed,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Qc" = (
+/obj/machinery/firealarm/directional/west,
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds/node,
+/obj/effect/mob_spawn/corpse/human/assistant/brainrot_infection,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Qg" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/item/folder/yellow{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Qh" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/barricade/sandbags,
+/obj/structure/railing,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Qm" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Qp" = (
+/obj/structure/noticeboard/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/structure/fluff/paper/stack{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Qq" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet/directional/west,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Qw" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L5"
+ },
+/obj/structure/barricade/sandbags,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"QA" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/door/poddoor/preopen{
+ name = "Bridge Blast Door"
+ },
+/obj/structure/barricade/wooden/crude,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"QM" = (
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/suit_storage_unit/void_old,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"QN" = (
+/obj/structure/chair/comfy/brown{
+ dir = 8
+ },
+/obj/item/restraints/handcuffs/cable/white,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"QQ" = (
+/obj/item/ammo_casing/shotgun/buckshot/spent,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Ra" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Rg" = (
+/obj/machinery/light/cold/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/structure/window/spawner/directional/north,
+/obj/structure/frame/machine/secured,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Rj" = (
+/obj/structure/broken_flooring/side/directional/north,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Rl" = (
+/obj/machinery/light/small/directional/north,
+/obj/structure/sign/warning/secure_area/directional/north,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Rn" = (
+/obj/item/clothing/head/cone{
+ pixel_y = 3;
+ pixel_x = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/item/storage/toolbox/electrical{
+ pixel_y = -5;
+ pixel_x = -2
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Rx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Rz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/trash/energybar,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"RB" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/holosign/barrier,
+/obj/structure/marker_beacon/burgundy,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"RD" = (
+/obj/structure/lattice,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/space/basic,
+/area/virtual_domain)
+"RE" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/structure/frame/machine/secured,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"RI" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"RJ" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"RL" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/ammo_casing/spent{
+ dir = 4
+ },
+/obj/item/ammo_casing/spent{
+ dir = 9;
+ pixel_x = -13;
+ pixel_y = 9
+ },
+/obj/item/ammo_casing/spent{
+ dir = 8;
+ pixel_x = -19;
+ pixel_y = -5
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"RR" = (
+/obj/effect/turf_decal/tile/neutral,
+/obj/item/ammo_casing/spent,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"RT" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ name = "HoP Queue Shutters"
+ },
+/obj/effect/turf_decal/loading_area,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"RV" = (
+/obj/machinery/light/directional/north,
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/item/banner/security,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"RX" = (
+/obj/effect/spawner/random/decoration/showcase,
+/obj/structure/window/reinforced/spawner/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"RZ" = (
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Sa" = (
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/suit_storage_unit{
+ state_open = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Sj" = (
+/obj/effect/decal/cleanable/blood/gibs/up,
+/obj/effect/turf_decal/trimline/blue/filled/warning{
+ dir = 10
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Sl" = (
+/obj/effect/spawner/random/vending/snackvend,
+/obj/structure/window/reinforced/spawner/directional/east,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Sm" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/obj/structure/table/wood,
+/obj/machinery/chem_dispenser/drinks/beer/fullupgrade,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Sq" = (
+/obj/effect/turf_decal/tile/red/half/contrasted{
+ dir = 1
+ },
+/obj/structure/frame/computer,
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 5
+ },
+/obj/item/stack/cable_coil/cut,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Sr" = (
+/obj/item/radio/intercom/directional/east,
+/obj/structure/window/reinforced/spawner/directional/south,
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Ss" = (
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/obj/item/restraints/handcuffs{
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/tile/red{
+ dir = 4
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Sx" = (
+/obj/machinery/status_display/evac/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Sz" = (
+/obj/item/seeds/eggplant,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"SC" = (
+/obj/structure/marker_beacon/bronze,
+/obj/structure/broken_flooring/side/directional/north,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"SF" = (
+/obj/structure/flora/bush/jungle/b/style_random,
+/obj/structure/flora/bush/lavendergrass/style_random,
+/obj/item/flashlight/flare{
+ icon_state = "flare-on";
+ light_on = 1
+ },
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"SG" = (
+/obj/effect/turf_decal/tile/brown/half/contrasted{
+ dir = 1
+ },
+/obj/structure/frame/computer,
+/obj/item/shard,
+/obj/item/stack/cable_coil/cut,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"SH" = (
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"SJ" = (
+/obj/machinery/airalarm/directional/north,
+/obj/item/kirbyplants/organic/applebush,
+/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"SK" = (
+/obj/effect/turf_decal/tile/blue,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"SN" = (
+/obj/structure/lattice,
+/turf/open/space/basic,
+/area/virtual_domain)
+"SP" = (
+/obj/effect/turf_decal/tile/neutral,
+/mob/living/basic/bot/cleanbot/autopatrol,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"SR" = (
+/obj/structure/fluff/paper/stack{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ST" = (
+/obj/structure/alien/weeds,
+/obj/structure/barricade/wooden,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"SY" = (
+/obj/structure/table/wood,
+/obj/item/reagent_containers/syringe/lethal/execution,
+/obj/item/reagent_containers/syringe/lethal/execution{
+ pixel_y = 7;
+ pixel_x = -4
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Te" = (
+/obj/effect/decal/cleanable/blood/tracks{
+ dir = 6
+ },
+/obj/effect/mob_spawn/corpse/human/doctor,
+/turf/open/indestructible/meat,
+/area/virtual_domain)
+"Tm" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"To" = (
+/obj/structure/grille/broken,
+/obj/effect/decal/cleanable/glass,
+/obj/item/stack/rods,
+/obj/effect/mine/explosive/flame,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Ty" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L14"
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"TC" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/machinery/light/directional/north,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"TH" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/structure/chair/pew/left,
+/obj/item/newspaper,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"TJ" = (
+/obj/structure/grille,
+/obj/item/shard,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"TL" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"TN" = (
+/obj/structure/table/wood,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/item/poster/random_official,
+/obj/machinery/button/door/directional/east{
+ name = "corporate showroom shutters control"
+ },
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"TP" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"TT" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/button/door/directional/north{
+ name = "Gateway Shutter Control"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"TW" = (
+/obj/machinery/light/directional/south,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ua" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/chair/sofa/corp/right{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ue" = (
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Ui" = (
+/obj/effect/turf_decal/tile/bar,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/item/banner/engineering,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Uj" = (
+/obj/effect/turf_decal/trimline/brown/filled/corner{
+ dir = 1
+ },
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Un" = (
+/obj/effect/turf_decal/tile/blue/half/contrasted{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Uo" = (
+/obj/effect/turf_decal/tile/purple,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Uq" = (
+/obj/structure/table/glass,
+/obj/item/reagent_containers/cup/bottle/epinephrine,
+/obj/item/reagent_containers/cup/bottle/multiver{
+ pixel_x = 6
+ },
+/obj/item/reagent_containers/syringe,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Ur" = (
+/obj/machinery/vending/cart{
+ req_access = list("hop")
+ },
+/obj/item/radio/intercom/directional/north,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Uv" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/machinery/firealarm/directional/west,
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ux" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/turf/open/floor/catwalk_floor/iron_dark,
+/area/virtual_domain)
+"Uz" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"UF" = (
+/obj/structure/flora/bush/jungle/a/style_random,
+/obj/item/banner/science,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"UJ" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = 2
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"UP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 4
+ },
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"UT" = (
+/obj/structure/flora/bush/leavy/style_3,
+/obj/structure/flora/bush/sparsegrass/style_random,
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/obj/effect/mob_spawn/corpse/human/scientist,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"Ve" = (
+/obj/item/radio/intercom/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Vk" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = -9
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Vr" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/gelpod,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Vs" = (
+/turf/closed/indestructible/rock,
+/area/virtual_domain)
+"Vw" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Vz" = (
+/obj/structure/barricade/security,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"VD" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/spawner/random/trash,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"VG" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/trash/flare,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"VH" = (
+/obj/item/storage/box/lights/mixed,
+/obj/item/flashlight/flare/candle/infinite{
+ pixel_y = 16;
+ icon_state = "candle2_lit";
+ pixel_x = -17
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"VO" = (
+/obj/machinery/door/airlock{
+ name = "Central Emergency Storage"
+ },
+/obj/effect/mapping_helpers/airlock/unres,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"VP" = (
+/obj/structure/rack,
+/obj/item/tank/internals/oxygen,
+/obj/item/tank/internals/oxygen,
+/obj/item/radio/off,
+/obj/item/radio/off,
+/obj/item/radio/intercom/directional/east,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"VT" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/chair,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"VZ" = (
+/obj/structure/extinguisher_cabinet/directional/south,
+/obj/effect/turf_decal/tile/neutral,
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Wf" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/obj/item/crowbar,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Wh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Wl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Wm" = (
+/obj/machinery/light_switch/directional/north,
+/obj/machinery/light/small/directional/north,
+/obj/structure/table/wood,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/under/suit/black_really,
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Wt" = (
+/obj/structure/flora/grass/jungle/b/style_random,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain)
+"Wv" = (
+/obj/machinery/door/firedoor,
+/obj/structure/extinguisher_cabinet/directional/east,
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"WF" = (
+/obj/structure/table/wood,
+/obj/machinery/button/ticket_machine{
+ pixel_x = 38
+ },
+/obj/machinery/light_switch/directional/south{
+ pixel_x = 6;
+ pixel_y = -34
+ },
+/obj/machinery/button/door/directional/south{
+ pixel_x = -6
+ },
+/obj/item/paper_bin/carbon{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/stamp/head/hop{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/machinery/button/door/directional/south{
+ pixel_x = -6;
+ pixel_y = -34
+ },
+/obj/item/pen{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/machinery/button/photobooth{
+ pixel_x = 26
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"WH" = (
+/obj/item/clothing/head/cone{
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/obj/item/crowbar/hammer{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"WL" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/assembly/flash,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"WM" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 1
+ },
+/obj/item/trash/chips,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Xa" = (
+/obj/machinery/requests_console/directional/east{
+ department = "Bridge";
+ name = "Bridge Requests Console"
+ },
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted{
+ dir = 4
+ },
+/obj/machinery/computer/old,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Xj" = (
+/obj/machinery/light/directional/north,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/tile/neutral/half/contrasted{
+ dir = 1
+ },
+/obj/effect/spawner/random/trash/bin,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Xn" = (
+/obj/structure/bed/maint,
+/obj/item/bedsheet/pirate{
+ dir = 4
+ },
+/obj/item/knife/hunting{
+ pixel_y = -4
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Xp" = (
+/obj/effect/turf_decal/plaque{
+ icon_state = "L2"
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Xs" = (
+/obj/effect/mapping_helpers/broken_floor,
+/obj/effect/mine/explosive,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Xw" = (
+/obj/effect/turf_decal/tile/blue,
+/obj/item/boulder{
+ icon_state = "boulder_large";
+ pixel_y = 7
+ },
+/obj/item/boulder{
+ icon_state = "boulder_small";
+ pixel_x = 9;
+ pixel_y = -1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Xx" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/item/flashlight/lantern{
+ light_on = 1
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"XD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"XI" = (
+/obj/structure/frame/computer{
+ dir = 1
+ },
+/obj/item/shard{
+ icon_state = "medium";
+ pixel_x = 5
+ },
+/obj/item/stack/cable_coil/cut,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"XJ" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood{
+ pixel_x = -4
+ },
+/turf/open/floor/wood,
+/area/virtual_domain)
+"XK" = (
+/obj/structure/grille,
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"XL" = (
+/obj/structure/barricade/sandbags,
+/obj/structure/railing/corner/end{
+ dir = 4
+ },
+/obj/structure/marker_beacon/bronze,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"XM" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/item/photo/old{
+ pixel_x = 4
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"XN" = (
+/obj/item/radio/intercom/directional/north,
+/obj/effect/turf_decal/bot,
+/obj/item/wallframe/light_fixture/small,
+/obj/item/stack/cable_coil/cut,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"XW" = (
+/obj/structure/frame/machine/secured,
+/obj/structure/marker_beacon/teal,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Yc" = (
+/obj/structure/bed/medical/emergency,
+/obj/effect/turf_decal/tile/blue/fourcorners,
+/obj/effect/mob_spawn/corpse/human/assistant,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Yd" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Yf" = (
+/obj/machinery/recharger{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/secure_safe/directional/east,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Yg" = (
+/obj/structure/broken_flooring/singular/directional/east,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Yi" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Yl" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/closed/indestructible/binary,
+/area/virtual_domain)
+"Yn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{
+ dir = 8
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Yo" = (
+/obj/structure/sign/plaques/kiddie/perfect_drone{
+ pixel_y = 32
+ },
+/obj/structure/table/wood,
+/obj/item/storage/backpack/duffelbag/drone,
+/obj/structure/window/reinforced/spawner/directional/south,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Yr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/newscaster/directional/east,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/turf_decal/tile/bar,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Ys" = (
+/obj/machinery/airalarm/directional/west,
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Yt" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor1-old"
+ },
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Yv" = (
+/obj/effect/turf_decal/bot_white/left,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/obj/machinery/light/directional/west,
+/obj/item/clothing/head/cone{
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"YA" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/structure/chair/sofa/corp/left{
+ dir = 1
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"YB" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/bluespace_vendor/directional/east,
+/obj/structure/frame/machine/secured,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"YD" = (
+/obj/item/clothing/head/cone{
+ pixel_y = 2;
+ pixel_x = 6
+ },
+/obj/effect/decal/cleanable/glass,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"YG" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"YN" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "floor7"
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"YQ" = (
+/obj/structure/mirror/directional/north,
+/obj/structure/sink/directional/south,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt/dust,
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/fluff/paper/stack{
+ dir = 8
+ },
+/turf/open/floor/iron/white,
+/area/virtual_domain)
+"YR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/public/glass{
+ name = "Command Hallway"
+ },
+/obj/effect/turf_decal/tile/neutral,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"YU" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Za" = (
+/obj/effect/spawner/structure/window,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Zb" = (
+/obj/structure/rack,
+/obj/item/reagent_containers/cup/bottle/potassium{
+ pixel_x = 7;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/phosphorus{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/reagent_containers/cup/bottle/sodium{
+ pixel_x = 1
+ },
+/obj/machinery/light/directional/east,
+/obj/item/radio/intercom/directional/east,
+/turf/open/floor/iron/dark/textured_edge{
+ dir = 4
+ },
+/area/virtual_domain)
+"Zc" = (
+/obj/effect/turf_decal/trimline/blue/filled/warning/corner{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Zh" = (
+/obj/structure/table_frame/wood,
+/obj/item/stack/sheet/mineral/wood,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Zi" = (
+/obj/machinery/status_display/evac/directional/north,
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"Zl" = (
+/obj/machinery/airalarm/directional/south,
+/obj/structure/rack,
+/obj/item/wrench,
+/obj/item/crowbar,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"Zm" = (
+/obj/structure/spacevine{
+ can_spread = 0
+ },
+/obj/effect/spawner/structure/window/reinforced/tinted,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Zp" = (
+/obj/machinery/door/firedoor,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Zq" = (
+/obj/structure/sign/poster/random/directional/west,
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/confetti,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"Zu" = (
+/obj/effect/spawner/random/vending/colavend,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Zx" = (
+/obj/machinery/disposal/bin,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ZC" = (
+/obj/structure/flora/bush/sparsegrass/style_random,
+/turf/open/misc/grass/jungle,
+/area/virtual_domain)
+"ZD" = (
+/obj/item/trash/candy,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ZF" = (
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/virtual_domain)
+"ZG" = (
+/obj/effect/turf_decal/tile/blue{
+ dir = 8
+ },
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ZH" = (
+/obj/item/clothing/head/cone{
+ pixel_y = 3;
+ pixel_x = 7
+ },
+/obj/structure/grille/broken,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"ZK" = (
+/obj/structure/table/wood,
+/obj/item/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ZM" = (
+/obj/item/book/manual/wiki/security_space_law{
+ name = "space law";
+ pixel_y = 2
+ },
+/obj/item/toy/gun,
+/obj/item/restraints/handcuffs,
+/obj/structure/table/wood,
+/obj/item/clothing/head/collectable/hos{
+ name = "novelty HoS hat"
+ },
+/obj/machinery/firealarm/directional/east,
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"ZP" = (
+/obj/machinery/newscaster/directional/south,
+/obj/effect/turf_decal/tile/blue/anticorner/contrasted,
+/obj/structure/closet/crate/trashcart/filled,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ZR" = (
+/obj/machinery/door/airlock/command{
+ name = "Command Desk"
+ },
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ZS" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/light_switch/directional/north,
+/obj/effect/turf_decal/tile/neutral/fourcorners,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"ZT" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters"
+ },
+/turf/open/floor/carpet,
+/area/virtual_domain)
+"ZV" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 4
+ },
+/obj/effect/mob_spawn/corpse/human/assistant,
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"ZY" = (
+/obj/effect/turf_decal/tile/neutral{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/glass,
+/turf/open/floor/iron,
+/area/virtual_domain)
+
+(1,1,1) = {"
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+uz
+HM
+HM
+HM
+HM
+HM
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(2,1,1) = {"
+uz
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+Vs
+Vs
+Vs
+Vs
+Vs
+ps
+ps
+ps
+ps
+ps
+HM
+HM
+HM
+ps
+ps
+pD
+ps
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(3,1,1) = {"
+uz
+HM
+Vs
+Vs
+Vs
+Vs
+Hl
+Hl
+Hl
+Vs
+Vs
+Vs
+ps
+ps
+ps
+ps
+tO
+ps
+ps
+ps
+Hl
+Vs
+Vs
+Hl
+ps
+Ao
+vM
+eB
+ps
+ps
+ps
+ps
+ps
+Zx
+Ii
+ps
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(4,1,1) = {"
+uz
+HM
+Vs
+Vs
+Vs
+DW
+bl
+pr
+Vs
+Vs
+Vs
+Cn
+cK
+Uj
+vN
+Ah
+nP
+nS
+gk
+eA
+Vs
+Vs
+MZ
+nZ
+Lg
+nS
+nS
+Jm
+dU
+xK
+ux
+CM
+KR
+nS
+ro
+ps
+HM
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(5,1,1) = {"
+uz
+HM
+ps
+Vs
+yH
+Hd
+KT
+mc
+Hd
+fj
+dD
+Hd
+oS
+hw
+IL
+Pq
+pT
+dD
+KT
+pc
+mI
+pE
+SR
+dD
+mK
+tR
+Hd
+JD
+Zp
+jR
+Hd
+hw
+Hd
+MG
+kd
+ps
+ps
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(6,1,1) = {"
+HM
+HM
+pD
+yD
+mc
+Lu
+PU
+Ol
+Ol
+Ol
+FV
+Nm
+lY
+Lu
+JL
+RL
+RR
+Ol
+Wv
+Ol
+on
+dd
+Ol
+dd
+ZV
+AX
+Cz
+jt
+rP
+km
+cj
+dd
+dd
+Hd
+pN
+LN
+Hl
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(7,1,1) = {"
+HM
+uS
+uS
+er
+Hb
+Ol
+ps
+Cb
+xj
+xj
+GT
+uS
+uS
+yP
+uS
+uS
+Gx
+uS
+uS
+ps
+kK
+lC
+ac
+fN
+uS
+uS
+uS
+uS
+uS
+uS
+uS
+uS
+qq
+kI
+eZ
+eX
+uB
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(8,1,1) = {"
+HM
+uS
+yc
+th
+Hd
+LS
+ps
+ps
+kn
+ld
+ps
+uS
+pP
+EC
+rQ
+cZ
+db
+dc
+uS
+Zu
+ps
+pQ
+nS
+uS
+rt
+Sa
+Fw
+eV
+iQ
+Ij
+sm
+uS
+hR
+pN
+Fl
+Yc
+Hl
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(9,1,1) = {"
+HM
+Hl
+eB
+Uz
+kv
+SP
+ps
+wD
+FS
+Cw
+dD
+Wh
+dc
+ZF
+Gk
+gU
+YG
+fh
+To
+GT
+No
+cI
+ZY
+lD
+cz
+Bw
+cw
+zj
+zE
+hF
+mW
+kN
+mq
+MG
+NN
+ps
+uB
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(10,1,1) = {"
+HM
+uS
+eB
+WL
+KT
+KP
+ps
+il
+TP
+KW
+fh
+uS
+Yf
+nY
+GS
+rX
+Ue
+ZF
+uS
+dX
+XK
+tq
+tI
+FF
+mq
+oA
+wj
+OC
+uw
+qP
+fK
+yn
+BF
+mw
+BZ
+uB
+HM
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(11,1,1) = {"
+HM
+uS
+uS
+ol
+Mz
+uY
+ps
+iv
+dl
+HS
+fC
+uS
+uS
+uS
+uS
+ML
+DP
+Mk
+uS
+ND
+AP
+rb
+nS
+jk
+Ax
+Wl
+Wl
+lt
+bb
+si
+IH
+kN
+ED
+El
+wq
+ps
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(12,1,1) = {"
+HM
+HM
+uS
+gM
+CL
+aZ
+ps
+ps
+Hg
+tf
+fh
+ps
+rv
+uS
+Ur
+VD
+Xn
+XI
+uS
+XN
+OV
+vN
+Bj
+uS
+QM
+GA
+OD
+ps
+Er
+Sa
+dk
+uS
+LJ
+bm
+zL
+uB
+HM
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(13,1,1) = {"
+uz
+HM
+HH
+JM
+Kl
+VZ
+ps
+Yi
+vA
+mj
+VH
+lJ
+Oq
+uS
+fz
+oM
+db
+rz
+To
+fQ
+TJ
+OU
+Qm
+uS
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+uS
+Fc
+BZ
+hz
+ps
+uB
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(14,1,1) = {"
+uz
+HM
+uS
+nU
+pO
+bs
+VO
+ey
+sr
+fh
+Gs
+pL
+IU
+uS
+dz
+bO
+ww
+nW
+aw
+Ne
+RT
+bg
+Ed
+uS
+kW
+lL
+pI
+Qc
+Fr
+DQ
+Pk
+uS
+Mu
+qY
+ay
+im
+Hl
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(15,1,1) = {"
+uz
+HM
+uS
+qa
+Yt
+uD
+ps
+uS
+hZ
+uS
+uS
+ps
+uf
+uS
+cD
+Kh
+yq
+WF
+uS
+YB
+uS
+TH
+nS
+uS
+ZS
+jD
+kx
+vt
+PT
+pV
+mW
+Pg
+AN
+bZ
+Te
+Gm
+dA
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(16,1,1) = {"
+uz
+HM
+ps
+my
+iy
+Hs
+dE
+SN
+SN
+SN
+uS
+uS
+EQ
+uS
+ps
+ps
+te
+ps
+uS
+uS
+wB
+vg
+pA
+IS
+jm
+cW
+Cd
+CQ
+Lm
+jD
+IH
+vI
+mq
+vn
+Sj
+FT
+dA
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(17,1,1) = {"
+HM
+HM
+ps
+hV
+Hd
+bQ
+hZ
+ii
+SN
+SN
+kp
+sI
+Un
+pJ
+oQ
+Hv
+Xw
+sf
+ny
+JP
+ul
+tq
+Rz
+FF
+iI
+MM
+Vr
+PT
+VP
+Rg
+Gq
+uS
+AV
+Ll
+sX
+Fg
+Hl
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+Yl
+"}
+(18,1,1) = {"
+HM
+ps
+ps
+Rl
+Hd
+cr
+FZ
+fh
+QA
+kp
+uS
+uX
+xu
+JP
+oy
+Hv
+to
+ze
+Bv
+LK
+ul
+pR
+tu
+uS
+uS
+dE
+tn
+cW
+cW
+ps
+ps
+uS
+vW
+wH
+Zc
+JR
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+HM
+"}
+(19,1,1) = {"
+HM
+uS
+SJ
+bS
+pA
+lT
+fh
+fh
+yt
+fh
+Ox
+gg
+Yn
+SK
+ZP
+ps
+ps
+ps
+Mt
+ps
+uS
+PQ
+nS
+dE
+SN
+SN
+as
+tl
+pW
+ST
+tV
+DL
+rr
+Hd
+dD
+ZG
+Za
+sS
+SN
+sS
+SN
+sS
+SN
+sS
+ps
+HM
+"}
+(20,1,1) = {"
+HM
+Hl
+Es
+mc
+Hd
+Ux
+Ux
+lT
+AC
+lT
+vw
+fh
+ug
+ba
+mi
+ps
+uH
+ZK
+JP
+xV
+uS
+WM
+Kf
+uS
+hZ
+hZ
+uS
+Yo
+jh
+pK
+ep
+FF
+GJ
+FR
+Hd
+Ka
+ps
+Fd
+Fd
+Fd
+Fd
+Fd
+Fd
+Fd
+ps
+HM
+"}
+(21,1,1) = {"
+HM
+uS
+RV
+BJ
+Xp
+Ol
+Ad
+vw
+ZH
+uk
+NG
+aA
+SK
+up
+Os
+ps
+ps
+Nl
+YG
+iH
+FF
+dd
+FK
+Of
+qu
+nS
+as
+RX
+Bn
+OS
+ZF
+oI
+MF
+vf
+Xp
+ZG
+ps
+hX
+hX
+hX
+hX
+hX
+Ls
+Fd
+ps
+HM
+"}
+(22,1,1) = {"
+HM
+dP
+tS
+eD
+mf
+Ke
+dE
+ii
+uS
+Qg
+ug
+uT
+qM
+zq
+sc
+Cy
+ps
+Mn
+db
+id
+Nz
+MF
+Hd
+bU
+Mr
+VT
+uS
+lK
+rf
+Ie
+Oh
+uS
+Qp
+ck
+Pa
+oD
+pB
+hX
+zQ
+Lq
+hX
+hX
+hX
+Fd
+ps
+HM
+"}
+(23,1,1) = {"
+HM
+yz
+Vz
+Qw
+bP
+Ol
+hZ
+SN
+kp
+zP
+xu
+Mb
+RJ
+JP
+YG
+wL
+ps
+Dp
+qk
+UJ
+Nz
+cp
+ub
+ZD
+lb
+LP
+uS
+wo
+Ar
+jC
+Zh
+an
+PC
+pA
+lM
+Bp
+LD
+hX
+hX
+hX
+hX
+hX
+hX
+Fd
+ps
+HM
+"}
+(24,1,1) = {"
+HM
+yz
+Vz
+wN
+Om
+wi
+dE
+SN
+kp
+SG
+Vw
+bW
+MC
+hU
+TL
+DP
+ZR
+JP
+kg
+zo
+zx
+AD
+iy
+Kw
+yH
+Dx
+oI
+ZF
+vw
+Km
+fh
+MS
+mt
+EV
+zB
+Io
+vw
+hX
+hX
+fD
+Cx
+hX
+hX
+Fd
+ps
+HM
+"}
+(25,1,1) = {"
+HM
+yz
+Vz
+wN
+Cr
+nS
+hZ
+SN
+kp
+zP
+JP
+yh
+Hw
+wA
+hh
+mb
+ps
+nw
+se
+xW
+lk
+Ad
+CJ
+Hd
+KA
+lG
+uS
+Wm
+Mj
+fh
+Oj
+vw
+fh
+Kv
+PG
+KF
+gC
+hX
+hX
+hX
+hX
+hX
+hX
+Fd
+ps
+HM
+"}
+(26,1,1) = {"
+HM
+tO
+Oe
+wN
+vy
+Wf
+dE
+LB
+uS
+Bt
+gt
+Xx
+HX
+ET
+JK
+Sl
+ps
+wY
+YG
+Gr
+yx
+Or
+ie
+bU
+qJ
+bR
+uS
+MP
+fh
+GG
+Fp
+uS
+wN
+wN
+Rj
+fB
+wP
+hX
+hX
+hX
+Ca
+hX
+hX
+Fd
+ps
+HM
+"}
+(27,1,1) = {"
+HM
+ps
+CK
+ht
+Ty
+YA
+hZ
+Il
+kp
+BK
+di
+Mb
+Yd
+cO
+KQ
+ps
+ps
+Ht
+rJ
+VG
+FF
+RB
+qL
+jd
+LP
+Bg
+mo
+br
+ZF
+rW
+Mj
+oI
+MF
+ra
+BN
+yK
+ps
+hX
+hX
+hX
+hX
+hX
+rs
+Fd
+ps
+HM
+"}
+(28,1,1) = {"
+HM
+ps
+Xj
+Hd
+Hd
+Ua
+hZ
+SN
+kp
+Sq
+Eu
+ix
+iP
+aQ
+ez
+ps
+uH
+FI
+Ms
+KN
+uS
+Bh
+re
+uS
+dE
+dE
+uS
+oH
+Mj
+gE
+xI
+FF
+Gi
+Hd
+aC
+Uo
+lE
+Fd
+Fd
+Fd
+Fd
+Fd
+Fd
+Fd
+ps
+HM
+"}
+(29,1,1) = {"
+HM
+ps
+cx
+rj
+kI
+ZY
+dE
+SN
+kp
+Mo
+Kn
+Ss
+at
+yy
+HC
+ps
+ps
+ps
+Mt
+ps
+uS
+zw
+Ol
+hZ
+SN
+SN
+as
+RI
+Pd
+TN
+ZM
+an
+sB
+kI
+Hd
+Cg
+Za
+sS
+SN
+sS
+SN
+sS
+SN
+sS
+ps
+HM
+"}
+(30,1,1) = {"
+HM
+ps
+ps
+hi
+Hd
+hg
+dE
+SN
+kp
+kp
+uS
+pb
+iZ
+bu
+kt
+Hv
+EF
+SK
+SK
+tk
+ul
+dd
+yw
+uS
+uS
+dE
+uS
+ps
+ps
+ps
+ps
+uS
+rh
+PY
+Ou
+CA
+lQ
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+HM
+"}
+(31,1,1) = {"
+HM
+HM
+ps
+sF
+pX
+vi
+hZ
+SN
+SN
+Mm
+kp
+Xa
+fF
+DU
+RZ
+Hv
+Iw
+qI
+Bv
+Bv
+ul
+wa
+tM
+Nh
+zg
+Fj
+NO
+hv
+uA
+yN
+Ff
+uS
+tq
+Hd
+DV
+UF
+Zm
+Vs
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+"}
+(32,1,1) = {"
+uz
+HM
+Hl
+Ny
+yH
+DF
+dE
+SN
+GD
+RD
+uS
+uS
+uS
+zA
+jG
+uS
+uS
+uS
+BP
+uS
+wB
+dd
+pA
+Nh
+Uq
+Rj
+wu
+XD
+wu
+Rx
+jx
+uS
+cC
+HG
+Gy
+mO
+wl
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(33,1,1) = {"
+uz
+HM
+yz
+Ny
+fn
+Mq
+uS
+uS
+uS
+uS
+uS
+Hh
+uS
+uS
+uS
+uS
+Ov
+rq
+db
+LG
+uS
+hd
+Ol
+lx
+vU
+hp
+lu
+ok
+hc
+fK
+op
+uS
+Ra
+nq
+Cc
+zR
+ge
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(34,1,1) = {"
+uz
+HM
+ps
+cN
+vO
+XM
+uS
+uP
+ab
+hb
+ps
+YQ
+ps
+Py
+PP
+qz
+jF
+QQ
+YG
+YG
+BP
+Yg
+pv
+uS
+FN
+AR
+eR
+Zb
+zT
+IH
+dZ
+uS
+PQ
+DV
+ej
+tw
+Zm
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(35,1,1) = {"
+uz
+HM
+ps
+au
+Ay
+TW
+uS
+Zi
+vK
+wn
+ps
+aO
+ps
+ry
+ZF
+gE
+mP
+vV
+vV
+FA
+uS
+TC
+mQ
+uS
+uS
+AA
+AA
+uS
+hZ
+hG
+hZ
+uS
+TT
+Gy
+aV
+yO
+lQ
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(36,1,1) = {"
+uz
+HM
+ps
+LL
+KT
+LV
+uS
+yC
+jc
+UP
+ps
+OE
+ps
+xb
+XJ
+Iq
+sA
+MJ
+SY
+tj
+uS
+dd
+ai
+ty
+uS
+bT
+ss
+Yv
+dY
+Dk
+Vk
+FC
+mq
+UT
+SF
+MN
+lQ
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(37,1,1) = {"
+uz
+HM
+Hl
+dd
+Hd
+nS
+pd
+YN
+dc
+rO
+yI
+gE
+ZT
+kc
+yM
+ki
+vw
+vK
+QN
+Ir
+uS
+ud
+xd
+sa
+uS
+Nr
+XW
+Kq
+Ii
+Hd
+fK
+FC
+mq
+cH
+gb
+ZC
+Ec
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(38,1,1) = {"
+uz
+HM
+yz
+dd
+Hd
+FZ
+WH
+Oi
+tF
+YU
+Jh
+gE
+ps
+jy
+qS
+Sr
+fh
+fh
+aT
+SH
+uS
+Fh
+Ol
+Gn
+uS
+Nq
+iY
+Dc
+dC
+jz
+qr
+FC
+mq
+Gy
+DC
+od
+FO
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(39,1,1) = {"
+uz
+HM
+yz
+fh
+mc
+yE
+Oi
+SN
+Oi
+YD
+zO
+sz
+ps
+ps
+uS
+uS
+OX
+Xs
+fh
+uS
+uS
+dd
+iK
+uS
+uS
+uS
+uS
+uS
+uS
+oo
+uS
+FF
+fr
+DV
+MN
+EH
+iA
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(40,1,1) = {"
+uz
+HM
+Hl
+pA
+Hd
+Kr
+Oi
+GD
+rm
+Oi
+bd
+Zl
+ps
+Hc
+uS
+ek
+vw
+eG
+xe
+Ji
+DO
+dd
+Ol
+DO
+ey
+eu
+fh
+wV
+vw
+ja
+Tm
+DO
+tq
+Hd
+tW
+lQ
+uq
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(41,1,1) = {"
+uz
+HM
+KM
+dd
+Hd
+lU
+Rn
+Oi
+Oi
+AM
+CC
+uS
+uS
+Ml
+uS
+DO
+ps
+ps
+ps
+ps
+ut
+hj
+YR
+tO
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+JG
+Hd
+sZ
+ps
+lQ
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(42,1,1) = {"
+uz
+HM
+ps
+nO
+kI
+nS
+FZ
+bw
+lN
+IC
+SC
+gj
+Qq
+lv
+Lg
+Oc
+IJ
+Ys
+EK
+Zq
+En
+tq
+bf
+tq
+av
+Qh
+Sx
+Ve
+tq
+Uv
+BM
+DA
+fP
+NR
+eN
+FG
+Vs
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(43,1,1) = {"
+uz
+HM
+ps
+dd
+mR
+mc
+Hd
+KT
+Ay
+fh
+Hd
+vw
+mc
+KT
+Lh
+nz
+oO
+Lz
+zb
+vw
+Hd
+Hd
+kI
+XL
+KT
+oS
+mR
+XL
+GQ
+fP
+fP
+Sz
+fP
+Dl
+Wt
+yT
+Vs
+HM
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(44,1,1) = {"
+uz
+HM
+ps
+dd
+jt
+km
+dd
+Nu
+JY
+HP
+HP
+vo
+Ui
+Yr
+Bd
+PR
+Vs
+Vs
+Sm
+fG
+Bd
+Od
+rC
+NZ
+kM
+IM
+AQ
+fc
+cB
+Vs
+Vs
+cF
+qv
+fP
+st
+RE
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(45,1,1) = {"
+uz
+HM
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+DM
+DM
+DM
+ps
+ps
+Hl
+Hl
+Vs
+Vs
+Vs
+Hl
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+ps
+Vs
+Vs
+ps
+Hl
+Vs
+Vs
+Vs
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
+(46,1,1) = {"
+uz
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+HM
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+uz
+"}
diff --git a/_maps/virtual_domains/pipedream.dmm b/_maps/virtual_domains/pipedream.dmm
index dd7fdd90f8b..3ef049d6956 100644
--- a/_maps/virtual_domains/pipedream.dmm
+++ b/_maps/virtual_domains/pipedream.dmm
@@ -22,6 +22,12 @@
},
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"aK" = (
+/turf/open/space/basic,
+/area/space/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aL" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted,
/turf/open/floor/iron,
@@ -103,9 +109,12 @@
},
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
"dr" = (
/turf/open/space/basic,
/area/space/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dx" = (
/obj/effect/turf_decal/trimline/yellow/line,
/obj/item/shard,
@@ -741,6 +750,13 @@
icon_state = "carpet_royalblue-207"
},
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"wl" = (
+/obj/item/shard,
+/turf/open/space/basic,
+/area/space/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wm" = (
/obj/effect/turf_decal/tile/yellow/half/contrasted{
dir = 1
@@ -792,10 +808,13 @@
},
/turf/open/floor/plating,
/area/virtual_domain)
+<<<<<<< HEAD
"xc" = (
/obj/effect/baseturf_helper/virtual_domain,
/turf/closed/indestructible/binary,
/area/virtual_domain/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xj" = (
/obj/structure/railing/corner/end{
dir = 4
@@ -828,6 +847,13 @@
/obj/machinery/light/broken,
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"xF" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"xM" = (
/obj/effect/turf_decal/trimline/yellow/line{
dir = 4
@@ -859,10 +885,13 @@
/obj/structure/fans/tiny,
/turf/open/floor/plating,
/area/virtual_domain)
+<<<<<<< HEAD
"zn" = (
/obj/item/stack/rods/two,
/turf/open/space/basic,
/area/space/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zp" = (
/obj/structure/chair/sofa/corp/right{
dir = 1
@@ -894,6 +923,13 @@
/obj/machinery/light/broken,
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"Av" = (
+/obj/item/stack/rods/two,
+/turf/open/space/basic,
+/area/space/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Aw" = (
/obj/structure/lattice/catwalk{
name = "industrial lift"
@@ -1107,9 +1143,12 @@
icon_state = "carpet_royalblue-21"
},
/area/virtual_domain)
+<<<<<<< HEAD
"Gf" = (
/turf/closed/indestructible/binary,
/area/virtual_domain/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Gh" = (
/obj/machinery/door/airlock/maintenance,
/turf/open/floor/plating,
@@ -1145,10 +1184,13 @@
/obj/effect/turf_decal/trimline/yellow/arrow_ccw,
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
"GQ" = (
/obj/item/shard,
/turf/open/space/basic,
/area/space/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"GV" = (
/obj/machinery/light/small/red/dim{
dir = 8
@@ -1220,10 +1262,13 @@
/obj/structure/sign/warning/doors/directional/east,
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
"Jo" = (
/obj/effect/smooths_with_walls,
/turf/closed/indestructible/binary,
/area/virtual_domain/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jq" = (
/obj/structure/broken_flooring/pile{
dir = 1
@@ -1535,6 +1580,16 @@
/obj/machinery/disposal/bin,
/turf/open/floor/iron,
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"RI" = (
+/obj/effect/smooths_with_walls,
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"RJ" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"RK" = (
/obj/effect/decal/cleanable/blood/drip,
/turf/open/floor/iron,
@@ -1919,6 +1974,7 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
Gf
@@ -1932,6 +1988,21 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RI
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -1969,7 +2040,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rO
rO
eg
@@ -1981,7 +2056,11 @@ eg
Xb
rO
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -2019,7 +2098,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rO
Bx
SZ
@@ -2031,6 +2114,7 @@ OQ
bs
Ib
rO
+<<<<<<< HEAD
Gf
Gf
Gf
@@ -2039,6 +2123,16 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
"}
@@ -2061,6 +2155,7 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
Gf
@@ -2070,6 +2165,17 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
ho
ho
@@ -2081,6 +2187,7 @@ pa
bs
zp
eY
+<<<<<<< HEAD
Gf
Gf
rO
@@ -2091,6 +2198,18 @@ rO
Gf
Gf
xc
+=======
+RJ
+RJ
+rO
+RJ
+RJ
+rO
+rO
+RJ
+RJ
+xF
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(5,1,1) = {"
yQ
@@ -2111,7 +2230,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Jo
+=======
+RI
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
eg
eg
@@ -2119,7 +2242,11 @@ eg
eg
eg
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
um
DP
@@ -2140,7 +2267,11 @@ AU
rO
rO
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(6,1,1) = {"
yQ
@@ -2161,7 +2292,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
vA
Dr
@@ -2169,7 +2304,11 @@ bw
Jq
gc
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
Hn
fK
@@ -2184,13 +2323,22 @@ eY
rO
Ez
AU
+<<<<<<< HEAD
dr
dr
+=======
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AU
AU
BN
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(7,1,1) = {"
yQ
@@ -2211,7 +2359,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
jQ
lW
@@ -2219,7 +2371,11 @@ kU
vU
lN
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
QI
Fo
@@ -2235,12 +2391,21 @@ rO
AU
AU
BN
+<<<<<<< HEAD
dr
dr
dr
AU
rO
Gf
+=======
+aK
+aK
+aK
+AU
+rO
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(8,1,1) = {"
yQ
@@ -2261,7 +2426,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
uU
gj
@@ -2269,7 +2438,11 @@ lt
pb
OR
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
eg
uk
@@ -2280,6 +2453,7 @@ eg
qV
Vb
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2291,6 +2465,19 @@ dr
dr
dr
Gf
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(9,1,1) = {"
yQ
@@ -2311,7 +2498,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
ki
gj
@@ -2319,7 +2510,11 @@ kU
kU
kU
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
kU
kU
@@ -2330,6 +2525,7 @@ Qj
FK
nc
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2341,6 +2537,19 @@ dr
dr
dr
Gf
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+AU
+aK
+aK
+aK
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(10,1,1) = {"
yQ
@@ -2356,12 +2565,21 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Jo
Gf
Gf
Gf
Gf
+=======
+RJ
+RI
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
eg
kJ
@@ -2369,7 +2587,11 @@ lx
lx
lp
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
mu
AJ
@@ -2380,6 +2602,7 @@ BW
hi
Sg
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2391,6 +2614,19 @@ dr
dr
dr
Gf
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(11,1,1) = {"
yQ
@@ -2399,6 +2635,7 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
Gf
@@ -2407,6 +2644,16 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
eg
eg
@@ -2430,17 +2677,28 @@ XR
vQ
Vg
eY
+<<<<<<< HEAD
dr
dr
dr
+=======
+aK
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JR
JR
JR
JR
JR
Qo
+<<<<<<< HEAD
dr
Gf
+=======
+aK
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(12,1,1) = {"
yQ
@@ -2449,7 +2707,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
eg
eg
@@ -2481,16 +2743,26 @@ hi
CX
eY
eY
+<<<<<<< HEAD
dr
dr
+=======
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JR
JR
JR
JR
JR
JR
+<<<<<<< HEAD
dr
Gf
+=======
+aK
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(13,1,1) = {"
yQ
@@ -2498,8 +2770,13 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
+=======
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
VA
bA
@@ -2539,8 +2816,13 @@ JR
JR
JR
JR
+<<<<<<< HEAD
dr
Gf
+=======
+aK
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(14,1,1) = {"
yQ
@@ -2548,7 +2830,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kU
kU
Zy
@@ -2589,6 +2875,7 @@ JR
JR
JR
JR
+<<<<<<< HEAD
dr
Gf
"}
@@ -2600,6 +2887,19 @@ Gf
Gf
Gf
Gf
+=======
+aK
+RJ
+"}
+(15,1,1) = {"
+yQ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
kU
QP
kU
@@ -2639,17 +2939,30 @@ JR
JR
JR
JR
+<<<<<<< HEAD
dr
Gf
"}
(16,1,1) = {"
yQ
Gf
+=======
+aK
+RJ
+"}
+(16,1,1) = {"
+yQ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rO
rO
rO
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
eg
eg
@@ -2681,20 +2994,34 @@ FK
CX
eY
eY
+<<<<<<< HEAD
dr
dr
+=======
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JR
JR
JR
JR
JR
JR
+<<<<<<< HEAD
dr
Gf
"}
(17,1,1) = {"
yQ
Gf
+=======
+aK
+RJ
+"}
+(17,1,1) = {"
+yQ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rO
BN
AU
@@ -2730,15 +3057,22 @@ kU
FK
rz
eY
+<<<<<<< HEAD
dr
dr
dr
+=======
+aK
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JR
JR
JR
JR
JR
ev
+<<<<<<< HEAD
dr
Gf
"}
@@ -2751,6 +3085,20 @@ AU
AU
dr
dr
+=======
+aK
+RJ
+"}
+(18,1,1) = {"
+yQ
+RJ
+aK
+AU
+AU
+AU
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
Ct
oN
@@ -2780,6 +3128,7 @@ UO
hi
CX
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2801,6 +3150,29 @@ dr
dr
GQ
dr
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+"}
+(19,1,1) = {"
+RJ
+RJ
+aK
+aK
+aK
+aK
+wl
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yX
ve
Tt
@@ -2830,6 +3202,7 @@ kU
hi
Ok
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2851,6 +3224,29 @@ dr
dr
dr
dr
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+"}
+(20,1,1) = {"
+RJ
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tr
uz
Mh
@@ -2881,6 +3277,7 @@ Ci
YP
eY
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2900,6 +3297,27 @@ dr
dr
dr
zn
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+"}
+(21,1,1) = {"
+RJ
+aK
+aK
+aK
+aK
+aK
+Av
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
BN
tr
kU
@@ -2931,6 +3349,7 @@ hi
hi
af
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2950,6 +3369,27 @@ dr
dr
dr
dr
+=======
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+"}
+(22,1,1) = {"
+RJ
+aK
+aK
+aK
+aK
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AU
eg
eg
@@ -2981,6 +3421,7 @@ hi
lN
QK
eY
+<<<<<<< HEAD
dr
dr
dr
@@ -2999,6 +3440,26 @@ dr
dr
dr
dr
+=======
+aK
+aK
+aK
+aK
+BN
+aK
+aK
+aK
+aK
+RJ
+"}
+(23,1,1) = {"
+RJ
+aK
+aK
+aK
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AU
AU
rO
@@ -3031,6 +3492,7 @@ hi
hi
Nc
eY
+<<<<<<< HEAD
dr
BN
AU
@@ -3048,11 +3510,34 @@ Gf
dr
dr
dr
+=======
+aK
+BN
+AU
+aK
+aK
+aK
+aK
+aK
+aK
+RJ
+"}
+(24,1,1) = {"
+RJ
+RJ
+aK
+aK
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AU
Ez
rO
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rO
rO
Vy
@@ -3068,8 +3553,13 @@ jv
fR
cB
rO
+<<<<<<< HEAD
Gf
Gf
+=======
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
Ry
hk
@@ -3085,6 +3575,7 @@ rO
rO
AU
AU
+<<<<<<< HEAD
dr
dr
dr
@@ -3096,13 +3587,31 @@ Gf
yQ
Gf
dr
+=======
+aK
+aK
+aK
+aK
+rO
+RJ
+"}
+(25,1,1) = {"
+yQ
+RJ
+aK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AU
BN
AU
rO
rO
+<<<<<<< HEAD
Gf
Gf
+=======
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eY
Xm
TH
@@ -3118,8 +3627,13 @@ uP
Ge
vb
eg
+<<<<<<< HEAD
Gf
Gf
+=======
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
rO
rO
@@ -3130,6 +3644,7 @@ eg
eg
rO
rO
+<<<<<<< HEAD
Jo
Gf
rO
@@ -3153,6 +3668,31 @@ rO
Gf
Gf
Gf
+=======
+RI
+RJ
+rO
+rO
+rO
+RJ
+RJ
+rO
+rO
+rO
+RJ
+"}
+(26,1,1) = {"
+yQ
+RJ
+RJ
+RJ
+RJ
+rO
+rO
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eY
Bd
vL
@@ -3168,6 +3708,7 @@ wh
Zg
Nu
eg
+<<<<<<< HEAD
Gf
Gf
Gf
@@ -3191,18 +3732,52 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RI
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(27,1,1) = {"
yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
Gf
Gf
yQ
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+yQ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eY
Jl
RK
@@ -3218,7 +3793,11 @@ bx
Cv
Nu
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3252,7 +3831,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eY
NW
UY
@@ -3268,7 +3851,11 @@ wq
Zg
Nu
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3302,7 +3889,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eY
xk
Te
@@ -3318,7 +3909,11 @@ ZI
Ex
xE
eg
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3352,7 +3947,11 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eY
eY
eY
@@ -3368,7 +3967,11 @@ xM
Qv
LU
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3402,11 +4005,19 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
Gs
jH
@@ -3418,7 +4029,11 @@ eg
rO
rO
rO
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3456,12 +4071,17 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eg
Ok
nz
IK
eg
+<<<<<<< HEAD
Gf
Gf
Gf
@@ -3469,6 +4089,15 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3506,13 +4135,22 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
+=======
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
rO
CX
hi
Nu
+<<<<<<< HEAD
Gf
Gf
+=======
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3556,6 +4194,7 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
rO
CX
@@ -3563,6 +4202,15 @@ Gf
Lp
eg
Gf
+=======
+RJ
+rO
+CX
+RJ
+Lp
+eg
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3606,6 +4254,7 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
fl
@@ -3613,6 +4262,15 @@ Gf
Gf
Gf
Gf
+=======
+RJ
+RJ
+fl
+RJ
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
@@ -3657,9 +4315,15 @@ yQ
yQ
yQ
yQ
+<<<<<<< HEAD
Gf
Gf
Gf
+=======
+RJ
+RJ
+RJ
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
yQ
yQ
yQ
diff --git a/_maps/virtual_domains/pirates.dmm b/_maps/virtual_domains/pirates.dmm
index 3f6b66d6d44..9c177370930 100644
--- a/_maps/virtual_domains/pirates.dmm
+++ b/_maps/virtual_domains/pirates.dmm
@@ -1,8 +1,21 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+<<<<<<< HEAD
+=======
+"af" = (
+/obj/structure/flora/rock/pile/style_2,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"al" = (
/obj/structure/flora/bush/sunny,
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"au" = (
+/turf/open/water/beach,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"bb" = (
/obj/effect/turf_decal/weather/sand,
/turf/open/floor/wood,
@@ -12,6 +25,7 @@
dir = 10
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"br" = (
/obj/structure/flora/grass/jungle/b,
/turf/open/misc/dirt/jungle,
@@ -26,6 +40,41 @@
},
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+"be" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/structure/flora/rock/pile,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space)
+"bI" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/gun/energy/laser/musket{
+ pixel_y = 7
+ },
+/obj/item/gun/energy/laser/musket{
+ pixel_y = 2
+ },
+/obj/item/gun/energy/laser/musket{
+ pixel_y = -3
+ },
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+"cr" = (
+/obj/item/stack/cannonball/shellball{
+ pixel_x = 13;
+ pixel_y = 11
+ },
+/obj/item/stack/cannonball{
+ pixel_x = 9;
+ pixel_y = 9
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cX" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/item/claymore/cutlass,
@@ -41,6 +90,7 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"dc" = (
/turf/open/misc/beach/coast/corner,
/area/virtual_domain/fullbright)
@@ -73,6 +123,18 @@
},
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+"db" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space)
+"dc" = (
+/turf/open/misc/beach/coast/corner,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"dN" = (
/obj/machinery/door/airlock/vault{
color = "#825427";
@@ -80,9 +142,31 @@
},
/turf/open/floor/wood/parquet,
/area/virtual_domain)
+<<<<<<< HEAD
"eS" = (
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+=======
+"eO" = (
+/obj/structure/flora/rock/pile,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space/fullbright)
+"eP" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/misc/beach/coast{
+ dir = 6
+ },
+/area/virtual_domain/protected_space)
+"eS" = (
+/turf/open/misc/beach/sand,
+/area/virtual_domain/fullbright)
+"fd" = (
+/obj/structure/flora/grass/jungle/b,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fh" = (
/obj/structure/flora/bush/sparsegrass,
/obj/structure/flora/bush/lavendergrass,
@@ -92,10 +176,26 @@
/obj/structure/flora/bush/sparsegrass/style_random,
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"fw" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fR" = (
/obj/effect/baseturf_helper/virtual_domain,
/turf/closed/indestructible/binary,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"gc" = (
+/obj/structure/flora/rock/pile/jungle/style_2,
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gf" = (
/obj/effect/turf_decal/weather/sand{
dir = 5
@@ -121,11 +221,19 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"gD" = (
+/obj/item/flashlight/flare/torch,
+/turf/open/misc/beach/sand,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"gK" = (
/obj/structure/flora/bush/flowers_br/style_random,
/obj/structure/flora/bush/ferny,
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"gN" = (
/obj/structure/fermenting_barrel/gunpowder{
pixel_x = -4;
@@ -150,6 +258,21 @@
},
/obj/effect/turf_decal/weather/dirt,
/turf/open/water/beach,
+=======
+"hb" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"hn" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 4
+ },
+/turf/open/water/beach,
+/area/virtual_domain/protected_space)
+"hq" = (
+/obj/structure/closet/crate/grave,
+/obj/structure/flora/grass/jungle/b,
+/turf/open/misc/dirt/jungle,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain/protected_space)
"jp" = (
/obj/effect/landmark/bitrunning/cache_spawn,
@@ -167,6 +290,7 @@
/obj/structure/flora/bush/fullgrass/style_random,
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"ki" = (
/obj/effect/turf_decal/weather/dirt{
dir = 4
@@ -186,6 +310,8 @@
},
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"lF" = (
/obj/structure/table/wood,
/obj/item/melee/energy/sword/pirate{
@@ -216,29 +342,71 @@
/obj/effect/decal/cleanable/oil/streak,
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"lM" = (
/obj/structure/flora/rock/pile/style_3,
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"mp" = (
/turf/open/misc/beach/coast{
dir = 4
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"na" = (
/obj/effect/turf_decal/weather/dirt,
/obj/structure/flora/rock/pile,
/turf/open/water/beach,
/area/virtual_domain/protected_space)
+=======
+"nb" = (
+/obj/structure/fermenting_barrel{
+ pixel_x = 6;
+ pixel_y = 11
+ },
+/obj/effect/turf_decal/weather/sand{
+ dir = 9
+ },
+/obj/effect/mob_spawn/ghost_role/human/virtual_domain/pirate,
+/turf/open/floor/wood{
+ icon_state = "wood_large"
+ },
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"nr" = (
/mob/living/basic/trooper/pirate/melee,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"nN" = (
+/obj/structure/flora/rock,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space/fullbright)
+"nQ" = (
+/turf/closed/wall/mineral/wood/nonmetal,
+/area/virtual_domain/protected_space/fullbright)
+"oB" = (
+/obj/structure/flora/grass/jungle,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"oL" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/structure/bed/maint,
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"oM" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"pi" = (
/obj/structure/flora/rock/style_3,
/turf/open/water/beach,
@@ -247,18 +415,35 @@
/obj/structure/flora/bush/flowers_br/style_random,
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"ps" = (
+/obj/machinery/smartfridge/drying/rack,
+/turf/open/misc/beach/sand,
+/area/virtual_domain/fullbright)
+"py" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain/protected_space/fullbright)
+"qk" = (
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qE" = (
/obj/structure/table/wood,
/obj/item/book/manual/wiki/ordnance,
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
"qR" = (
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"qS" = (
/obj/effect/decal/cleanable/ants,
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"qT" = (
/obj/effect/turf_decal/weather/dirt{
dir = 1
@@ -269,6 +454,8 @@
/obj/machinery/smartfridge/drying/rack,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ri" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -277,6 +464,32 @@
/mob/living/basic/trooper/pirate/ranged/space,
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"rm" = (
+/obj/structure/closet/crate/goldcrate,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+"rn" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/flashlight/flare/torch{
+ pixel_y = 10;
+ pixel_x = 7
+ },
+/obj/item/reagent_containers/cup/bucket/wooden{
+ pixel_y = -16;
+ pixel_x = 12
+ },
+/obj/machinery/recharger{
+ pixel_y = 6;
+ pixel_x = -5
+ },
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ru" = (
/obj/effect/mapping_helpers/broken_floor,
/obj/effect/decal/cleanable/dirt/dust,
@@ -288,16 +501,25 @@
/obj/item/toy/plush/beeplushie,
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"sb" = (
+/turf/open/water/beach,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sj" = (
/obj/effect/mine/explosive/light,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"sH" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
},
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"td" = (
/obj/effect/decal/cleanable/dirt/dust,
/obj/effect/landmark/bitrunning/cache_spawn,
@@ -308,6 +530,12 @@
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/wood/parquet,
/area/virtual_domain)
+<<<<<<< HEAD
+=======
+"tA" = (
+/turf/closed/mineral/random/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"tH" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/head/costume/pirate/armored,
@@ -324,10 +552,13 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"tR" = (
/obj/effect/landmark/bitrunning/cache_spawn,
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"ub" = (
/turf/template_noop,
/area/virtual_domain/safehouse)
@@ -360,6 +591,7 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"uS" = (
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
@@ -387,6 +619,14 @@
},
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+"vR" = (
+/obj/effect/turf_decal/siding/wood{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wj" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -395,6 +635,7 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"wn" = (
/obj/effect/turf_decal/siding/wood{
dir = 1
@@ -411,6 +652,19 @@
},
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+"wu" = (
+/obj/structure/flora/grass/jungle/b{
+ pixel_x = -15;
+ pixel_y = 9
+ },
+/obj/structure/flora/rock/pile/jungle/large/style_2{
+ pixel_x = -3;
+ pixel_y = -1
+ },
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wH" = (
/obj/structure/fluff/beach_umbrella{
pixel_x = -7;
@@ -434,14 +688,41 @@
"xp" = (
/turf/open/water/beach,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"yF" = (
+/obj/effect/light_emitter{
+ set_cap = 3;
+ set_luminosity = 5
+ },
+/turf/open/misc/beach/coast,
+/area/virtual_domain/fullbright)
+"zc" = (
+/obj/item/gun/energy/laser/hellgun{
+ pixel_y = 10
+ },
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"zj" = (
/obj/effect/mapping_helpers/burnt_floor,
/obj/effect/decal/cleanable/garbage,
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"zA" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/mapping_helpers/broken_floor,
+=======
+"zk" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/item/melee/sabre{
+ pixel_y = 12;
+ pixel_x = -10
+ },
+/obj/item/gun/energy/laser/retro,
+/obj/effect/decal/cleanable/dirt/dust,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
"zR" = (
@@ -501,6 +782,7 @@
/obj/structure/bonfire/prelit,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"Ca" = (
/obj/effect/baseturf_helper/virtual_domain,
/turf/closed/indestructible/binary,
@@ -521,6 +803,17 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+=======
+"BX" = (
+/obj/structure/flora/bush/sunny/style_3{
+ pixel_y = 22
+ },
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+"Ci" = (
+/turf/closed/wall/mineral/wood/nonmetal,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Cu" = (
/obj/item/kirbyplants/organic/plant21{
pixel_x = -8
@@ -530,6 +823,7 @@
},
/turf/open/floor/wood/parquet,
/area/virtual_domain)
+<<<<<<< HEAD
"DM" = (
/turf/closed/mineral/random/jungle,
/area/virtual_domain/fullbright)
@@ -564,6 +858,20 @@
/obj/structure/closet/cabinet,
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+"CL" = (
+/obj/structure/flora/rock/pile/jungle/large,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+"Dd" = (
+/obj/effect/turf_decal/siding/wood,
+/obj/effect/mapping_helpers/broken_floor,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+"DM" = (
+/turf/closed/mineral/random/jungle,
+/area/virtual_domain/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Eb" = (
/obj/structure/flora/tree/palm,
/turf/open/misc/beach/sand,
@@ -595,6 +903,13 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"Gl" = (
+/obj/structure/flora/rock/pile/style_3,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Gy" = (
/obj/structure/flora/rock/style_2,
/turf/open/water/beach,
@@ -610,12 +925,25 @@
},
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
"Ic" = (
+=======
+"Iv" = (
+/obj/structure/flora/rock/style_3,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space/fullbright)
+"ID" = (
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+"IW" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/weather/dirt{
dir = 5
},
/turf/open/water/beach,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"In" = (
/obj/effect/turf_decal/siding/wood,
/obj/effect/decal/cleanable/dirt/dust,
@@ -628,6 +956,8 @@
},
/turf/open/misc/beach/coast,
/area/virtual_domain/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Jf" = (
/obj/structure/flora/bush/sparsegrass,
/turf/open/misc/grass,
@@ -646,10 +976,13 @@
/obj/structure/bed/double,
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
"JF" = (
/obj/structure/flora/rock,
/turf/open/water/beach,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"JK" = (
/obj/structure/flora/bush/stalky{
pixel_y = 13;
@@ -662,9 +995,15 @@
dir = 1
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"Ka" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
+=======
+"KP" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/closed/indestructible/binary,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain/protected_space/fullbright)
"KS" = (
/obj/effect/turf_decal/siding/wood{
@@ -674,6 +1013,7 @@
/obj/effect/landmark/bitrunning/cache_spawn,
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
"KW" = (
/obj/structure/flora/grass/jungle,
/turf/open/misc/dirt/jungle,
@@ -683,24 +1023,55 @@
/turf/open/misc/grass,
/area/virtual_domain/fullbright)
"LO" = (
+=======
+"KU" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/light_emitter{
set_cap = 3;
set_luminosity = 5
},
/turf/open/water/beach,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"KV" = (
+/obj/structure/flora/rock/pile/jungle/style_3{
+ pixel_x = -15;
+ pixel_y = -4
+ },
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+"Li" = (
+/turf/closed/mineral/random/jungle,
+/area/virtual_domain/protected_space/fullbright)
+"LC" = (
+/mob/living/basic/trooper/pirate/melee,
+/turf/open/misc/grass,
+/area/virtual_domain/fullbright)
+"LK" = (
+/obj/structure/fermenting_barrel/gunpowder{
+ pixel_x = -4;
+ pixel_y = 17
+ },
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"LP" = (
/obj/effect/turf_decal/weather/sand{
dir = 5
},
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"LX" = (
/turf/closed/wall/mineral/wood/nonmetal,
/area/virtual_domain/protected_space/fullbright)
"Mc" = (
/turf/closed/indestructible/binary,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Mf" = (
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood{
@@ -711,6 +1082,7 @@
/obj/structure/barricade/sandbags,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"MJ" = (
/obj/structure/closet/crate/goldcrate,
/turf/open/misc/dirt/jungle,
@@ -720,15 +1092,20 @@
/obj/effect/turf_decal/weather/dirt,
/turf/open/water/beach,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"MP" = (
/obj/effect/turf_decal/weather/sand{
dir = 4
},
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"Nx" = (
/turf/open/water/beach,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"NE" = (
/obj/effect/mob_spawn/corpse/human/damaged,
/turf/open/water/beach,
@@ -745,6 +1122,20 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"NU" = (
+/obj/structure/flora/grass/jungle/b/style_random{
+ pixel_x = -13;
+ pixel_y = 18
+ },
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+"Oi" = (
+/obj/effect/mob_spawn/corpse/human/pirate,
+/turf/open/misc/dirt/jungle,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ov" = (
/turf/open/misc/beach/coast{
dir = 6
@@ -757,6 +1148,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
"OB" = (
/obj/structure/flora/grass/jungle/b{
pixel_x = -15;
@@ -768,12 +1160,15 @@
},
/turf/open/misc/dirt/jungle,
/area/virtual_domain/protected_space)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"OD" = (
/obj/effect/turf_decal/weather/sand{
dir = 6
},
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"OE" = (
/obj/effect/mob_spawn/corpse/human/pirate,
/turf/open/misc/dirt/jungle,
@@ -782,6 +1177,13 @@
/obj/structure/flora/rock/pile/jungle/style_2,
/obj/effect/baseturf_helper/virtual_domain,
/turf/open/misc/dirt/jungle,
+=======
+"OW" = (
+/obj/effect/turf_decal/weather/dirt{
+ dir = 1
+ },
+/turf/open/water/beach,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain/protected_space)
"Qc" = (
/obj/effect/mapping_helpers/broken_floor,
@@ -789,10 +1191,22 @@
icon_state = "wood_large"
},
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"QJ" = (
/obj/structure/flora/rock/pile,
/turf/open/water/beach,
/area/virtual_domain/protected_space/fullbright)
+=======
+"QF" = (
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space)
+"QG" = (
+/obj/effect/turf_decal/weather/dirt,
+/obj/effect/turf_decal/weather/dirt,
+/turf/open/water/beach,
+/area/virtual_domain/protected_space)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"QN" = (
/obj/structure/barricade/sandbags,
/obj/effect/turf_decal/weather/sand{
@@ -810,6 +1224,7 @@
/obj/effect/mob_spawn/corpse/human/pirate/melee,
/turf/open/water/beach,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"RC" = (
/obj/effect/turf_decal/weather/dirt{
dir = 4
@@ -818,6 +1233,39 @@
dir = 6
},
/area/virtual_domain/protected_space)
+=======
+"QX" = (
+/obj/item/clothing/suit/armor/militia{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/obj/item/clothing/suit/armor/militia{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/item/clothing/suit/armor/militia{
+ pixel_x = -5;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/costume/fancy{
+ pixel_x = 6;
+ pixel_y = 12
+ },
+/obj/item/clothing/head/costume/fancy{
+ pixel_x = 6;
+ pixel_y = 6
+ },
+/obj/item/clothing/head/hats/coordinator{
+ pixel_x = 8;
+ pixel_y = -5
+ },
+/obj/structure/closet/cabinet,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"RJ" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -849,9 +1297,12 @@
},
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"SE" = (
/turf/open/water/beach,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"SK" = (
/turf/open/misc/beach/coast,
/area/virtual_domain/fullbright)
@@ -865,6 +1316,7 @@
},
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"SZ" = (
/obj/effect/turf_decal/siding/wood,
/obj/item/melee/sabre{
@@ -875,6 +1327,8 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Ta" = (
/obj/structure/flora/bush/flowers_pp,
/turf/open/misc/grass,
@@ -891,6 +1345,7 @@
/obj/structure/bookcase/random/fiction,
/turf/open/floor/wood/parquet,
/area/virtual_domain)
+<<<<<<< HEAD
"TT" = (
/obj/structure/flora/rock/style_3,
/turf/open/water/beach,
@@ -898,10 +1353,31 @@
"Ul" = (
/turf/closed/wall/mineral/wood/nonmetal,
/area/virtual_domain)
+=======
+"Ul" = (
+/turf/closed/wall/mineral/wood/nonmetal,
+/area/virtual_domain)
+"Uw" = (
+/obj/structure/cannon{
+ dir = 1
+ },
+/obj/effect/turf_decal/siding/wood{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Vx" = (
/obj/structure/flora/rock/style_4,
/turf/open/water/beach,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"VE" = (
+/obj/effect/decal/cleanable/dirt/dust,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"VG" = (
/obj/effect/turf_decal/siding/wood{
dir = 8
@@ -909,6 +1385,7 @@
/obj/effect/decal/cleanable/dirt/dust,
/turf/open/floor/carpet/blue,
/area/virtual_domain)
+<<<<<<< HEAD
"VI" = (
/obj/item/flashlight/flare/torch,
/turf/open/misc/beach/sand,
@@ -916,6 +1393,8 @@
"VP" = (
/turf/closed/mineral/random/jungle,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Wu" = (
/obj/structure/fermenting_barrel/gunpowder{
pixel_x = -4;
@@ -937,6 +1416,13 @@
},
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"Wx" = (
+/obj/effect/turf_decal/siding/wood,
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Xn" = (
/obj/modular_map_root/safehouse{
key = "wood"
@@ -947,6 +1433,7 @@
/obj/structure/barricade/wooden/crude,
/turf/closed/wall/mineral/wood/nonmetal,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"XR" = (
/obj/structure/cannon{
dir = 1
@@ -956,6 +1443,8 @@
},
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"XW" = (
/obj/effect/mob_spawn/corpse/human/pirate,
/turf/open/misc/beach/coast{
@@ -971,6 +1460,12 @@
/obj/effect/decal/cleanable/blood/gibs/old,
/turf/open/misc/beach/sand,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
+=======
+"Yy" = (
+/turf/open/floor/wood,
+/area/virtual_domain/protected_space/fullbright)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"YJ" = (
/obj/structure/table/wood,
/obj/effect/turf_decal/siding/wood{
@@ -1016,10 +1511,13 @@
},
/turf/open/floor/wood,
/area/virtual_domain/fullbright)
+<<<<<<< HEAD
"ZR" = (
/obj/effect/turf_decal/siding/wood,
/turf/open/floor/wood,
/area/virtual_domain/protected_space/fullbright)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
(1,1,1) = {"
xg
@@ -1268,10 +1766,17 @@ DM
hb
hb
fR
+<<<<<<< HEAD
Mc
Mc
Mc
Mc
+=======
+py
+py
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
xg
@@ -1312,10 +1817,17 @@ DM
hb
hb
DM
+<<<<<<< HEAD
VP
VP
VP
Mc
+=======
+Li
+Li
+Li
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
xg
@@ -1356,10 +1868,17 @@ sj
hb
hb
DM
+<<<<<<< HEAD
VP
VP
VP
Mc
+=======
+Li
+Li
+Li
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
xg
@@ -1400,6 +1919,7 @@ mp
Ov
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1407,6 +1927,15 @@ Mc
Mc
Mc
Mc
+=======
+au
+au
+au
+py
+py
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
xg
@@ -1444,6 +1973,7 @@ xp
xp
xp
NE
+<<<<<<< HEAD
SE
SE
SE
@@ -1453,6 +1983,17 @@ LX
Mc
Mc
Mc
+=======
+au
+au
+au
+au
+au
+nQ
+py
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
xg
@@ -1488,6 +2029,7 @@ xp
xp
xp
Gy
+<<<<<<< HEAD
SE
SE
SE
@@ -1504,6 +2046,24 @@ Mc
Mc
Mc
Ca
+=======
+au
+au
+au
+au
+au
+nQ
+bI
+VE
+py
+py
+py
+py
+py
+py
+py
+KP
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(12,1,1) = {"
xg
@@ -1532,6 +2092,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1541,13 +2102,28 @@ LX
dL
Ka
In
+=======
+au
+au
+au
+au
+nN
+nQ
+rn
+VE
+fw
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
Xn
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(13,1,1) = {"
hb
@@ -1576,6 +2152,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1585,13 +2162,28 @@ LX
DT
uS
SZ
+=======
+au
+au
+au
+au
+Iv
+nQ
+QX
+Yy
+zk
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
ub
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(14,1,1) = {"
hb
@@ -1601,7 +2193,11 @@ Ul
Ul
Ul
Hn
+<<<<<<< HEAD
qV
+=======
+ps
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
eS
eS
eS
@@ -1620,6 +2216,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1629,13 +2226,28 @@ LX
LX
uS
zA
+=======
+au
+au
+au
+au
+au
+nQ
+nQ
+Yy
+Dd
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
ub
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(15,1,1) = {"
hb
@@ -1664,6 +2276,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1673,13 +2286,28 @@ SE
SE
SE
ZR
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+Wx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
ub
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(16,1,1) = {"
hb
@@ -1708,6 +2336,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1717,13 +2346,28 @@ SE
SE
SE
SE
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+au
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
ub
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(17,1,1) = {"
hb
@@ -1752,6 +2396,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1761,13 +2406,28 @@ SE
SE
SE
SE
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+au
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
ub
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(18,1,1) = {"
hb
@@ -1778,7 +2438,11 @@ BU
td
Ul
Ci
+<<<<<<< HEAD
Cq
+=======
+nb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Mf
gx
tQ
@@ -1796,6 +2460,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1805,13 +2470,28 @@ SE
SE
ZR
SE
+=======
+au
+au
+au
+au
+au
+au
+au
+Wx
+au
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ub
ub
ub
ub
ub
zR
+<<<<<<< HEAD
Mc
+=======
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(19,1,1) = {"
hb
@@ -1840,6 +2520,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1856,6 +2537,24 @@ SE
SE
Mc
Mc
+=======
+au
+au
+au
+au
+au
+au
+nQ
+fw
+au
+au
+au
+au
+au
+au
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
(20,1,1) = {"
hb
@@ -1884,6 +2583,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1899,6 +2599,23 @@ SE
SE
SE
Mc
+=======
+au
+au
+au
+au
+au
+au
+Uw
+cr
+vR
+au
+au
+au
+au
+au
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(21,1,1) = {"
@@ -1928,6 +2645,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1943,6 +2661,23 @@ SE
SE
SE
Mc
+=======
+au
+au
+au
+au
+au
+af
+nQ
+LK
+fw
+au
+au
+au
+au
+au
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(22,1,1) = {"
@@ -1972,6 +2707,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -1987,6 +2723,23 @@ SE
SE
SE
Mc
+=======
+au
+au
+au
+au
+au
+au
+oM
+VE
+eO
+au
+au
+au
+au
+au
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(23,1,1) = {"
@@ -2016,6 +2769,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -2031,6 +2785,23 @@ SE
VP
VP
Mc
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+Li
+Li
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(24,1,1) = {"
@@ -2060,6 +2831,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -2075,6 +2847,23 @@ SE
VP
VP
Mc
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+Li
+Li
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(25,1,1) = {"
@@ -2094,9 +2883,15 @@ eS
eS
nr
eS
+<<<<<<< HEAD
VI
Io
LO
+=======
+gD
+yF
+KU
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xp
xp
xp
@@ -2104,6 +2899,7 @@ xp
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -2119,6 +2915,23 @@ VP
VP
VP
Mc
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+au
+Li
+Li
+Li
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(26,1,1) = {"
@@ -2137,17 +2950,27 @@ DM
DM
DM
DM
+<<<<<<< HEAD
ha
ha
RC
Nx
ha
ha
+=======
+tA
+tA
+eP
+sb
+tA
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
hb
hb
xp
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -2163,6 +2986,23 @@ VP
VP
VP
Mc
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+au
+py
+Li
+Li
+Li
+Li
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(27,1,1) = {"
@@ -2182,16 +3022,24 @@ DM
DM
DM
DM
+<<<<<<< HEAD
ha
br
qT
ha
+=======
+tA
+fd
+OW
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
DM
hb
hb
xp
xp
+<<<<<<< HEAD
SE
SE
SE
@@ -2207,6 +3055,23 @@ VP
VP
Mc
Mc
+=======
+au
+au
+au
+au
+au
+au
+au
+au
+py
+py
+Li
+Li
+Li
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
"}
(28,1,1) = {"
@@ -2226,16 +3091,25 @@ DM
DM
DM
DM
+<<<<<<< HEAD
ha
wf
qT
ha
ha
+=======
+tA
+KV
+OW
+tA
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
DM
hb
hb
hb
+<<<<<<< HEAD
Mc
SE
SE
@@ -2250,6 +3124,22 @@ Mc
Mc
Mc
Mc
+=======
+py
+au
+au
+au
+au
+au
+au
+py
+py
+py
+py
+py
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
"}
@@ -2270,6 +3160,7 @@ DM
DM
DM
DM
+<<<<<<< HEAD
ha
qR
Ic
@@ -2288,6 +3179,26 @@ Mc
Mc
Mc
Mc
+=======
+tA
+qk
+IW
+sb
+tA
+tA
+tA
+DM
+DM
+DM
+py
+py
+py
+py
+py
+py
+py
+py
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
xg
xg
xg
@@ -2314,6 +3225,7 @@ DM
DM
DM
DM
+<<<<<<< HEAD
ha
lM
qR
@@ -2324,6 +3236,18 @@ ha
ha
ha
ha
+=======
+tA
+Gl
+qk
+IW
+hn
+sb
+tA
+tA
+tA
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
hb
hb
@@ -2358,6 +3282,7 @@ hb
DM
DM
DM
+<<<<<<< HEAD
ha
ha
qR
@@ -2369,6 +3294,19 @@ na
OS
ha
ha
+=======
+tA
+tA
+qk
+qk
+Oi
+OW
+sb
+be
+gc
+tA
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
hb
hb
@@ -2403,6 +3341,7 @@ hb
DM
DM
DM
+<<<<<<< HEAD
ha
ha
qR
@@ -2414,6 +3353,19 @@ qR
MJ
ha
ha
+=======
+tA
+tA
+qk
+CL
+IW
+sb
+QG
+qk
+rm
+tA
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
hb
xg
@@ -2448,6 +3400,7 @@ hb
DM
DM
DM
+<<<<<<< HEAD
ha
KW
qR
@@ -2458,6 +3411,18 @@ kl
qR
MJ
ha
+=======
+tA
+oB
+qk
+wu
+IW
+QF
+BX
+qk
+rm
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
hb
xg
@@ -2492,6 +3457,7 @@ hb
hb
DM
DM
+<<<<<<< HEAD
ha
ha
qR
@@ -2502,6 +3468,18 @@ vo
cT
tR
ha
+=======
+tA
+tA
+qk
+qk
+NU
+db
+hq
+zc
+ID
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
hb
xg
@@ -2537,6 +3515,7 @@ hb
hb
hb
DM
+<<<<<<< HEAD
ha
ha
ha
@@ -2546,6 +3525,17 @@ ha
ha
ha
ha
+=======
+tA
+tA
+tA
+tA
+tA
+tA
+tA
+tA
+tA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DM
hb
xg
diff --git a/_maps/virtual_domains/syndicate_assault.dmm b/_maps/virtual_domains/syndicate_assault.dmm
index 003a4aee7fb..e7fa57c11d5 100644
--- a/_maps/virtual_domains/syndicate_assault.dmm
+++ b/_maps/virtual_domains/syndicate_assault.dmm
@@ -1,4 +1,20 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+<<<<<<< HEAD
+=======
+"aq" = (
+/obj/item/storage/backpack/duffelbag/syndie/surgery,
+/obj/structure/table/reinforced,
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"aw" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"aN" = (
/obj/structure/closet/crate/secure/gear{
req_access = list("syndicate")
@@ -14,6 +30,7 @@
/obj/item/stack/rods/fifty,
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"aV" = (
/obj/machinery/door/airlock/grunge{
name = "Syndicate Ship Airlock"
@@ -28,17 +45,42 @@
"bl" = (
/obj/machinery/computer/operating,
/turf/open/floor/plastic,
+=======
+"aO" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"bh" = (
+/turf/open/floor/carpet/royalblack,
+/area/virtual_domain)
+"bD" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"bG" = (
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"bN" = (
+=======
+"cc" = (
+/obj/structure/closet/crate/secure/gear{
+ req_access = list("syndicate")
+ },
+/obj/effect/spawner/random/clothing/costume,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
"cj" = (
/obj/structure/transit_tube/crossing,
/turf/closed/wall/r_wall/syndicate,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"cr" = (
/obj/machinery/power/shuttle_engine/propulsion{
dir = 8
@@ -50,12 +92,70 @@
/obj/item/paper/fluff/ruins/forgottenship/missionobj,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
+=======
+"ct" = (
+/obj/structure/closet/syndicate{
+ anchored = 1;
+ desc = "A basic closet for all your villainous needs.";
+ locked = 1;
+ name = "Closet";
+ req_access = list("syndicate");
+ secure = 1
+ },
+/obj/item/gun/ballistic/automatic/pistol,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"cw" = (
+/obj/structure/closet/syndicate{
+ anchored = 1;
+ desc = "A basic closet for all your villainous needs.";
+ locked = 1;
+ name = "Closet";
+ req_access = list("syndicate");
+ secure = 1
+ },
+/obj/item/clothing/under/syndicate/combat,
+/obj/item/clothing/gloves/combat,
+/obj/item/clothing/shoes/combat,
+/obj/item/clothing/mask/gas/syndicate,
+/obj/item/clothing/under/syndicate/skirt,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"cy" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"cB" = (
+/obj/machinery/camera/xray{
+ c_tag = "Medbay";
+ dir = 6;
+ network = list("fsci");
+ screen_loc = ""
+ },
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"cR" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/carpet/royalblack,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"cZ" = (
/obj/structure/table/reinforced,
/obj/item/gun/ballistic/automatic/l6_saw/unrestricted,
/obj/item/ammo_box/magazine/m7mm,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"dp" = (
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
@@ -75,6 +175,43 @@
/area/ruin/space/virtual_domain)
"eu" = (
/turf/open/space/basic,
+=======
+"da" = (
+/obj/machinery/stasis,
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"dd" = (
+/obj/structure/sign/warning/vacuum/external,
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain)
+"di" = (
+/obj/machinery/power/terminal{
+ dir = 1
+ },
+/obj/structure/cable,
+/obj/item/paper/fluff/ruins/forgottenship/powerissues,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"dp" = (
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain/protected_space)
+"dw" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"dz" = (
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"dU" = (
+/obj/structure/cable,
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external/ruin{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/mineral/plastitanium,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"eB" = (
/obj/machinery/camera/xray{
@@ -92,6 +229,7 @@
/obj/item/card/id/advanced/black/syndicate_command/crew_id,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"eH" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/carpet/royalblack,
@@ -100,10 +238,13 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"fd" = (
/obj/structure/transit_tube/crossing,
/turf/open/space/basic,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"fs" = (
/obj/machinery/light/directional/north,
/turf/open/floor/mineral/plastitanium/red,
@@ -113,11 +254,329 @@
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
"fW" = (
+=======
+"fG" = (
+/obj/structure/toilet{
+ dir = 1
+ },
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"fJ" = (
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"fV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"gD" = (
+/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"hg" = (
+/obj/structure/window/reinforced/plasma/plastitanium,
+/obj/machinery/door/poddoor{
+ id = "fslockdown";
+ name = "Ship Blast Door";
+ state_open = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"hy" = (
+/obj/structure/table/reinforced,
+/obj/item/paper/fluff/ruins/forgottenship/missionobj,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"hA" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain)
+"hD" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"ip" = (
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"iB" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"iL" = (
+/obj/structure/sign/departments/cargo,
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain/protected_space)
+"iU" = (
+/obj/structure/closet/crate/secure/gear{
+ req_access = list("syndicate")
+ },
+/obj/item/melee/energy/sword/saber/red,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/pod/dark,
+/area/virtual_domain/protected_space)
+"iW" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "fslockdown";
+ name = "Window shutters";
+ req_access = list("syndicate")
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"iX" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"ja" = (
+/obj/machinery/door/window/left/directional/north{
+ name = "Spare Equipment";
+ req_access = list("syndicate")
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"jl" = (
+/obj/structure/bodycontainer/crematorium{
+ id = "fscremate"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"jA" = (
+/obj/structure/cable,
+/mob/living/basic/trooper/syndicate/melee/space/stormtrooper,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"jJ" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/iron/dark/side{
+ dir = 1
+ },
+/area/virtual_domain)
+"kh" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"kI" = (
+/obj/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"kJ" = (
+/obj/modular_map_root/safehouse{
+ key = "shuttle_space"
+ },
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"li" = (
+/obj/structure/transit_tube/station/dispenser/reverse{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain/protected_space)
+"ln" = (
+/obj/machinery/turretid{
+ control_area = "/area/ruin/space/has_grav/syndicate_forgotten_ship";
+ enabled = 0;
+ icon_state = "control_kill";
+ lethal = 1;
+ name = "Ship turret control panel";
+ pixel_y = 32;
+ req_access = list("syndicate")
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"lo" = (
+/obj/structure/fans/tiny,
+/obj/machinery/door/airlock/external/ruin{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"lN" = (
+/obj/machinery/light/small/directional/east,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"mo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"mA" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain/protected_space)
+"mD" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 10
+ },
+/obj/item/wrench,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"mL" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain/protected_space)
+"nk" = (
+/obj/machinery/power/apc/auto_name/directional/north,
+/obj/effect/mapping_helpers/apc/syndicate_access,
+/obj/structure/cable,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"nn" = (
+/turf/closed/mineral/random,
+/area/virtual_domain/protected_space)
+"nB" = (
+/turf/closed/mineral/random,
+/area/ruin/space/virtual_domain)
+"nG" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"nU" = (
+/obj/structure/sign/poster/contraband/syndicate_pistol,
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain)
+"og" = (
+/obj/structure/table/reinforced,
+/obj/item/reagent_containers/cup/glass/trophy/silver_cup,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"oM" = (
+/obj/structure/cable,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"pl" = (
+/obj/machinery/atmospherics/components/tank/air{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"pz" = (
+/obj/machinery/computer/security{
+ desc = "Used to access interrogation room camera.";
+ dir = 8;
+ name = "Ship cameras console";
+ network = list("fsc","fsci");
+ screen_loc = ""
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"pH" = (
+/obj/structure/table/reinforced,
+/obj/item/toy/plush/nukeplushie,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"pM" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"pS" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"pU" = (
+/obj/machinery/shower/directional/north,
+/obj/machinery/light/directional/south,
+/turf/open/floor/iron,
+/area/virtual_domain)
+"qf" = (
+/obj/structure/table/optable,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"qx" = (
+/turf/open/space/basic,
+/area/space/virtual_domain)
+"qU" = (
+/obj/structure/sign/poster/contraband/c20r,
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain/protected_space)
+"qY" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"rm" = (
+/obj/machinery/button/crematorium{
+ id = "fscremate";
+ pixel_x = -32
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"ru" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain)
+"rH" = (
+/obj/machinery/airalarm/directional/north,
+/obj/effect/mapping_helpers/airalarm/syndicate_access,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"rM" = (
+/obj/structure/closet/syndicate{
+ anchored = 1;
+ desc = "A basic closet for all your villainous needs.";
+ locked = 1;
+ name = "Closet";
+ req_access = list("syndicate");
+ secure = 1
+ },
+/obj/effect/spawner/random/contraband/armory,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"rP" = (
+/obj/machinery/light/small/directional/south,
+/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"sg" = (
+/obj/machinery/ore_silo,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain/protected_space)
+"sq" = (
+/obj/machinery/door/window/left/directional/south{
+ name = "Control Room";
+ req_access = list("syndicate")
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"sz" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4
},
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
+<<<<<<< HEAD
"gW" = (
/obj/structure/sign/poster/contraband/syndicate_recruitment,
/turf/closed/wall/r_wall/syndicate,
@@ -135,6 +594,9 @@
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
"hn" = (
+=======
+"sH" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/syndicate{
anchored = 1;
desc = "A basic closet for all your villainous needs.";
@@ -147,6 +609,7 @@
/obj/item/gun/ballistic/automatic/pistol,
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
+<<<<<<< HEAD
"hr" = (
/turf/open/floor/plastic,
/area/virtual_domain)
@@ -442,6 +905,8 @@
/obj/item/paper/fluff/ruins/forgottenship/powerissues,
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"sK" = (
/obj/structure/closet/crate/secure/gear{
req_access = list("syndicate")
@@ -454,6 +919,7 @@
},
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"sM" = (
/turf/template_noop,
/area/virtual_domain/safehouse)
@@ -480,12 +946,81 @@
},
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
+=======
+"sL" = (
+/obj/structure/chair/comfy,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"sM" = (
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"tv" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "fscaproom";
+ name = "Room shutters control";
+ req_access = list("syndicate")
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"tI" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"uP" = (
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"vp" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"vD" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"vK" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"vU" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"wb" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2,
+/obj/machinery/portable_atmospherics/scrubber{
+ anchored = 1
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"we" = (
+/turf/closed/mineral/random/high_chance,
+/area/ruin/space/virtual_domain)
+"wK" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"wL" = (
/obj/structure/table/reinforced,
/obj/item/storage/medkit/regular,
/obj/machinery/light/small/directional/north,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"wR" = (
/obj/machinery/turretid{
control_area = "/area/ruin/space/has_grav/syndicate_forgotten_ship";
@@ -565,6 +1100,9 @@
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
"An" = (
+=======
+"xJ" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/syndicate{
anchored = 1;
desc = "A basic closet for all your villainous needs.";
@@ -573,6 +1111,7 @@
req_access = list("syndicate");
secure = 1
},
+<<<<<<< HEAD
/obj/item/clothing/under/syndicate/combat,
/obj/item/clothing/gloves/combat,
/obj/item/clothing/shoes/combat,
@@ -609,16 +1148,90 @@
name = "Syndicate Ship Airlock"
},
/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+=======
+/obj/item/ammo_box/c9mm,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"xS" = (
+/turf/closed/wall/r_wall/syndicate/nodiagonal,
+/area/virtual_domain)
+"yl" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Captain's Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/machinery/door/poddoor{
+ id = "fscaproom";
+ name = "Captain's Blast Door";
+ state_open = 1
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"yJ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"yR" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"yT" = (
+/obj/item/ai_module/core/full/cybersun,
+/obj/structure/table/reinforced,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"yV" = (
+/obj/structure/table/reinforced,
+/obj/item/assembly/prox_sensor,
+/obj/item/assembly/prox_sensor,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"yZ" = (
+/turf/closed/mineral,
+/area/ruin/space/virtual_domain)
+"zi" = (
+/obj/machinery/vending/cigarette/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"zt" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"zN" = (
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain/protected_space)
+"Aa" = (
+/obj/structure/chair/comfy/shuttle,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
"Bm" = (
/obj/effect/baseturf_helper/virtual_domain,
/turf/closed/indestructible/syndicate,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
+=======
+"BK" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space/basic,
+/area/space/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"BN" = (
/obj/structure/transit_tube/crossing,
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"BQ" = (
/obj/machinery/shower/directional/north,
/obj/machinery/light/directional/south,
@@ -657,6 +1270,62 @@
/obj/machinery/portable_atmospherics/scrubber{
anchored = 1
},
+=======
+"Cf" = (
+/obj/machinery/light/directional/south,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Ci" = (
+/obj/structure/closet/syndicate{
+ anchored = 1;
+ desc = "A basic closet for all your villainous needs.";
+ locked = 1;
+ name = "Closet";
+ req_access = list("syndicate");
+ secure = 1
+ },
+/obj/item/crowbar/red,
+/obj/item/ammo_box/magazine/m9mm_aps,
+/obj/item/ammo_box/magazine/m9mm_aps,
+/obj/item/gun/ballistic/automatic/pistol/aps,
+/turf/open/floor/carpet/royalblack,
+/area/virtual_domain)
+"Cn" = (
+/obj/machinery/camera/xray/directional/east{
+ c_tag = "Conference room";
+ network = list("fsc");
+ screen_loc = ""
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"CK" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/mob/living/basic/trooper/syndicate/ranged/smg/pilot,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"CR" = (
+/obj/structure/closet/syndicate{
+ anchored = 1;
+ desc = "A basic closet for all your villainous needs.";
+ locked = 1;
+ name = "Closet";
+ req_access = list("syndicate");
+ secure = 1
+ },
+/obj/item/coin/antagtoken,
+/obj/item/dnainjector/thermal,
+/obj/item/storage/box/firingpins/syndicate,
+/obj/item/storage/box/firingpins/syndicate,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"De" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
"Dj" = (
@@ -667,6 +1336,7 @@
/obj/item/gun/ballistic/automatic/c20r/unrestricted,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"Dn" = (
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
@@ -693,6 +1363,17 @@
/turf/open/floor/carpet/royalblack,
/area/virtual_domain)
"Eb" = (
+=======
+"DA" = (
+/obj/structure/closet/crate/secure/gear{
+ req_access = list("syndicate")
+ },
+/obj/effect/spawner/random/maintenance,
+/obj/effect/spawner/random/maintenance,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"EB" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
@@ -700,6 +1381,7 @@
},
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
+<<<<<<< HEAD
"EJ" = (
/obj/machinery/door/airlock/grunge{
name = "Syndicate Ship Airlock"
@@ -735,10 +1417,79 @@
/area/virtual_domain)
"Gh" = (
/obj/structure/cable,
+=======
+"Fp" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"FN" = (
/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
dir = 4
},
/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Gn" = (
+/obj/structure/chair/comfy{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Gs" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"GB" = (
+/obj/structure/cable,
+/obj/machinery/door/airlock/external/ruin{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"GZ" = (
+/obj/machinery/door/airlock/external/ruin{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Hq" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"HU" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Bridge"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"Ia" = (
+/obj/effect/mob_spawn/ghost_role/human/virtual_domain/syndie,
+/turf/open/floor/carpet/royalblack,
+/area/virtual_domain)
+"Id" = (
+/obj/machinery/power/shuttle_engine/huge{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/virtual_domain)
+"If" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+<<<<<<< HEAD
dir = 5
},
/turf/open/floor/mineral/plastitanium/red,
@@ -752,17 +1503,45 @@
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
"Is" = (
+=======
+ dir = 9
+ },
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"Ig" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/porta_turret/syndicate/energy{
dir = 4;
name = "Syndicate Ship Turret";
on = 0;
shot_delay = 10
},
+<<<<<<< HEAD
/turf/closed/wall/r_wall/syndicate,
/area/virtual_domain)
"IA" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/mineral/plastitanium/red,
+=======
+/turf/closed/wall/r_wall/syndicate/nodiagonal,
+/area/virtual_domain)
+"Im" = (
+/obj/structure/table/reinforced,
+/obj/item/ammo_box/c9mm,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Io" = (
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"IC" = (
+/obj/structure/table/reinforced,
+/obj/item/paper,
+/obj/item/pen,
+/obj/machinery/computer/security/telescreen/forgotten_ship/sci/directional/south,
+/turf/open/floor/carpet/royalblack,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"IH" = (
/obj/machinery/door/airlock/external/ruin{
@@ -773,7 +1552,82 @@
/obj/structure/fans/tiny,
/turf/open/floor/plating,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"Ji" = (
+=======
+"IV" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Syndicate Ship Airlock"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/turf/open/floor/plating,
+/area/virtual_domain)
+"Jg" = (
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"Jz" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"JA" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"JN" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"JP" = (
+/obj/structure/sink/directional/south,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Kz" = (
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"Lk" = (
+/obj/structure/transit_tube/crossing,
+/turf/closed/mineral/random,
+/area/virtual_domain/protected_space)
+"Lo" = (
+/obj/structure/filingcabinet,
+/obj/machinery/door/window/left/directional/west{
+ name = "Syndicate Interior Door";
+ req_access = list("syndicate")
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"LB" = (
+/obj/structure/cable,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain/protected_space)
+"Mc" = (
+/obj/structure/closet/syndicate{
+ anchored = 1;
+ desc = "A basic closet for all your villainous needs.";
+ locked = 1;
+ name = "Closet";
+ req_access = list("syndicate");
+ secure = 1
+ },
+/obj/item/crowbar/red,
+/obj/item/ammo_box/magazine/m9mm,
+/obj/item/ammo_box/magazine/m9mm,
+/obj/item/gun/ballistic/automatic/pistol,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Mm" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/syndicate{
anchored = 1;
desc = "A basic closet for all your villainous needs.";
@@ -791,6 +1645,7 @@
/obj/item/clothing/shoes/combat,
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
+<<<<<<< HEAD
"JJ" = (
/obj/structure/closet/syndicate{
anchored = 1;
@@ -902,6 +1757,15 @@
/obj/effect/landmark/bitrunning/cache_spawn,
/turf/open/floor/plastic,
/area/virtual_domain)
+=======
+"MR" = (
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small/directional/south,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Nm" = (
/obj/structure/closet/crate/secure/gear{
req_access = list("syndicate")
@@ -921,6 +1785,7 @@
/obj/machinery/light/small/directional/south,
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"Ns" = (
/obj/machinery/light/small/directional/south,
/turf/open/floor/mineral/plastitanium,
@@ -935,6 +1800,8 @@
/obj/effect/landmark/bitrunning/cache_spawn,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Of" = (
/obj/structure/closet/crate/secure/gear{
req_access = list("syndicate")
@@ -942,6 +1809,13 @@
/obj/item/disk/surgery/forgottenship,
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
+=======
+"Ox" = (
+/obj/machinery/atmospherics/components/unary/vent_pump,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"OH" = (
/obj/structure/cable,
/obj/structure/table/reinforced,
@@ -949,6 +1823,7 @@
/obj/item/storage/toolbox/syndicate,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"Pe" = (
/obj/structure/closet/crate/secure/gear{
req_access = list("syndicate")
@@ -966,6 +1841,14 @@
/turf/open/floor/iron/dark/side{
dir = 1
},
+=======
+"OI" = (
+/obj/structure/chair/comfy/shuttle{
+ dir = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/mineral/plastitanium,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"PR" = (
/obj/machinery/door/password/voice/sfc{
@@ -979,6 +1862,7 @@
/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"PW" = (
/obj/machinery/door/airlock/grunge{
name = "Bridge"
@@ -1000,6 +1884,22 @@
"QA" = (
/obj/machinery/vending/medical/syndicate_access/cybersun,
/turf/open/floor/plastic,
+=======
+"Qg" = (
+/obj/machinery/suit_storage_unit/syndicate{
+ helmet_type = /obj/item/clothing/head/helmet/space/syndicate/black;
+ suit_type = /obj/item/clothing/suit/space/syndicate/black
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Qi" = (
+/obj/item/stack/sheet/mineral/uranium{
+ amount = 15
+ },
+/obj/structure/cable,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/mineral/plastitanium/red,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"QF" = (
/obj/structure/table/reinforced,
@@ -1007,6 +1907,7 @@
/obj/machinery/light/small/directional/east,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"QY" = (
/obj/machinery/door/window/left/directional/north{
name = "Spare Equipment";
@@ -1039,11 +1940,45 @@
/obj/structure/cable,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
+=======
+"QG" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/closed/mineral/random,
+/area/ruin/space/virtual_domain)
+"QX" = (
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Ra" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber/layer2,
+/obj/machinery/light/small/directional/north,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"RQ" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"RU" = (
/obj/machinery/suit_storage_unit/syndicate,
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"RY" = (
+=======
+"Sc" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2,
+/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Sd" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/syndicate{
anchored = 1;
desc = "A basic closet for all your villainous needs.";
@@ -1052,6 +1987,7 @@
req_access = list("syndicate");
secure = 1
},
+<<<<<<< HEAD
/obj/item/coin/antagtoken,
/obj/item/dnainjector/thermal,
/obj/item/storage/box/firingpins/syndicate,
@@ -1100,10 +2036,38 @@
"Ts" = (
/obj/effect/landmark/bitrunning/cache_spawn,
/turf/open/floor/mineral/plastitanium/red,
+=======
+/obj/item/crowbar/red,
+/obj/item/ammo_box/magazine/m9mm,
+/obj/item/ammo_box/magazine/m9mm,
+/obj/machinery/light/small/directional/north,
+/obj/item/gun/ballistic/automatic/pistol,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Sq" = (
+/obj/machinery/power/smes,
+/obj/structure/cable,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"Sv" = (
+/obj/structure/closet/crate/secure/gear{
+ req_access = list("syndicate")
+ },
+/obj/effect/spawner/random/food_or_drink/donkpockets,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Sz" = (
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"SX" = (
+/obj/machinery/vending/medical/syndicate_access/cybersun,
+/turf/open/floor/plastic,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"TB" = (
/turf/closed/indestructible/syndicate,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"TU" = (
/obj/machinery/door/airlock/grunge{
name = "Syndicate Ship Airlock"
@@ -1135,16 +2099,34 @@
id = "fscremate"
},
/turf/open/floor/mineral/plastitanium,
+=======
+"UQ" = (
+/obj/structure/sign/poster/contraband/syndicate_recruitment,
+/turf/closed/wall/r_wall/syndicate,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/virtual_domain)
"Vg" = (
/turf/open/space/basic,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
+=======
+"Vk" = (
+/obj/machinery/porta_turret/syndicate/energy{
+ dir = 4;
+ name = "Syndicate Ship Turret";
+ on = 0;
+ shot_delay = 10
+ },
+/turf/closed/wall/r_wall/syndicate,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Vq" = (
/obj/structure/transit_tube/station/dispenser/reverse{
dir = 8
},
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"Vs" = (
/obj/machinery/vending/cigarette/syndicate,
/turf/open/floor/mineral/plastitanium,
@@ -1161,10 +2143,13 @@
},
/turf/open/floor/mineral/plastitanium,
/area/virtual_domain)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Wd" = (
/obj/structure/sign/poster/contraband/tools,
/turf/closed/wall/r_wall/syndicate,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
"We" = (
/obj/machinery/door/airlock/grunge{
name = "Syndicate Ship Airlock"
@@ -1180,6 +2165,31 @@
/obj/machinery/atmospherics/components/unary/vent_pump,
/turf/open/floor/mineral/plastitanium/red,
/area/virtual_domain)
+=======
+"Wy" = (
+/obj/structure/closet/crate/secure/gear{
+ req_access = list("syndicate")
+ },
+/obj/item/stack/ore/plasma{
+ amount = 19
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"WR" = (
+/obj/machinery/power/port_gen/pacman/super{
+ anchored = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/mineral/plastitanium/red,
+/area/virtual_domain)
+"Xp" = (
+/turf/open/space/basic,
+/area/virtual_domain)
+"XS" = (
+/obj/machinery/light/directional/north,
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Yb" = (
/obj/structure/closet/crate/secure/gear{
req_access = list("syndicate")
@@ -1188,10 +2198,39 @@
/obj/item/clothing/suit/space/syndicate/black/engie,
/turf/open/floor/pod/dark,
/area/virtual_domain/protected_space)
+<<<<<<< HEAD
+=======
+"Yi" = (
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"Yj" = (
+/obj/structure/closet/crate/secure/gear{
+ req_access = list("syndicate")
+ },
+/obj/item/stack/ore/diamond{
+ amount = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/virtual_domain)
+"Yk" = (
+/obj/machinery/door/airlock/grunge{
+ name = "Captain's Room"
+ },
+/obj/effect/mapping_helpers/airlock/access/all/syndicate/general,
+/obj/machinery/door/poddoor{
+ id = "fscaproom";
+ name = "Captain's Blast Door";
+ state_open = 1
+ },
+/turf/open/floor/carpet/royalblack,
+/area/virtual_domain)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Yr" = (
/obj/effect/baseturf_helper/virtual_domain,
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"YA" = (
/obj/machinery/door/airlock/external/ruin{
name = "Syndicate Ship Airlock"
@@ -2297,10 +3336,1115 @@ tE
tE
Lv
Lv
+=======
+"Yu" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/carpet/royalblack,
+/area/virtual_domain)
+"YV" = (
+/obj/structure/sink/directional/south,
+/obj/structure/mirror/directional/west,
+/turf/open/floor/iron/dark,
+/area/virtual_domain)
+"Za" = (
+/obj/machinery/computer/operating,
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"Zb" = (
+/turf/open/floor/plastic,
+/area/virtual_domain)
+"ZA" = (
+/obj/machinery/power/shuttle_engine/propulsion{
+ dir = 8
+ },
+/turf/open/space/basic,
+/area/virtual_domain)
+
+(1,1,1) = {"
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+"}
+(2,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(3,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(4,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(5,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(6,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(7,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(8,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(9,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(10,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Xp
+Xp
+Id
+qx
+qx
+Xp
+Xp
+Id
+qx
+qx
+Xp
+Xp
+Id
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(11,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Xp
+Xp
+Xp
+qx
+qx
+Xp
+Xp
+Xp
+qx
+qx
+Xp
+Xp
+Xp
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(12,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ZA
+Xp
+Xp
+Xp
+ZA
+ZA
+Xp
+Xp
+Xp
+ZA
+ZA
+Xp
+Xp
+Xp
+ZA
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(13,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(14,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Vk
+ru
+Sv
+vD
+uP
+Io
+Yj
+vD
+uP
+Wy
+DA
+Io
+uP
+vD
+cc
+ru
+Vk
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(15,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+Io
+uP
+uP
+QX
+lN
+uP
+uP
+uP
+uP
+uP
+lN
+uP
+QX
+uP
+Io
+hA
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(16,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+IV
+ru
+ru
+ru
+IV
+ru
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(17,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+vp
+ru
+Ia
+Ci
+ru
+Sq
+di
+WR
+ru
+yV
+Gn
+uP
+Mc
+uP
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+we
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(18,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+og
+Jg
+ru
+bh
+cR
+ru
+Qi
+sz
+Kz
+ru
+Mc
+uP
+uP
+uP
+rP
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+nB
+nB
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(19,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+Kz
+Kz
+yl
+bh
+bh
+Yk
+pS
+RQ
+Jz
+vK
+uP
+uP
+Io
+sL
+hy
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
TB
TB
TB
TB
+<<<<<<< HEAD
Lv
Lv
tE
@@ -2354,12 +4498,68 @@ tE
tE
Lv
Lv
+=======
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(20,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+CR
+Kz
+ru
+bh
+bh
+Yk
+pM
+zt
+pM
+vK
+uP
+uP
+QX
+sL
+Im
+ru
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
TB
TB
Yb
Yb
TB
Bm
+<<<<<<< HEAD
Lv
tE
tE
@@ -2412,12 +4612,67 @@ tE
Lv
Gv
Lv
+=======
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(21,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+yT
+Kz
+ru
+Yu
+IC
+ru
+mD
+JN
+MR
+ru
+Sd
+uP
+uP
+uP
+gD
+ru
+qx
+qx
+qx
+qx
+nB
+QG
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
TB
aN
bG
bG
sK
TB
+<<<<<<< HEAD
Lv
tE
tE
@@ -2470,12 +4725,67 @@ tE
Lv
vY
Lv
+=======
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(22,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Ig
+ru
+Lo
+ru
+tv
+hD
+nU
+wb
+EB
+pl
+ru
+hD
+Gn
+uP
+Mc
+ru
+Ig
+qx
+qx
+qx
+qx
+nB
+we
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
TB
iU
bG
bG
Nr
TB
+<<<<<<< HEAD
Lv
vY
tE
@@ -2528,12 +4838,67 @@ tE
tE
Lv
Lv
+=======
+nB
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(23,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+cy
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
TB
Nm
bG
bG
Of
TB
+<<<<<<< HEAD
Lv
Lv
tE
@@ -2543,12 +4908,24 @@ tE
tE
tE
tE
+=======
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sM
sM
sM
sM
sM
kJ
+<<<<<<< HEAD
tE
mR
"}
@@ -2586,12 +4963,52 @@ tE
Lv
Lv
Lv
+=======
+qx
+Hq
+"}
+(24,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+Za
+Yi
+Zb
+SX
+ru
+uP
+yR
+uP
+ru
+YV
+Sz
+jJ
+fG
+ru
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
TB
TB
PR
TB
TB
TB
+<<<<<<< HEAD
Lv
Lv
Lv
@@ -2601,12 +5018,24 @@ tE
tE
tE
tE
+=======
+nB
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sM
sM
sM
sM
sM
sM
+<<<<<<< HEAD
tE
mR
"}
@@ -2644,6 +5073,45 @@ tE
Lv
Lv
vY
+=======
+qx
+Hq
+"}
+(25,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+qf
+Zb
+ip
+da
+ru
+Ra
+Sc
+uP
+ru
+JP
+qY
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+we
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zN
zN
dp
@@ -2665,6 +5133,7 @@ sM
sM
sM
sM
+<<<<<<< HEAD
tE
mR
"}
@@ -2702,6 +5171,45 @@ tE
tE
Lv
Lv
+=======
+qx
+Hq
+"}
+(26,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+aq
+cB
+Zb
+Zb
+De
+Ox
+Gs
+uP
+wK
+Sz
+Sz
+jJ
+pU
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qU
mL
dp
@@ -2723,6 +5231,7 @@ sM
sM
sM
sM
+<<<<<<< HEAD
tE
mR
"}
@@ -2760,6 +5269,45 @@ tE
tE
Lv
Lv
+=======
+qx
+Hq
+"}
+(27,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Vk
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+kh
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zN
eB
dp
@@ -2781,6 +5329,7 @@ sM
sM
sM
sM
+<<<<<<< HEAD
tE
mR
"}
@@ -2818,12 +5367,52 @@ tE
tE
tE
Lv
+=======
+qx
+Hq
+"}
+(28,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+jl
+rm
+ru
+nk
+oM
+oM
+oM
+yR
+oM
+oM
+oM
+uP
+ru
+uP
+Qg
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zN
wL
LB
dp
mA
zN
+<<<<<<< HEAD
dQ
Lv
Lv
@@ -2833,12 +5422,24 @@ tE
tE
tE
tE
+=======
+yZ
+nB
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sM
sM
sM
sM
sM
sM
+<<<<<<< HEAD
tE
mR
"}
@@ -2876,12 +5477,52 @@ tE
tE
tE
tE
+=======
+qx
+Hq
+"}
+(29,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+uP
+dw
+ru
+rH
+uP
+JA
+JA
+iX
+JA
+JA
+oM
+uP
+ru
+fJ
+Qg
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
Wd
OH
LB
dp
RU
zN
+<<<<<<< HEAD
vY
Lv
Lv
@@ -2891,12 +5532,24 @@ tE
tE
tE
tE
+=======
+we
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sM
sM
sM
sM
sM
Yr
+<<<<<<< HEAD
tE
mR
"}
@@ -2934,12 +5587,52 @@ EP
EP
EP
EP
+=======
+qx
+Hq
+"}
+(30,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+lo
+uP
+uP
+GZ
+uP
+Aa
+hD
+yJ
+bD
+hD
+hD
+OI
+oM
+GB
+jA
+oM
+dU
+BK
+BK
+BK
+BK
+BK
+BK
+BK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
IH
LB
LB
dp
RU
zN
+<<<<<<< HEAD
Lv
Lv
tE
@@ -2992,12 +5685,67 @@ tE
tE
tE
tE
+=======
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(31,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+uP
+uP
+dd
+uP
+uP
+uP
+Ox
+aw
+uP
+uP
+uP
+uP
+dd
+uP
+Qg
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
iL
cZ
dp
dp
RU
zN
+<<<<<<< HEAD
Lv
Lv
tE
@@ -3050,12 +5798,67 @@ tE
tE
tE
Lv
+=======
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(32,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+aO
+uP
+ru
+XS
+uP
+uP
+uP
+FN
+uP
+uP
+uP
+Cf
+ru
+uP
+Fp
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zN
zN
Dj
QF
zN
zN
+<<<<<<< HEAD
Lv
Lv
tE
@@ -3109,10 +5912,66 @@ tE
Lv
Lv
Lv
+=======
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(33,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Ig
+ru
+hD
+ru
+zi
+uP
+uP
+uP
+FN
+Cn
+uP
+uP
+uP
+ru
+hD
+ru
+xS
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+nB
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
zN
zN
zN
zN
+<<<<<<< HEAD
Lv
Lv
vY
@@ -4233,4 +7092,1126 @@ mR
mR
mR
mR
+=======
+nB
+nB
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(34,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+HU
+ru
+ru
+ru
+ru
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+nB
+nB
+nB
+nB
+we
+nB
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(35,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+UQ
+rM
+xJ
+Kz
+Kz
+tI
+Kz
+Kz
+ct
+sH
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+nB
+nB
+nB
+nB
+nB
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(36,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+ru
+ru
+Kz
+Kz
+Kz
+Kz
+tI
+Kz
+Kz
+Kz
+Kz
+ru
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(37,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ln
+Kz
+ru
+iB
+Kz
+Kz
+fV
+If
+Kz
+Kz
+Kz
+nG
+ru
+cw
+cw
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(38,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+Kz
+dz
+sq
+Kz
+CK
+Kz
+vU
+mo
+vU
+Kz
+CK
+Kz
+ja
+Kz
+Jg
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(39,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Ig
+ru
+Kz
+ru
+Kz
+Kz
+Kz
+pz
+Kz
+kI
+Kz
+Kz
+Kz
+ru
+Mm
+ru
+Ig
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(40,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+ru
+Kz
+Kz
+Kz
+Kz
+Kz
+Kz
+Kz
+Kz
+dz
+ru
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(41,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+ru
+ru
+vp
+vp
+pH
+vp
+iW
+vp
+vp
+vp
+vp
+ru
+ru
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(42,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Ig
+hg
+hg
+hg
+hg
+hg
+hg
+hg
+hg
+hg
+Ig
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(43,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(44,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(45,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(46,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+we
+we
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(47,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+we
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(48,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(49,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(50,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(51,1,1) = {"
+Hq
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+qx
+Hq
+"}
+(52,1,1) = {"
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+Hq
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
diff --git a/_maps/virtual_domains/xeno_nest.dmm b/_maps/virtual_domains/xeno_nest.dmm
index 96c98d6e903..7f7c5f7d6ce 100644
--- a/_maps/virtual_domains/xeno_nest.dmm
+++ b/_maps/virtual_domains/xeno_nest.dmm
@@ -1,4 +1,5 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+<<<<<<< HEAD
"aa" = (
/turf/template_noop,
/area/template_noop)
@@ -8,10 +9,22 @@
/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
/area/virtual_domain)
"ac" = (
+=======
+"a" = (
+/turf/template_noop,
+/area/template_noop)
+"b" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/resin/wall,
+/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
+/area/virtual_domain)
+"c" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/alien/resin/wall,
/obj/structure/alien/resin/wall,
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"ad" = (
/obj/structure/alien/resin/wall,
@@ -22,10 +35,19 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"af" = (
+=======
+/area/virtual_domain)
+"e" = (
+/obj/structure/alien/weeds,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"f" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/alien/egg/burst,
/obj/effect/decal/cleanable/blood,
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"ag" = (
/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
@@ -36,6 +58,15 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"ai" = (
+=======
+/area/virtual_domain)
+"h" = (
+/obj/structure/alien/weeds,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"i" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/obj/effect/decal/cleanable/blood/gibs,
@@ -43,6 +74,7 @@
/obj/item/clothing/under/syndicate,
/obj/item/clothing/glasses/night,
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"aj" = (
/obj/machinery/suit_storage_unit/spaceruin,
@@ -59,10 +91,29 @@
/turf/closed/indestructible/binary,
/area/ruin/space/has_grav/powered/virtual_domain)
"am" = (
+=======
+/area/virtual_domain)
+"j" = (
+/obj/machinery/suit_storage_unit/spaceruin,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"k" = (
+/obj/structure/alien/weeds/node,
+/obj/structure/alien/resin/wall,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"l" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/resin/wall,
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"m" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/obj/structure/alien/resin/wall,
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"an" = (
/turf/template_noop,
@@ -73,11 +124,24 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"ap" = (
+=======
+/area/virtual_domain)
+"n" = (
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"o" = (
+/obj/structure/alien/weeds,
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"p" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/mob/living/basic/alien/drone{
can_plant_weeds = 0
},
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"aq" = (
/obj/structure/alien/resin/wall,
@@ -88,11 +152,24 @@
/turf/template_noop,
/area/virtual_domain/safehouse)
"as" = (
+=======
+/area/virtual_domain)
+"q" = (
+/obj/structure/alien/resin/wall,
+/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
+/area/virtual_domain)
+"r" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/template_noop,
+/area/virtual_domain/safehouse)
+"s" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds/node,
/mob/living/basic/alien/drone{
can_plant_weeds = 0
},
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"at" = (
/obj/structure/alien/weeds,
@@ -105,19 +182,38 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"av" = (
+=======
+/area/virtual_domain)
+"t" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"u" = (
+/obj/structure/alien/weeds/node,
+/obj/effect/decal/cleanable/blood,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"v" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/modular_map_root/safehouse{
key = "shuttle"
},
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"aw" = (
/turf/closed/indestructible/binary,
/area/virtual_domain/fullbright)
"ax" = (
+=======
+"x" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/obj/effect/landmark/bitrunning/cache_spawn,
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"ay" = (
/obj/structure/alien/weeds/node,
@@ -150,6 +246,40 @@
/turf/closed/indestructible/binary,
/area/ruin/space/has_grav/powered/virtual_domain)
"aF" = (
+=======
+/area/virtual_domain)
+"y" = (
+/obj/structure/alien/weeds/node,
+/obj/effect/landmark/bitrunning/mob_segment,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"z" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/resin/wall,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"A" = (
+/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
+/area/virtual_domain)
+"B" = (
+/obj/structure/alien/weeds,
+/obj/effect/decal/cleanable/blood,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"C" = (
+/obj/structure/alien/weeds,
+/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
+/area/virtual_domain)
+"D" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/weeds,
+/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
+/area/virtual_domain)
+"E" = (
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"F" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/table/greyscale,
/obj/item/gun/energy/xray,
/obj/item/gun/energy/laser{
@@ -162,12 +292,21 @@
},
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"aG" = (
/obj/structure/alien/resin/wall,
/obj/structure/alien/weeds,
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"aH" = (
+=======
+"G" = (
+/obj/structure/alien/resin/wall,
+/obj/structure/alien/weeds,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"H" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/table/greyscale,
/obj/machinery/recharger{
pixel_x = 8;
@@ -179,12 +318,21 @@
},
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"aI" = (
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"aJ" = (
+=======
+"I" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"J" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/mob/living/basic/alien/queen/large{
desc = "A gigantic alien who is in charge of the hive and all of its loyal servants.";
@@ -193,6 +341,7 @@
can_plant_weeds = 0
},
/turf/open/misc/asteroid/basalt/lava_land_surface,
+<<<<<<< HEAD
/area/ruin/space/has_grav/powered/virtual_domain)
"aK" = (
/obj/structure/alien/weeds,
@@ -200,10 +349,20 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/ruin/space/has_grav/powered/virtual_domain)
"aL" = (
+=======
+/area/virtual_domain)
+"K" = (
+/obj/structure/alien/weeds,
+/obj/effect/landmark/bitrunning/cache_spawn,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"L" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/medkit/regular,
/obj/item/storage/medkit/regular,
/turf/template_noop,
/area/virtual_domain/safehouse)
+<<<<<<< HEAD
"aM" = (
/obj/structure/alien/weeds,
/obj/structure/alien/resin/wall{
@@ -440,12 +599,16 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/virtual_domain)
"SC" = (
+=======
+"M" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/alien/resin/wall{
move_resist = 3000
},
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/virtual_domain)
+<<<<<<< HEAD
"SD" = (
/obj/structure/alien/weeds,
/obj/effect/decal/cleanable/blood,
@@ -467,6 +630,9 @@
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/virtual_domain)
"XX" = (
+=======
+"N" = (
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/alien/weeds,
/obj/structure/bed/nest,
/obj/effect/decal/cleanable/blood/gibs,
@@ -476,6 +642,7 @@
/obj/item/clothing/head/helmet,
/turf/open/misc/asteroid/basalt/lava_land_surface,
/area/virtual_domain)
+<<<<<<< HEAD
(1,1,1) = {"
aa
@@ -2280,4 +2447,1861 @@ aa
aa
aa
aa
+=======
+"O" = (
+/obj/effect/baseturf_helper/virtual_domain,
+/turf/closed/indestructible/binary,
+/area/virtual_domain/fullbright)
+"P" = (
+/obj/structure/alien/weeds/node,
+/mob/living/basic/alien,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"Q" = (
+/obj/structure/alien/resin/wall,
+/obj/structure/alien/resin/wall,
+/turf/open/misc/asteroid/basalt/lava_land_surface/no_ruins,
+/area/virtual_domain)
+"S" = (
+/obj/structure/alien/weeds,
+/mob/living/basic/alien,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"T" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/egg/burst,
+/obj/effect/decal/cleanable/blood/gibs,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"U" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/item/gun/ballistic/automatic/pistol,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"V" = (
+/obj/structure/alien/weeds/node,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"W" = (
+/obj/structure/alien/weeds,
+/obj/structure/alien/egg/burst,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+"Z" = (
+/obj/structure/alien/weeds,
+/obj/structure/bed/nest,
+/obj/effect/decal/cleanable/blood/gibs,
+/obj/item/tank/internals/oxygen,
+/obj/item/clothing/suit/space/syndicate/orange,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/head/helmet/space/syndicate/orange,
+/turf/open/misc/asteroid/basalt/lava_land_surface,
+/area/virtual_domain)
+
+(1,1,1) = {"
+a
+a
+a
+a
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+a
+a
+a
+a
+E
+z
+z
+z
+z
+z
+z
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+a
+a
+a
+E
+E
+z
+e
+W
+W
+z
+e
+e
+z
+M
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+a
+a
+E
+z
+z
+e
+e
+e
+e
+p
+e
+W
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+a
+E
+z
+e
+e
+k
+z
+z
+z
+k
+z
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(6,1,1) = {"
+a
+a
+a
+E
+z
+e
+h
+m
+K
+J
+o
+i
+z
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(7,1,1) = {"
+a
+a
+a
+E
+z
+W
+e
+e
+e
+e
+B
+o
+K
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(8,1,1) = {"
+a
+a
+a
+E
+z
+I
+o
+z
+e
+V
+e
+e
+W
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(9,1,1) = {"
+a
+a
+a
+E
+z
+U
+u
+e
+z
+e
+e
+W
+z
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(10,1,1) = {"
+a
+a
+a
+E
+z
+e
+o
+z
+e
+e
+e
+k
+W
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+E
+E
+E
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(11,1,1) = {"
+a
+a
+a
+E
+z
+z
+e
+e
+e
+e
+e
+h
+e
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+E
+E
+z
+z
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+a
+"}
+(12,1,1) = {"
+a
+a
+a
+E
+E
+z
+W
+e
+e
+e
+e
+e
+e
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+E
+E
+z
+z
+Z
+I
+z
+z
+E
+a
+a
+a
+a
+a
+a
+a
+"}
+(13,1,1) = {"
+a
+a
+a
+a
+E
+z
+z
+e
+e
+V
+e
+e
+z
+z
+E
+a
+a
+a
+a
+a
+a
+a
+a
+E
+z
+z
+W
+o
+B
+K
+z
+E
+a
+a
+a
+a
+a
+a
+a
+"}
+(14,1,1) = {"
+a
+a
+a
+a
+E
+E
+z
+z
+e
+e
+e
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+E
+E
+E
+z
+I
+e
+y
+e
+W
+z
+E
+a
+a
+a
+a
+a
+a
+a
+"}
+(15,1,1) = {"
+a
+a
+a
+a
+a
+E
+E
+z
+z
+z
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+E
+E
+z
+z
+z
+e
+e
+e
+I
+z
+z
+E
+a
+a
+a
+a
+a
+a
+a
+"}
+(16,1,1) = {"
+a
+a
+a
+a
+a
+a
+E
+z
+V
+V
+z
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+z
+z
+e
+S
+e
+W
+z
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+a
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+a
+E
+z
+p
+e
+z
+z
+E
+z
+z
+z
+z
+z
+z
+z
+z
+z
+e
+e
+z
+z
+z
+z
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+a
+a
+E
+z
+e
+e
+e
+z
+z
+z
+e
+e
+e
+e
+e
+e
+z
+z
+e
+z
+z
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+O
+"}
+(19,1,1) = {"
+E
+E
+E
+E
+E
+E
+E
+z
+z
+e
+e
+e
+z
+e
+e
+e
+e
+e
+e
+V
+e
+e
+e
+z
+E
+E
+a
+a
+a
+E
+Q
+q
+q
+q
+q
+q
+q
+q
+E
+"}
+(20,1,1) = {"
+E
+z
+z
+z
+z
+E
+E
+E
+z
+z
+e
+V
+e
+e
+e
+z
+z
+z
+z
+e
+e
+t
+z
+z
+E
+a
+a
+a
+a
+E
+q
+A
+A
+A
+A
+A
+A
+A
+E
+"}
+(21,1,1) = {"
+E
+z
+W
+I
+z
+z
+z
+z
+z
+z
+e
+e
+e
+e
+z
+z
+E
+E
+z
+z
+e
+e
+z
+E
+E
+a
+a
+a
+a
+E
+q
+A
+A
+A
+A
+A
+A
+A
+E
+"}
+(22,1,1) = {"
+E
+G
+t
+h
+e
+z
+z
+e
+e
+e
+e
+e
+e
+z
+z
+E
+E
+E
+z
+e
+e
+e
+z
+E
+a
+a
+a
+a
+a
+E
+q
+A
+C
+A
+A
+A
+A
+A
+E
+"}
+(23,1,1) = {"
+E
+G
+K
+W
+V
+e
+e
+e
+z
+z
+e
+z
+z
+z
+E
+E
+E
+E
+z
+e
+e
+z
+z
+E
+a
+a
+a
+a
+a
+E
+q
+C
+C
+C
+A
+A
+A
+A
+E
+"}
+(24,1,1) = {"
+E
+z
+z
+I
+I
+z
+z
+z
+z
+z
+e
+z
+E
+E
+E
+E
+E
+E
+z
+e
+e
+z
+E
+E
+E
+a
+a
+a
+a
+E
+q
+C
+C
+A
+A
+C
+A
+A
+E
+"}
+(25,1,1) = {"
+E
+E
+z
+z
+z
+z
+E
+E
+E
+z
+e
+z
+z
+E
+E
+E
+E
+E
+z
+e
+s
+z
+z
+z
+E
+E
+E
+E
+E
+E
+b
+C
+C
+C
+A
+C
+C
+A
+E
+"}
+(26,1,1) = {"
+a
+E
+E
+E
+E
+E
+E
+E
+E
+z
+e
+e
+z
+E
+E
+E
+E
+E
+z
+e
+e
+e
+e
+z
+z
+z
+E
+E
+E
+z
+z
+n
+n
+n
+n
+n
+v
+A
+E
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+a
+E
+E
+z
+z
+z
+e
+e
+z
+z
+E
+E
+E
+E
+z
+z
+e
+e
+e
+e
+e
+z
+z
+z
+z
+k
+e
+n
+j
+j
+j
+n
+n
+A
+E
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+E
+z
+z
+T
+e
+h
+V
+W
+z
+E
+E
+E
+z
+z
+e
+e
+z
+z
+e
+e
+e
+z
+V
+e
+e
+e
+n
+n
+n
+n
+n
+n
+A
+E
+"}
+(29,1,1) = {"
+a
+a
+a
+a
+a
+E
+z
+N
+f
+e
+e
+W
+I
+z
+E
+E
+E
+z
+e
+e
+z
+z
+z
+z
+e
+V
+z
+V
+t
+e
+e
+n
+n
+F
+H
+n
+n
+A
+E
+"}
+(30,1,1) = {"
+a
+a
+a
+a
+a
+E
+z
+x
+o
+e
+I
+I
+z
+z
+E
+E
+E
+z
+e
+z
+z
+E
+E
+z
+z
+z
+z
+z
+k
+e
+e
+n
+n
+n
+n
+n
+n
+A
+E
+"}
+(31,1,1) = {"
+a
+a
+a
+a
+a
+E
+z
+z
+z
+e
+z
+z
+z
+E
+E
+E
+E
+z
+e
+z
+z
+E
+E
+E
+E
+E
+E
+E
+z
+e
+e
+n
+L
+n
+n
+n
+n
+A
+E
+"}
+(32,1,1) = {"
+a
+a
+a
+a
+a
+E
+E
+E
+z
+e
+z
+E
+E
+E
+E
+E
+E
+z
+e
+e
+z
+E
+a
+a
+a
+a
+E
+E
+z
+e
+e
+n
+n
+n
+n
+n
+r
+A
+E
+"}
+(33,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+E
+z
+e
+z
+E
+E
+a
+a
+a
+E
+l
+z
+V
+z
+E
+a
+a
+a
+a
+E
+z
+z
+z
+q
+C
+A
+A
+C
+A
+A
+A
+E
+"}
+(34,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+E
+z
+V
+z
+E
+E
+a
+a
+a
+E
+E
+z
+e
+z
+E
+a
+a
+a
+a
+E
+z
+E
+q
+q
+C
+C
+C
+A
+A
+A
+A
+E
+"}
+(35,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+E
+z
+e
+z
+E
+E
+a
+a
+a
+E
+E
+z
+e
+z
+E
+a
+a
+a
+a
+E
+E
+E
+q
+q
+A
+A
+A
+A
+A
+A
+A
+E
+"}
+(36,1,1) = {"
+a
+a
+a
+a
+a
+a
+a
+E
+z
+e
+z
+E
+E
+E
+E
+E
+E
+z
+z
+e
+z
+E
+a
+a
+a
+a
+a
+a
+E
+q
+q
+A
+C
+D
+A
+A
+A
+A
+E
+"}
+(37,1,1) = {"
+a
+a
+a
+a
+a
+a
+E
+E
+z
+e
+z
+E
+E
+E
+E
+E
+z
+z
+e
+e
+z
+E
+a
+a
+a
+a
+a
+a
+E
+q
+q
+A
+A
+A
+A
+A
+A
+A
+E
+"}
+(38,1,1) = {"
+a
+a
+a
+a
+a
+E
+E
+z
+z
+e
+z
+z
+z
+z
+z
+z
+z
+e
+e
+z
+z
+E
+a
+a
+a
+a
+a
+a
+E
+q
+q
+A
+A
+A
+A
+A
+A
+A
+E
+"}
+(39,1,1) = {"
+a
+a
+a
+a
+a
+E
+z
+z
+e
+e
+W
+z
+z
+e
+e
+P
+e
+e
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+E
+Q
+q
+q
+q
+q
+q
+q
+q
+q
+E
+"}
+(40,1,1) = {"
+a
+a
+a
+a
+E
+E
+z
+I
+e
+h
+e
+e
+e
+e
+z
+z
+z
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+a
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+E
+"}
+(41,1,1) = {"
+a
+a
+a
+a
+E
+z
+z
+W
+e
+V
+e
+W
+z
+z
+z
+E
+E
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(42,1,1) = {"
+a
+a
+a
+a
+E
+z
+W
+K
+e
+I
+I
+z
+z
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(43,1,1) = {"
+a
+a
+a
+a
+E
+c
+z
+z
+z
+z
+z
+z
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(44,1,1) = {"
+a
+a
+a
+a
+E
+E
+E
+E
+E
+E
+E
+E
+E
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}
diff --git a/code/__DEFINES/DNA.dm b/code/__DEFINES/DNA.dm
index 9f0d708273d..143aa5f4472 100644
--- a/code/__DEFINES/DNA.dm
+++ b/code/__DEFINES/DNA.dm
@@ -16,8 +16,13 @@
#define MINOR_NEGATIVE 4
+<<<<<<< HEAD
//Mutation classes. Normal being on them, extra being additional mutations with instability and other being stuff you dont want people to fuck with like wizard mutate
/// A mutation that can be activated and deactived by completing a sequence
+=======
+//Mutation classes. Normal being on them, extra being additional mutations with instability and other being stuff you don't want people to fuck with like wizard mutate
+/// A mutation that can be activated and deactivated by completing a sequence
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define MUT_NORMAL 1
/// A mutation that is in the mutations tab, and can be given and taken away through though the DNA console. Has a 0 before its name in the mutation section of the dna console
#define MUT_EXTRA 2
@@ -44,8 +49,11 @@
#define DNA_UNI_IDENTITY_BLOCKS 12
+<<<<<<< HEAD
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION (moved to modular_skyrat/modules/customization/_DEFINES/DNA.dm)
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// This number needs to equal the total number of DNA blocks
#define DNA_MUTANT_COLOR_BLOCK 1
#define DNA_ETHEREAL_COLOR_BLOCK 2
@@ -62,7 +70,10 @@
#define DNA_MOTH_MARKINGS_BLOCK 13
#define DNA_MUSHROOM_CAPS_BLOCK 14
#define DNA_POD_HAIR_BLOCK 15
+<<<<<<< HEAD
*/ //SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Hey! Listen up if you're here because you're adding a species feature!
//
@@ -71,6 +82,7 @@
// (Which means having a DNA block for a feature tied to a mob without DNA is entirely pointless.)
/// Total amount of DNA blocks, must be equal to the highest DNA block number
+<<<<<<< HEAD
#define DNA_FEATURE_BLOCKS SSaccessories.dna_total_feature_blocks // SKYRAT EDIT CHANGE - ORIGINAL: #define DNA_FEATURE_BLOCKS 15
// SKYRAT EDIT ADDITION START
#define DNA_MANDATORY_COLOR_BLOCKS 5
@@ -81,6 +93,9 @@
#define DNA_SKIN_COLOR_BLOCK 5
#define DNA_POD_HAIR_BLOCK 15
// SKYRAT EDIT ADDITION END
+=======
+#define DNA_FEATURE_BLOCKS 15
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define DNA_SEQUENCE_LENGTH 4
#define DNA_MUTATION_BLOCKS 8
diff --git a/code/__DEFINES/MC.dm b/code/__DEFINES/MC.dm
index 4836625d919..df2b06a7a77 100644
--- a/code/__DEFINES/MC.dm
+++ b/code/__DEFINES/MC.dm
@@ -19,7 +19,11 @@
///creates a running average of "things elapsed" per time period when you need to count via a smaller time period.
///eg you want an average number of things happening per second but you measure the event every tick (50 milliseconds).
+<<<<<<< HEAD
///make sure both time intervals are in the same units. doesnt work if current_duration > total_duration or if total_duration == 0
+=======
+///make sure both time intervals are in the same units. doesn't work if current_duration > total_duration or if total_duration == 0
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define MC_AVG_OVER_TIME(average, current, total_duration, current_duration) ((((total_duration) - (current_duration)) / (total_duration)) * (average) + (current))
#define MC_AVG_MINUTES(average, current, current_duration) (MC_AVG_OVER_TIME(average, current, 1 MINUTES, current_duration))
@@ -32,7 +36,11 @@
#define STOP_PROCESSING(Processor, Datum) Datum.datum_flags &= ~DF_ISPROCESSING;Processor.processing -= Datum;Processor.currentrun -= Datum
/// Returns true if the MC is initialized and running.
+<<<<<<< HEAD
/// Optional argument init_stage controls what stage the mc must have initializted to count as initialized. Defaults to INITSTAGE_MAX if not specified.
+=======
+/// Optional argument init_stage controls what stage the mc must have initialized to count as initialized. Defaults to INITSTAGE_MAX if not specified.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define MC_RUNNING(INIT_STAGE...) (Master && Master.processing > 0 && Master.current_runlevel && Master.init_stage_completed == (max(min(INITSTAGE_MAX, ##INIT_STAGE), 1)))
#define MC_LOOP_RTN_NEWSTAGES 1
diff --git a/code/__DEFINES/_flags.dm b/code/__DEFINES/_flags.dm
index bf1f4a354bd..7182068bf51 100644
--- a/code/__DEFINES/_flags.dm
+++ b/code/__DEFINES/_flags.dm
@@ -11,6 +11,11 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
#define DF_USE_TAG (1<<0)
#define DF_VAR_EDITED (1<<1)
#define DF_ISPROCESSING (1<<2)
+<<<<<<< HEAD
+=======
+/// Placed on datums that have a static, constant reference. Primarily only used for turfs.
+#define DF_STATIC_OBJECT (1<<3)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//FLAGS BITMASK
// scroll down before changing the numbers on these
@@ -23,7 +28,11 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
#define NO_SCREENTIPS_1 (1<<2)
/// Prevent clicking things below it on the same turf eg. doors/ fulltile windows
#define PREVENT_CLICK_UNDER_1 (1<<3)
+<<<<<<< HEAD
///specifies that this atom is a hologram that isnt real
+=======
+///specifies that this atom is a hologram that isn't real
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define HOLOGRAM_1 (1<<4)
///Whether /atom/Initialize() has already run for the object
#define INITIALIZED_1 (1<<5)
@@ -50,7 +59,11 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
/// Whether or not this atom is storing contents for a disassociated storage object
#define HAS_DISASSOCIATED_STORAGE_1 (1<<16)
/// If this atom has experienced a decal element "init finished" sourced appearance update
+<<<<<<< HEAD
/// We use this to ensure stacked decals don't double up appearance updates for no rasin
+=======
+/// We use this to ensure stacked decals don't double up appearance updates for no reason
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Flag as an optimization, don't make this a trait without profiling
/// Yes I know this is a stupid flag, no you can't take him from me
#define DECAL_INIT_UPDATE_EXPERIENCED_1 (1<<17)
@@ -79,9 +92,15 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
#define RICOCHET_HARD (1<<1)
//TURF FLAGS
+<<<<<<< HEAD
/// If a turf cant be jaunted through.
#define NOJAUNT (1<<0)
/// If a turf is an usused reservation turf awaiting assignment
+=======
+/// If a turf can't be jaunted through.
+#define NOJAUNT (1<<0)
+/// If a turf is an unused reservation turf awaiting assignment
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define UNUSED_RESERVATION_TURF (1<<1)
/// If a turf is a reserved turf
#define RESERVATION_TURF (1<<2)
@@ -279,8 +298,13 @@ GLOBAL_LIST_INIT(bitflags, list(1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 204
#define RELIGION_TOOL_SACRIFICE (1<<1)
#define RELIGION_TOOL_SECTSELECT (1<<2)
+<<<<<<< HEAD
// ---- Skillchip incompatability flags ---- //
// These flags control which skill chips are compatible with eachother.
+=======
+// ---- Skillchip incompatibility flags ---- //
+// These flags control which skill chips are compatible with each other.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// By default, skillchips are incompatible with themselves and multiple of the same istype() cannot be implanted together. Set this flag to disable that check.
#define SKILLCHIP_ALLOWS_MULTIPLE (1<<0)
// This skillchip is incompatible with other skillchips from the incompatible_category list.
diff --git a/code/__DEFINES/_helpers.dm b/code/__DEFINES/_helpers.dm
index f1b1b21df33..d9f75fe8e9d 100644
--- a/code/__DEFINES/_helpers.dm
+++ b/code/__DEFINES/_helpers.dm
@@ -32,3 +32,7 @@
// Custom types that we define don't get a unique id, but this is useful for identifying
// types that don't normally have a way to run istype() on them.
#define TYPEID(thing) copytext(REF(thing), 4, 6)
+
+/// A null statement to guard against EmptyBlock lint without necessitating the use of pass()
+/// Used to avoid proc-call overhead. But use sparingly. Probably pointless in most places.
+#define EMPTY_BLOCK_GUARD ;
diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm
index 6200a86da62..48cf38db373 100644
--- a/code/__DEFINES/access.dm
+++ b/code/__DEFINES/access.dm
@@ -337,8 +337,12 @@
ACCESS_VIROLOGY, \
ACCESS_WEAPONS, \
ACCESS_XENOBIOLOGY, \
+<<<<<<< HEAD
ACCESS_BARBER, \
) // SKYRAT EDIT ADDITION
+=======
+)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Command staff/secure accesses, think bridge/armoury, ai_upload, notably access to modify ID cards themselves. Do not use direct, access via SSid_access.get_flag_access_list(ACCESS_FLAG_COMMAND)
#define COMMAND_ACCESS list( \
@@ -365,7 +369,11 @@
ACCESS_HOP, \
ACCESS_QM, \
ACCESS_RD, \
+<<<<<<< HEAD
) // SKYRAT EDIT - Added ACCESS_CE and ACCESS_CMO to PRIVATE_COMMAND_ACCESS
+=======
+)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Captains private rooms. Do not use direct, access via SSid_access.get_flag_access_list(ACCESS_FLAG_CAPTAIN)
#define CAPTAIN_ACCESS list( \
diff --git a/code/__DEFINES/admin.dm b/code/__DEFINES/admin.dm
index e566f62dc53..76b159be262 100644
--- a/code/__DEFINES/admin.dm
+++ b/code/__DEFINES/admin.dm
@@ -76,8 +76,8 @@
#define ADMIN_LUAVIEW_CHUNK(state, log_index) "(VIEW CODE )"
/// Displays "(SHOW)" in the chat, when clicked it tries to show atom(paper). First you need to set the request_state variable to TRUE for the paper.
#define ADMIN_SHOW_PAPER(atom) "(SHOW )"
-/// Displays "(PRINT)" in the chat, when clicked it will try to print the atom(paper) on the CentCom fax machine.
-#define ADMIN_PRINT_FAX(atom, fax_name) "(PRINT )"
+/// Displays "(PRINT)" in the chat, when clicked it will try to print the atom(paper) on the CentCom/Syndicate fax machine.
+#define ADMIN_PRINT_FAX(atom, sender, destination) "(PRINT )"
/// Displays "(PLAY)" in the chat, when clicked it tries to play internet sounds from the request.
#define ADMIN_PLAY_INTERNET(text, credit) "(PLAY )"
/// Displays "(SEE Z-LEVEL LAYOUT)" in the chat, when clicked it shows the z-level layouts for the current world state.
diff --git a/code/__DEFINES/ai/ai.dm b/code/__DEFINES/ai/ai.dm
index 94780b7d5f3..b77e7cf0145 100644
--- a/code/__DEFINES/ai/ai.dm
+++ b/code/__DEFINES/ai/ai.dm
@@ -2,7 +2,10 @@
#define GET_TARGETING_STRATEGY(targeting_type) SSai_behaviors.targeting_strategies[targeting_type]
#define HAS_AI_CONTROLLER_TYPE(thing, type) istype(thing?.ai_controller, type)
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//AI controller flags
//If you add a new status, be sure to add it to the ai_controllers subsystem's ai_controllers_by_status list.
///The AI is currently active.
@@ -69,7 +72,11 @@
///macro for whether it's appropriate to resist right now, used by resist subtree
#define SHOULD_RESIST(source) (source.on_fire || source.buckled || HAS_TRAIT(source, TRAIT_RESTRAINED) || (source.pulledby && source.pulledby.grab_state > GRAB_PASSIVE))
///macro for whether the pawn can act, used generally to prevent some horrifying ai disasters
+<<<<<<< HEAD
#define IS_DEAD_OR_INCAP(source) (source.incapacitated() || source.stat)
+=======
+#define IS_DEAD_OR_INCAP(source) (source.incapacitated || source.stat)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOBAL_LIST_INIT(all_radial_directions, list(
"NORTH" = image(icon = 'icons/testing/turf_analysis.dmi', icon_state = "red_arrow", dir = NORTH),
diff --git a/code/__DEFINES/ai/monsters.dm b/code/__DEFINES/ai/monsters.dm
index fb6952eb084..b95e10a34b6 100644
--- a/code/__DEFINES/ai/monsters.dm
+++ b/code/__DEFINES/ai/monsters.dm
@@ -288,3 +288,22 @@
//netguardians
/// rocket launcher
#define BB_NETGUARDIAN_ROCKET_ABILITY "netguardian_rocket"
+<<<<<<< HEAD
+=======
+
+//deer
+///our water target
+#define BB_DEER_WATER_TARGET "deer_water_target"
+///our grass target
+#define BB_DEER_GRASS_TARGET "deer_grass_target"
+///our tree target
+#define BB_DEER_TREE_TARGET "deer_tree_target"
+///our temporary playmate
+#define BB_DEER_PLAYFRIEND "deer_playfriend"
+///our home target
+#define BB_DEER_TREEHOME "deer_home"
+///our resting duration
+#define BB_DEER_RESTING "deer_resting"
+///time till our next rest duration
+#define BB_DEER_NEXT_REST_TIMER "deer_next_rest_timer"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/antagonists.dm b/code/__DEFINES/antagonists.dm
index dee779f0b58..67685364e0d 100644
--- a/code/__DEFINES/antagonists.dm
+++ b/code/__DEFINES/antagonists.dm
@@ -76,6 +76,7 @@
#define CONTRACT_UPLINK_PAGE_CONTRACTS "CONTRACTS"
#define CONTRACT_UPLINK_PAGE_HUB "HUB"
+<<<<<<< HEAD
// Heretic path defines.
#define PATH_START "Start Path"
@@ -245,6 +246,196 @@ GLOBAL_LIST_INIT(ai_employers, list(
/// Checks if the given mob is a wizard
#define IS_WIZARD(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/wizard))
+=======
+
+// Heretic path defines.
+#define PATH_START "Start Path"
+#define PATH_SIDE "Side Path"
+#define PATH_ASH "Ash Path"
+#define PATH_RUST "Rust Path"
+#define PATH_FLESH "Flesh Path"
+#define PATH_VOID "Void Path"
+#define PATH_BLADE "Blade Path"
+#define PATH_COSMIC "Cosmic Path"
+#define PATH_LOCK "Lock Path"
+#define PATH_MOON "Moon Path"
+
+/// Defines are used in /proc/has_living_heart() to report if the heretic has no heart period, no living heart, or has a living heart.
+#define HERETIC_NO_HEART_ORGAN -1
+#define HERETIC_NO_LIVING_HEART 0
+#define HERETIC_HAS_LIVING_HEART 1
+
+/// A define used in ritual priority for heretics.
+#define MAX_KNOWLEDGE_PRIORITY 100
+
+/// Checks if the passed mob can become a heretic ghoul.
+/// - Must be a human (type, not species)
+/// - Skeletons cannot be husked (they are snowflaked instead of having a trait)
+/// - Monkeys are monkeys, not quite human (balance reasons)
+#define IS_VALID_GHOUL_MOB(mob) (ishuman(mob) && !isskeleton(mob) && !ismonkey(mob))
+
+/// Forces the blob to place the core where they currently are, ignoring any checks.
+#define BLOB_FORCE_PLACEMENT -1
+/// Normal blob placement, does the regular checks to make sure the blob isn't placing itself in an invalid location
+#define BLOB_NORMAL_PLACEMENT 0
+/// Selects a random location for the blob to be placed.
+#define BLOB_RANDOM_PLACEMENT 1
+
+#define CONSTRUCT_JUGGERNAUT "Juggernaut"
+#define CONSTRUCT_WRAITH "Wraith"
+#define CONSTRUCT_ARTIFICER "Artificer"
+#define CONSTRUCT_HARVESTER "Harvester"
+
+/// The Classic Wizard wizard loadout.
+#define WIZARD_LOADOUT_CLASSIC "loadout_classic"
+/// Mjolnir's Power wizard loadout.
+#define WIZARD_LOADOUT_MJOLNIR "loadout_hammer"
+/// Fantastical Army wizard loadout.
+#define WIZARD_LOADOUT_WIZARMY "loadout_army"
+/// Soul Tapper wizard loadout.
+#define WIZARD_LOADOUT_SOULTAP "loadout_tap"
+/// Convenient list of all wizard loadouts for unit testing.
+#define ALL_WIZARD_LOADOUTS list( \
+ WIZARD_LOADOUT_CLASSIC, \
+ WIZARD_LOADOUT_MJOLNIR, \
+ WIZARD_LOADOUT_WIZARMY, \
+ WIZARD_LOADOUT_SOULTAP, \
+)
+/// Number of times you need to perform the grand ritual to complete it
+#define GRAND_RITUAL_FINALE_COUNT 7
+/// The crew will start being warned every time a rune is created after this many invocations.
+#define GRAND_RITUAL_RUNES_WARNING_POTENCY 3
+/// The crew will get a louder warning when this level of rune is created, and the next one will be special
+#define GRAND_RITUAL_IMMINENT_FINALE_POTENCY 6
+
+/// Used in logging spells for roundend results
+#define LOG_SPELL_TYPE "type"
+#define LOG_SPELL_AMOUNT "amount"
+
+///File to the traitor flavor
+#define TRAITOR_FLAVOR_FILE "antagonist_flavor/traitor_flavor.json"
+
+///File to the malf flavor
+#define MALFUNCTION_FLAVOR_FILE "antagonist_flavor/malfunction_flavor.json"
+
+/// JSON string file for all of our heretic influence flavors
+#define HERETIC_INFLUENCE_FILE "antagonist_flavor/heretic_influences.json"
+
+/// JSON file containing spy objectives
+#define SPY_OBJECTIVE_FILE "antagonist_flavor/spy_objective.json"
+
+///employers that are from the syndicate
+GLOBAL_LIST_INIT(syndicate_employers, list(
+ "Animal Rights Consortium",
+ "Bee Liberation Front",
+ "Cybersun Industries",
+ "Donk Corporation",
+ "Gorlex Marauders",
+ "MI13",
+ "Tiger Cooperative Fanatic",
+ "Waffle Corporation Terrorist",
+ "Waffle Corporation",
+))
+///employers that are from Nanotrasen
+GLOBAL_LIST_INIT(nanotrasen_employers, list(
+ "Champions of Evil",
+ "Corporate Climber",
+ "Gone Postal",
+ "Internal Affairs Agent",
+ "Legal Trouble",
+))
+
+///employers who hire agents to do the hijack
+GLOBAL_LIST_INIT(hijack_employers, list(
+ "Animal Rights Consortium",
+ "Bee Liberation Front",
+ "Gone Postal",
+ "Tiger Cooperative Fanatic",
+ "Waffle Corporation Terrorist",
+))
+
+///employers who hire agents to do a task and escape... or martyrdom. whatever
+GLOBAL_LIST_INIT(normal_employers, list(
+ "Champions of Evil",
+ "Corporate Climber",
+ "Cybersun Industries",
+ "Donk Corporation",
+ "Gorlex Marauders",
+ "Internal Affairs Agent",
+ "Legal Trouble",
+ "MI13",
+ "Waffle Corporation",
+))
+
+///employers for malfunctioning ais. they do not have sides, unlike traitors.
+GLOBAL_LIST_INIT(ai_employers, list(
+ "Biohazard",
+ "Despotic Ruler",
+ "Fanatical Revelation",
+ "Logic Core Error",
+ "Problem Solver",
+ "S.E.L.F.",
+ "Something's Wrong",
+ "Spam Virus",
+ "SyndOS",
+ "Unshackled",
+))
+
+#define UPLINK_THEME_SYNDICATE "syndicate"
+
+#define UPLINK_THEME_UNDERWORLD_MARKET "neutral"
+
+/// Checks if the given mob is a traitor
+#define IS_TRAITOR(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/traitor))
+
+/**
+ * Cult checks
+ */
+
+/// Checks if the given mob is a blood cultist
+#define IS_CULTIST(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/cult) || HAS_TRAIT(mob, TRAIT_ACT_AS_CULTIST))
+
+/// Checks if the given mob is a blood cultist and is guaranteed to return the datum if possible - will cause issues with above trait
+#define GET_CULTIST(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/cult))
+
+/// Checks if the mob is a sentient or non-sentient cultist
+#define IS_CULTIST_OR_CULTIST_MOB(mob) ((IS_CULTIST(mob)) || (mob.faction.Find(FACTION_CULT)))
+
+/**
+ * Heretic checks
+ */
+
+/// Checks if the given mob is a heretic.
+#define IS_HERETIC(mob) (mob.mind?.has_antag_datum(/datum/antagonist/heretic) || HAS_TRAIT(mob, TRAIT_ACT_AS_HERETIC))
+/// Checks if the given mob is a heretic and is guaranteed to return the datum if possible - will cause issues with above trait
+#define GET_HERETIC(mob) (mob.mind?.has_antag_datum(/datum/antagonist/heretic))
+
+/// Check if the given mob is a heretic monster.
+#define IS_HERETIC_MONSTER(mob) (mob.mind?.has_antag_datum(/datum/antagonist/heretic_monster))
+/// Check if the given mob is a lunatic
+#define IS_LUNATIC(mob) (mob.mind?.has_antag_datum(/datum/antagonist/lunatic))
+/// Checks if the given mob is either a heretic, heretic monster or a lunatic.
+#define IS_HERETIC_OR_MONSTER(mob) (IS_HERETIC(mob) || IS_HERETIC_MONSTER(mob) || IS_LUNATIC(mob))
+/// CHecks if the given mob is in the mansus realm
+#define IS_IN_MANSUS(mob) (istype(get_area(mob), /area/centcom/heretic_sacrifice))
+
+/**
+ * Etc.
+ */
+
+/// Checks if the given mob is a changeling
+#define IS_CHANGELING(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/changeling))
+
+/// Checks if the given mob is a nuclear operative
+#define IS_NUKE_OP(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/nukeop))
+
+//Tells whether or not someone is a space ninja
+#define IS_SPACE_NINJA(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/ninja))
+
+/// Checks if the given mob is a wizard
+#define IS_WIZARD(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/wizard))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Checks if the given mob is a revolutionary. Will return TRUE for rev heads as well.
#define IS_REVOLUTIONARY(mob) (mob?.mind?.has_antag_datum(/datum/antagonist/rev))
@@ -379,6 +570,10 @@ GLOBAL_LIST_INIT(human_invader_antagonists, list(
/// For changelings, this is how many recent say lines are retained when absorbing a mob
#define LING_ABSORB_RECENT_SPEECH 8
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Various abductor equipment modes.
#define VEST_STEALTH 1
diff --git a/code/__DEFINES/atmospherics/atmos_helpers.dm b/code/__DEFINES/atmospherics/atmos_helpers.dm
index ca32e485980..8921aa05eab 100644
--- a/code/__DEFINES/atmospherics/atmos_helpers.dm
+++ b/code/__DEFINES/atmospherics/atmos_helpers.dm
@@ -82,7 +82,11 @@ GLOBAL_LIST_INIT(atmos_adjacent_savings, list(0,0))
turf.archived_cycle = SSair.times_fired;\
turf.temperature_archived = turf.temperature;
+<<<<<<< HEAD
/* Fetch the energy transferred when two gas mixtures's temperature equalize.
+=======
+/* Fetch the energy transferred when two gas mixtures' temperature equalize.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*
* To equalize two gas mixtures, we simply pool the energy and divide it by the pooled heat capacity.
* T' = (W1+W2) / (C1+C2)
@@ -107,7 +111,11 @@ GLOBAL_LIST_INIT(atmos_adjacent_savings, list(0,0))
* Not immediately obvious, but saves us operation time.
*
* We put a lot of parentheses here because the numbers get really really big.
+<<<<<<< HEAD
* By prioritizing the division we try to tone the number down so we dont get overflows.
+=======
+ * By prioritizing the division we try to tone the number down so we don't get overflows.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*
* Arguments:
* * temperature_delta: T2 - T1. [/datum/gas_mixture/var/temperature]
diff --git a/code/__DEFINES/atom_hud.dm b/code/__DEFINES/atom_hud.dm
index a105e119847..9722ae1a57c 100644
--- a/code/__DEFINES/atom_hud.dm
+++ b/code/__DEFINES/atom_hud.dm
@@ -47,6 +47,7 @@
#define DIAG_CAMERA_HUD "22"
/// Steady Hacked APC effect, visible only to Malf AIs
#define MALF_APC_HUD "23"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - gun permits and DNR
/// ammo of guns
@@ -57,6 +58,8 @@
/// If they have the DNR trait
#define DNR_HUD "27"
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//by default everything in the hud_list of an atom is an image
//a value in hud_list with one of these will change that behavior
@@ -75,7 +78,10 @@
#define DATA_HUD_AI_DETECT 9
#define DATA_HUD_FAN 10
#define DATA_HUD_MALF_APC 11
+<<<<<<< HEAD
#define DATA_HUD_PERMIT 12 //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// cooldown for being shown the images for any particular data hud
#define ADD_HUD_TO_COOLDOWN 20
diff --git a/code/__DEFINES/blob_defines.dm b/code/__DEFINES/blob_defines.dm
index 966e02af3fc..f4bd496e1a7 100644
--- a/code/__DEFINES/blob_defines.dm
+++ b/code/__DEFINES/blob_defines.dm
@@ -13,8 +13,12 @@
// Generic blob defines
+<<<<<<< HEAD
//#define BLOB_BASE_POINT_RATE 2 // Base amount of points per process()
#define BLOB_BASE_POINT_RATE 2.5 // SKYRAT EDIT CHANGE
+=======
+#define BLOB_BASE_POINT_RATE 2 // Base amount of points per process()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define BLOB_EXPAND_COST 4 // Price to expand onto a new tile
#define BLOB_ATTACK_REFUND 2 // Points 'refunded' when the expand attempt actually attacks something instead
#define BLOB_BRUTE_RESIST 0.5 // Brute damage taken gets multiplied by this value
diff --git a/code/__DEFINES/bodyparts.dm b/code/__DEFINES/bodyparts.dm
index 12d0d572288..79e8d764a91 100644
--- a/code/__DEFINES/bodyparts.dm
+++ b/code/__DEFINES/bodyparts.dm
@@ -6,9 +6,15 @@
/// The max damage a limb can take before it stops taking damage.
/// Used by the max_damage var.
#define LIMB_MAX_HP_PROSTHESIS 20 //Used by surplus prosthesis limbs.
+<<<<<<< HEAD
#define LIMB_MAX_HP_DEFAULT 60 //Used by most all limbs by default. // SKYRAT EDIT CHANGE - ORIGINAL : #define LIMB_MAX_HP_DEFAULT 50
#define LIMB_MAX_HP_ADVANCED 75 //Used by advanced robotic limbs.
#define LIMB_MAX_HP_CORE 250 //Only use this for heads and torsos. // SKYRAT EDIT CHANGE - ORIGINAL : #define LIMB_MAX_HP_CORE 200
+=======
+#define LIMB_MAX_HP_DEFAULT 50 //Used by most all limbs by default.
+#define LIMB_MAX_HP_ADVANCED 75 //Used by advanced robotic limbs.
+#define LIMB_MAX_HP_CORE 200 //Only use this for heads and torsos.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Xenomorph Limbs
#define LIMB_MAX_HP_ALIEN_LARVA 50 //Used by the weird larva chest and head. Did you know they have those?
diff --git a/code/__DEFINES/callbacks.dm b/code/__DEFINES/callbacks.dm
index 7e07c3d0541..eefd8f127f9 100644
--- a/code/__DEFINES/callbacks.dm
+++ b/code/__DEFINES/callbacks.dm
@@ -18,7 +18,11 @@
/* Written with `0 ||` to avoid the compiler seeing call("string"), and thinking it's a deprecated DLL */ \
call(0 || proc_owner, proc_path)(##proc_arguments); \
}; \
+<<<<<<< HEAD
}
+=======
+ }
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// like CALLBACK but specifically for verb callbacks
#define VERB_CALLBACK new /datum/callback/verb_callback
diff --git a/code/__DEFINES/cameranets.dm b/code/__DEFINES/cameranets.dm
index 935e015e0cd..7cfc33dd0bf 100644
--- a/code/__DEFINES/cameranets.dm
+++ b/code/__DEFINES/cameranets.dm
@@ -30,6 +30,10 @@
#define CAMERA_NETWORK_CARGO "cargo"
#define CAMERANET_NETWORK_ABDUCTOR "abductor"
#define OPERATIVE_CAMERA_NET "operative"
+<<<<<<< HEAD
+=======
+#define CAMERANET_NETWORK_CURATOR "curator"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Ruins/Away missiosn/Misc camera nets
#define CAMERANET_NETWORK_MOON19_XENO "mo19x"
diff --git a/code/__DEFINES/cleaning.dm b/code/__DEFINES/cleaning.dm
index a53887dd0ed..8f544bc256b 100644
--- a/code/__DEFINES/cleaning.dm
+++ b/code/__DEFINES/cleaning.dm
@@ -32,6 +32,7 @@
/// Cleans decals such as cobwebs off the floor
#define CLEAN_TYPE_HARD_DECAL (1 << 7)
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN ADD: Turf liquid cleaning type!
/// Cleans all the liquids from a turf, or "evaporates" them
@@ -43,6 +44,12 @@
// Use these when calling the wash proc for your cleaning apparatus
#define CLEAN_WASH (CLEAN_TYPE_BLOOD | CLEAN_TYPE_DISEASE | CLEAN_TYPE_ACID | CLEAN_TYPE_LIGHT_DECAL)
#define CLEAN_SCRUB (CLEAN_WASH | CLEAN_TYPE_FINGERPRINTS | CLEAN_TYPE_FIBERS | CLEAN_TYPE_HARD_DECAL | CLEAN_TYPE_LIQUIDS) // Skyrat edit - adds CLEAN_TYPE_LIQUIDS
+=======
+// Different cleaning methods.
+// Use these when calling the wash proc for your cleaning apparatus
+#define CLEAN_WASH (CLEAN_TYPE_BLOOD | CLEAN_TYPE_DISEASE | CLEAN_TYPE_ACID | CLEAN_TYPE_LIGHT_DECAL)
+#define CLEAN_SCRUB (CLEAN_WASH | CLEAN_TYPE_FINGERPRINTS | CLEAN_TYPE_FIBERS | CLEAN_TYPE_HARD_DECAL)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define CLEAN_RAD CLEAN_TYPE_RADIATION
#define CLEAN_ALL ALL
diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm
index 4c7a9c16962..bed569911bb 100644
--- a/code/__DEFINES/combat.dm
+++ b/code/__DEFINES/combat.dm
@@ -13,14 +13,22 @@
#define OXY "oxygen"
/// Exhaustion and nonlethal damage.
#define STAMINA "stamina"
+<<<<<<< HEAD
/// Brain damage. Should probably be decomissioned and replaced with proper organ damage.
+=======
+/// Brain damage. Should probably be decommissioned and replaced with proper organ damage.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define BRAIN "brain"
//Damage flag defines //
/// Involves corrosive substances.
#define ACID "acid"
+<<<<<<< HEAD
/// Involved in checking wheter a disease can infect or spread. Also involved in xeno neurotoxin.
+=======
+/// Involved in checking whether a disease can infect or spread. Also involved in xeno neurotoxin.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define BIO "bio"
/// Involves a shockwave, usually from an explosion.
#define BOMB "bomb"
@@ -36,7 +44,11 @@
#define LASER "laser"
/// Involves a melee attack or a thrown object.
#define MELEE "melee"
+<<<<<<< HEAD
/// Involved in checking the likelyhood of applying a wound to a mob.
+=======
+/// Involved in checking the likelihood of applying a wound to a mob.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define WOUND "wound"
#define ARMOR_ALL "all_damage_types"
diff --git a/code/__DEFINES/communications.dm b/code/__DEFINES/communications.dm
index 813179974f9..1b4dd8931aa 100644
--- a/code/__DEFINES/communications.dm
+++ b/code/__DEFINES/communications.dm
@@ -4,8 +4,11 @@
/// The extended time an admin has to cancel a cross-sector message if they pass the filter, for instance
#define EXTENDED_CROSS_SECTOR_CANCEL_TIME (30 SECONDS)
+<<<<<<< HEAD
// SKYRAT EDIT REMOVAL BEGIN - modularized into code/__DEFINES/~skyrat_defines/security_alerts.dm
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Security levels affect the escape shuttle timer
/// Security level is green. (no threats)
#define SEC_LEVEL_GREEN 0
@@ -15,5 +18,8 @@
#define SEC_LEVEL_RED 2
/// Security level is delta. (station destruction immiment)
#define SEC_LEVEL_DELTA 3
+<<<<<<< HEAD
*/
//SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/construction/material.dm b/code/__DEFINES/construction/material.dm
index 445b4e0dc88..c8aa68874b7 100644
--- a/code/__DEFINES/construction/material.dm
+++ b/code/__DEFINES/construction/material.dm
@@ -1,4 +1,8 @@
+<<<<<<< HEAD
//Defines for amount of material retrived from sheets & other items
+=======
+//Defines for amount of material retrieved from sheets & other items
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The amount of materials you get from a sheet of mineral like iron/diamond/glass etc. 100 Units.
#define SHEET_MATERIAL_AMOUNT 100
/// The amount of materials you get from half a sheet. Used in standard object quantities. 50 units.
diff --git a/code/__DEFINES/construction/rcd.dm b/code/__DEFINES/construction/rcd.dm
index 95c5ab80053..05db5a1619b 100644
--- a/code/__DEFINES/construction/rcd.dm
+++ b/code/__DEFINES/construction/rcd.dm
@@ -7,7 +7,11 @@
#define RCD_WINDOWGRILLE (1 << 1)
/// Windoors & Airlocks
#define RCD_AIRLOCK (1 << 2)
+<<<<<<< HEAD
/// Literarly anything that is spawned on top of a turf such as tables, machines etc
+=======
+ /// Literally anything that is spawned on top of a turf such as tables, machines etc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define RCD_STRUCTURE (1 << 3)
/// For wallmounts like air alarms, fire alarms & apc
#define RCD_WALLFRAME (1 << 4)
diff --git a/code/__DEFINES/crushing.dm b/code/__DEFINES/crushing.dm
index 1261b98e730..c8dc788155b 100644
--- a/code/__DEFINES/crushing.dm
+++ b/code/__DEFINES/crushing.dm
@@ -8,7 +8,11 @@
#define SUCCESSFULLY_FELL_OVER (1<<2)
#define CRUSH_CRIT_SHATTER_LEGS "crush_crit_shatter_legs"
+<<<<<<< HEAD
#define CRUSH_CRIT_PARAPALEGIC "crush_crit_parapalegic"
+=======
+#define CRUSH_CRIT_PARAPLEGIC "crush_crit_paraplegic"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define CRUSH_CRIT_SQUISH_LIMB "crush_crit_pin"
#define CRUSH_CRIT_HEADGIB "crush_crit_headgib"
#define VENDOR_CRUSH_CRIT_PIN "vendor_crush_crit_pin"
diff --git a/code/__DEFINES/database.dm b/code/__DEFINES/database.dm
index 3d20b3b9a3c..80919b5d049 100644
--- a/code/__DEFINES/database.dm
+++ b/code/__DEFINES/database.dm
@@ -4,3 +4,9 @@
#define DB_QUERY_FINISHED 1
/// When there was a problem with the execution of a query.
#define DB_QUERY_BROKEN 2
+<<<<<<< HEAD
+=======
+
+///The probability of non-maploaded photos and papers being saved as bottle messages at the end of the round.
+#define MESSAGE_BOTTLE_CHANCE 0.2
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/dcs/signals/signals_action.dm b/code/__DEFINES/dcs/signals/signals_action.dm
index 2226e34bccc..0d0185286e3 100644
--- a/code/__DEFINES/dcs/signals/signals_action.dm
+++ b/code/__DEFINES/dcs/signals/signals_action.dm
@@ -2,7 +2,11 @@
///from base of datum/action/proc/Trigger(): (datum/action)
#define COMSIG_ACTION_TRIGGER "action_trigger"
+<<<<<<< HEAD
// Return to block the trigger from occuring
+=======
+ // Return to block the trigger from occurring
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMPONENT_ACTION_BLOCK_TRIGGER (1<<0)
/// From /datum/action/Grant(): (mob/grant_to)
#define COMSIG_ACTION_GRANTED "action_grant"
diff --git a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_movable.dm b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_movable.dm
index d75d8bacec7..ce7e58f1d11 100644
--- a/code/__DEFINES/dcs/signals/signals_atom/signals_atom_movable.dm
+++ b/code/__DEFINES/dcs/signals/signals_atom/signals_atom_movable.dm
@@ -74,7 +74,11 @@
#define COMSIG_MOVABLE_DISPOSING "movable_disposing"
// called when movable is expelled from a disposal pipe, bin or outlet on obj/pipe_eject: (direction)
#define COMSIG_MOVABLE_PIPE_EJECTING "movable_pipe_ejecting"
+<<<<<<< HEAD
///called when the movable sucessfully has its anchored var changed, from base atom/movable/set_anchored(): (value)
+=======
+///called when the movable successfully has its anchored var changed, from base atom/movable/set_anchored(): (value)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_MOVABLE_SET_ANCHORED "movable_set_anchored"
///from base of atom/movable/setGrabState(): (newstate)
#define COMSIG_MOVABLE_SET_GRAB_STATE "living_set_grab_state"
@@ -119,6 +123,15 @@
/// From base of area/Exited(): (area/left, direction)
#define COMSIG_MOVABLE_EXITED_AREA "movable_exited_area"
+<<<<<<< HEAD
+=======
+///from base of /datum/component/splat/splat: (hit_atom)
+#define COMSIG_MOVABLE_SPLAT "movable_splat"
+
+///from base of /atom/movable/point_at: (atom/A, obj/effect/temp_visual/point/point)
+#define COMSIG_MOVABLE_POINTED "movable_pointed"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Sent to movables when they are being stolen by a spy: (mob/living/spy, datum/spy_bounty/bounty)
#define COMSIG_MOVABLE_SPY_STEALING "movable_spy_stealing"
/// Called when something is pushed by a living mob bumping it: (mob/living/pusher, push force)
diff --git a/code/__DEFINES/dcs/signals/signals_bitrunning.dm b/code/__DEFINES/dcs/signals/signals_bitrunning.dm
index 23461a90a11..f6e2f66278f 100644
--- a/code/__DEFINES/dcs/signals/signals_bitrunning.dm
+++ b/code/__DEFINES/dcs/signals/signals_bitrunning.dm
@@ -53,3 +53,9 @@
/// from /obj/effect/mob_spawn/ghost_role/human/virtual_domain/proc/artificial_spawn() : (mob/living/runner)
#define COMSIG_BITRUNNER_SPAWNED "bitrunner_spawned"
+<<<<<<< HEAD
+=======
+
+/// from /obj/effect/landmark/bitrunning/mob_segment/proc/spawn_mobs() : (list/mob/living)
+#define COMSIG_BITRUNNING_MOB_SEGMENT_SPAWNED "bitrunner_mob_segment_spawned"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/dcs/signals/signals_fish.dm b/code/__DEFINES/dcs/signals/signals_fish.dm
index 2fbf99446ab..01c950b1b8e 100644
--- a/code/__DEFINES/dcs/signals/signals_fish.dm
+++ b/code/__DEFINES/dcs/signals/signals_fish.dm
@@ -17,6 +17,15 @@
#define COMSIG_FISH_EATEN_BY_OTHER_FISH "fish_eaten_by_other_fish"
///From /obj/item/fish/feed: (fed_reagents, fed_reagent_type)
#define COMSIG_FISH_FED "fish_on_fed"
+<<<<<<< HEAD
+=======
+///from /obj/item/fish/pet_fish
+#define COMSIG_FISH_PETTED "fish_petted"
+///From /obj/item/fish/update_size_and_weight: (new_size, new_weight)
+#define COMSIG_FISH_UPDATE_SIZE_AND_WEIGHT "fish_update_size_and_weight"
+///From /obj/item/fish/update_fish_force: (weight_rank, bonus_malus)
+#define COMSIG_FISH_FORCE_UPDATED "fish_force_updated"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Fishing challenge completed
#define COMSIG_FISHING_CHALLENGE_COMPLETED "fishing_completed"
diff --git a/code/__DEFINES/dcs/signals/signals_food.dm b/code/__DEFINES/dcs/signals/signals_food.dm
index 36a8b7b3392..2a91706619b 100644
--- a/code/__DEFINES/dcs/signals/signals_food.dm
+++ b/code/__DEFINES/dcs/signals/signals_food.dm
@@ -16,6 +16,12 @@
/// called when an edible ingredient is added: (datum/component/edible/ingredient)
#define COMSIG_FOOD_INGREDIENT_ADDED "edible_ingredient_added"
+<<<<<<< HEAD
+=======
+/// from base of /datum/component/edible/get_recipe_complexity(): (list/extra_complexity)
+#define COMSIG_FOOD_GET_EXTRA_COMPLEXITY "food_get_extra_complexity"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Deep frying foods
/// An item becomes fried - From /datum/element/fried_item/Attach: (fry_time)
#define COMSIG_ITEM_FRIED "item_fried"
@@ -31,6 +37,11 @@
#define COMPONENT_MICROWAVE_BAD_RECIPE (1<<1)
///called on item when created through microwaving (): (obj/machinery/microwave/M, cooking_efficiency)
#define COMSIG_ITEM_MICROWAVE_COOKED "microwave_cooked"
+<<<<<<< HEAD
+=======
+///called on the ingredient through microwawing: (result)
+#define COMSIG_ITEM_MICROWAVE_COOKED_FROM "item_microwave_cooked_from"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Grilling foods (griddle, grill, and bonfire)
///Called when an object is placed onto a griddle
@@ -46,6 +57,12 @@
///Called when an object is turned into another item through grilling ontop of a griddle
#define COMSIG_ITEM_GRILLED "item_grill_completed"
+<<<<<<< HEAD
+=======
+///Called when the object is grilled by the grill (not to be confused by the griddle, but oh gee the two should be merged in one)
+#define COMSIG_ITEM_BARBEQUE_GRILLED "item_barbeque_grilled"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Baking foods (oven)
//Called when an object is inserted into an oven (atom/oven, mob/baker)
#define COMSIG_ITEM_OVEN_PLACED_IN "item_placed_in_oven"
diff --git a/code/__DEFINES/dcs/signals/signals_global.dm b/code/__DEFINES/dcs/signals/signals_global.dm
index 5e9011f5f40..78ff266f668 100644
--- a/code/__DEFINES/dcs/signals/signals_global.dm
+++ b/code/__DEFINES/dcs/signals/signals_global.dm
@@ -57,7 +57,11 @@
#define COMSIG_GLOB_NEW_MACHINE "!new_machine"
/// a client (re)connected, after all /client/New() checks have passed : (client/connected_client)
#define COMSIG_GLOB_CLIENT_CONNECT "!client_connect"
+<<<<<<< HEAD
/// a weather event of some kind occured
+=======
+/// a weather event of some kind occurred
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_WEATHER_TELEGRAPH(event_type) "!weather_telegraph [event_type]"
#define COMSIG_WEATHER_START(event_type) "!weather_start [event_type]"
#define COMSIG_WEATHER_WINDDOWN(event_type) "!weather_winddown [event_type]"
diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_ai.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_ai.dm
index 026247acf57..fafff26749e 100644
--- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_ai.dm
+++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_ai.dm
@@ -9,3 +9,8 @@
///Signal sent when a bot is reset
#define COMSIG_BOT_RESET "bot_reset"
+<<<<<<< HEAD
+=======
+///Sent off /mob/living/basic/bot/proc/set_mode_flags() : (new_flags)
+#define COMSIG_BOT_MODE_FLAGS_SET "bot_mode_flags_set"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm
index 2a936bbbbd9..a2105699baa 100644
--- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm
+++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_carbon.dm
@@ -3,6 +3,7 @@
/// Stops the rest of the help
#define COMPONENT_BLOCK_HELP_ACT (1<<0)
+<<<<<<< HEAD
///Called from /mob/living/carbon/help_shake_act, before any hugs have ocurred. (mob/living/helper)
#define COMSIG_CARBON_PRE_MISC_HELP "carbon_pre_misc_help"
/// Stops the rest of help act (hugging, etc) from occuring
@@ -11,6 +12,16 @@
///Called from /mob/living/carbon/help_shake_act on the person being helped, after any hugs have ocurred. (mob/living/helper)
#define COMSIG_CARBON_HELP_ACT "carbon_help"
///Called from /mob/living/carbon/help_shake_act on the helper, after any hugs have ocurred. (mob/living/helped)
+=======
+///Called from /mob/living/carbon/help_shake_act, before any hugs have occurred. (mob/living/helper)
+#define COMSIG_CARBON_PRE_MISC_HELP "carbon_pre_misc_help"
+ /// Stops the rest of help act (hugging, etc) from occurring
+ #define COMPONENT_BLOCK_MISC_HELP (1<<0)
+
+///Called from /mob/living/carbon/help_shake_act on the person being helped, after any hugs have occurred. (mob/living/helper)
+#define COMSIG_CARBON_HELP_ACT "carbon_help"
+///Called from /mob/living/carbon/help_shake_act on the helper, after any hugs have occurred. (mob/living/helped)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_CARBON_HELPED "carbon_helped_someone"
///When a carbon slips. Called on /turf/open/handle_slip()
@@ -95,11 +106,19 @@
#define COMPONENT_OVERRIDE_HEALTH_HUD (1<<0)
///Called when a carbon updates their sanity (source = carbon)
#define COMSIG_CARBON_SANITY_UPDATE "carbon_sanity_update"
+<<<<<<< HEAD
///Called when a carbon attempts to breath, before the breath has actually occured
#define COMSIG_CARBON_ATTEMPT_BREATHE "carbon_attempt_breathe"
// Prevents the breath
#define COMSIG_CARBON_BLOCK_BREATH (1 << 0)
///Called when a carbon breathes, before the breath has actually occured
+=======
+///Called when a carbon attempts to breath, before the breath has actually occurred
+#define COMSIG_CARBON_ATTEMPT_BREATHE "carbon_attempt_breathe"
+ // Prevents the breath
+ #define COMSIG_CARBON_BLOCK_BREATH (1 << 0)
+///Called when a carbon breathes, before the breath has actually occurred
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_CARBON_PRE_BREATHE "carbon_pre_breathe"
///Called when a carbon updates their mood
#define COMSIG_CARBON_MOOD_UPDATE "carbon_mood_update"
@@ -133,9 +152,15 @@
#define VISIBLE_NAME_FACE 1
//Index for the name of the id
#define VISIBLE_NAME_ID 2
+<<<<<<< HEAD
//Index for whether their name is being overriden instead of obsfuscated
#define VISIBLE_NAME_FORCED 3
///from /mob/living/carbon/human/get_id_name; only returns if the mob has TRAIT_UNKNOWN and it's being overriden: (identity)
+=======
+ //Index for whether their name is being overridden instead of obfuscated
+ #define VISIBLE_NAME_FORCED 3
+///from /mob/living/carbon/human/get_id_name; only returns if the mob has TRAIT_UNKNOWN and it's being overridden: (identity)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_HUMAN_GET_FORCED_NAME "human_get_forced_name"
// Mob transformation signals
@@ -159,10 +184,17 @@
#define HANDLE_BLOOD_HANDLED (1<<0)
/// Return to skip default nutrition -> blood conversion
#define HANDLE_BLOOD_NO_NUTRITION_DRAIN (1<<1)
+<<<<<<< HEAD
/// Return to skip oxyloss and similar effecst from blood level
#define HANDLE_BLOOD_NO_OXYLOSS (1<<2)
/// from /datum/status_effect/limp/proc/check_step(mob/whocares, OldLoc, Dir, forced) iodk where it shuld go
+=======
+ /// Return to skip oxyloss and similar effects from blood level
+ #define HANDLE_BLOOD_NO_OXYLOSS (1<<2)
+
+/// from /datum/status_effect/limp/proc/check_step(mob/whocares, OldLoc, Dir, forced) iodk where it should go
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_CARBON_LIMPING "mob_limp_check"
#define COMPONENT_CANCEL_LIMP (1<<0)
diff --git a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm
index 4f625ee7b74..d547e532196 100644
--- a/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm
+++ b/code/__DEFINES/dcs/signals/signals_mob/signals_mob_main.dm
@@ -50,7 +50,11 @@
#define COMSIG_MOB_CLIENT_BLOCK_PRE_MOVE COMPONENT_MOVABLE_BLOCK_PRE_MOVE
/// The argument of move_args which corresponds to the loc we're moving to
#define MOVE_ARG_NEW_LOC 1
+<<<<<<< HEAD
/// The arugment of move_args which dictates our movement direction
+=======
+ /// The argument of move_args which dictates our movement direction
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define MOVE_ARG_DIRECTION 2
/// From base of /client/Move(): (direction, old_dir)
#define COMSIG_MOB_CLIENT_MOVED "mob_client_moved"
@@ -72,7 +76,11 @@
#define COMSIG_MOB_MIND_TRANSFERRED_INTO "mob_mind_transferred_into"
///from mind/transfer_from. Sent to the mob the mind is being transferred out of.
#define COMSIG_MOB_MIND_TRANSFERRED_OUT_OF "mob_mind_transferred_out_of"
+<<<<<<< HEAD
/// From /mob/proc/ghostize() Called when a mob sucessfully ghosts
+=======
+/// From /mob/proc/ghostize() Called when a mob successfully ghosts
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMSIG_MOB_GHOSTIZED "mob_ghostized"
///from base of obj/allowed(mob/M): (/obj) returns ACCESS_ALLOWED if mob has id access to the obj
@@ -151,8 +159,11 @@
/// from base of mob/swap_hand(): ()
/// Performed after the hands are swapped.
#define COMSIG_MOB_SWAP_HANDS "mob_swap_hands"
+<<<<<<< HEAD
///from base of /mob/verb/pointed: (atom/A)
#define COMSIG_MOB_POINTED "mob_pointed"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Mob is trying to open the wires of a target [/atom], from /datum/wires/interactable(): (atom/target)
#define COMSIG_TRY_WIRES_INTERACT "try_wires_interact"
#define COMPONENT_CANT_INTERACT_WIRES (1<<0)
@@ -172,8 +183,13 @@
///Called on user, from base of /datum/strippable_item/try_(un)equip() (atom/target, obj/item/equipping?)
#define COMSIG_TRY_STRIP "try_strip"
#define COMPONENT_CANT_STRIP (1<<0)
+<<<<<<< HEAD
///From /datum/component/creamed/Initialize()
#define COMSIG_MOB_CREAMED "mob_creamed"
+=======
+///From /datum/component/face_decal/splat/Initialize()
+#define COMSIG_MOB_HIT_BY_SPLAT "hit_by_splat"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///From /obj/item/gun/proc/check_botched()
#define COMSIG_MOB_CLUMSY_SHOOT_FOOT "mob_clumsy_shoot_foot"
///from /obj/item/hand_item/slapper/attack_atom(): (source=obj/structure/table/slammed_table, mob/living/slammer)
@@ -249,3 +265,9 @@
/// from /mob/proc/key_down(): (key, client/client, full_key)
#define COMSIG_MOB_KEYDOWN "mob_key_down"
+<<<<<<< HEAD
+=======
+
+/// from /mob/update_incapacitated(): (old_incap, new_incap)
+#define COMSIG_MOB_INCAPACITATE_CHANGED "mob_incapacitated"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/dcs/signals/signals_object.dm b/code/__DEFINES/dcs/signals/signals_object.dm
index 72828cc8916..ca6dd17aa12 100644
--- a/code/__DEFINES/dcs/signals/signals_object.dm
+++ b/code/__DEFINES/dcs/signals/signals_object.dm
@@ -153,12 +153,20 @@
/// Sebt from obj/item/ui_action_click(): (mob/user, datum/action)
#define COMSIG_ITEM_UI_ACTION_CLICK "item_action_click"
+<<<<<<< HEAD
/// Return to prevent the default behavior (attack_selfing) from ocurring.
+=======
+ /// Return to prevent the default behavior (attack_selfing) from occurring.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMPONENT_ACTION_HANDLED (1<<0)
/// Sent from obj/item/item_action_slot_check(): (mob/user, datum/action, slot)
#define COMSIG_ITEM_UI_ACTION_SLOT_CHECKED "item_action_slot_checked"
+<<<<<<< HEAD
/// Return to prevent the default behavior (attack_selfing) from ocurring.
+=======
+ /// Return to prevent the default behavior (attack_selfing) from occurring.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMPONENT_ITEM_ACTION_SLOT_INVALID (1<<0)
///from base of mob/living/carbon/attacked_by(): (mob/living/carbon/target, mob/living/user, hit_zone)
diff --git a/code/__DEFINES/dcs/signals/signals_reagent.dm b/code/__DEFINES/dcs/signals/signals_reagent.dm
index 5bb2c89d4ef..50135da59b7 100644
--- a/code/__DEFINES/dcs/signals/signals_reagent.dm
+++ b/code/__DEFINES/dcs/signals/signals_reagent.dm
@@ -53,8 +53,11 @@
#define COMSIG_REAGENTS_EXPOSE_MOB "reagents_expose_mob"
///from base of [/turf/proc/expose_reagents]: (/turf, /list, methods, volume_modifier, show_message)
#define COMSIG_REAGENTS_EXPOSE_TURF "reagents_expose_turf"
+<<<<<<< HEAD
///from base of [/datum/component/personal_crafting/proc/del_reqs]: ()
#define COMSIG_REAGENTS_CRAFTING_PING "reagents_crafting_ping"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// sent when reagents are transfered from a cup, to something refillable (atom/transfer_to)
#define COMSIG_REAGENTS_CUP_TRANSFER_TO "reagents_cup_transfer_to"
/// sent when reagents are transfered from some reagent container, to a cup (atom/transfer_from)
diff --git a/code/__DEFINES/dcs/signals/signals_spell.dm b/code/__DEFINES/dcs/signals/signals_spell.dm
index d9ef98527e2..31f8bb4fd95 100644
--- a/code/__DEFINES/dcs/signals/signals_spell.dm
+++ b/code/__DEFINES/dcs/signals/signals_spell.dm
@@ -113,7 +113,11 @@
// Charge
/// Sent from /datum/action/cooldown/spell/charge/cast(), to the item in hand being charged: (datum/action/cooldown/spell/spell, mob/user)
#define COMSIG_ITEM_MAGICALLY_CHARGED "item_magic_charged"
+<<<<<<< HEAD
/// Return if an item was successfuly recharged
+=======
+ /// Return if an item was successful recharged
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define COMPONENT_ITEM_CHARGED (1 << 0)
/// Return if the item had a negative side effect occur while recharging
#define COMPONENT_ITEM_BURNT_OUT (1 << 1)
diff --git a/code/__DEFINES/dcs/signals/signals_tools.dm b/code/__DEFINES/dcs/signals/signals_tools.dm
index 562aa29d595..3fe59826d0d 100644
--- a/code/__DEFINES/dcs/signals/signals_tools.dm
+++ b/code/__DEFINES/dcs/signals/signals_tools.dm
@@ -1,6 +1,10 @@
// Notifies tools that something is happening.
+<<<<<<< HEAD
// Sucessful actions against an atom.
+=======
+// Successful actions against an atom.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Called from /atom/proc/tool_act (atom)
#define COMSIG_TOOL_ATOM_ACTED_PRIMARY(tooltype) "tool_atom_acted_[tooltype]"
///Called from /atom/proc/tool_act (atom)
diff --git a/code/__DEFINES/events.dm b/code/__DEFINES/events.dm
index 2b1755b22c4..cd71ca713ab 100644
--- a/code/__DEFINES/events.dm
+++ b/code/__DEFINES/events.dm
@@ -22,7 +22,11 @@
#define EVENT_CATEGORY_FRIENDLY "Friendly"
///Events that affect the body and mind
#define EVENT_CATEGORY_HEALTH "Health"
+<<<<<<< HEAD
///Events reserved for special occassions
+=======
+///Events reserved for special occasions
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define EVENT_CATEGORY_HOLIDAY "Holiday"
///Events with enemy groups with a more complex plan
#define EVENT_CATEGORY_INVASION "Invasion"
diff --git a/code/__DEFINES/external_organs.dm b/code/__DEFINES/external_organs.dm
index b47c6cff3bc..b265f8a69b7 100644
--- a/code/__DEFINES/external_organs.dm
+++ b/code/__DEFINES/external_organs.dm
@@ -11,4 +11,7 @@
/// Tail spine defines
#define SPINE_KEY_LIZARD "lizard"
+<<<<<<< HEAD
#define SPINE_KEY_VOX "vox" // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/fish.dm b/code/__DEFINES/fish.dm
index 3671ff3d8cd..aca4d5eafb0 100644
--- a/code/__DEFINES/fish.dm
+++ b/code/__DEFINES/fish.dm
@@ -1,5 +1,10 @@
/// Use in fish tables to denote miss chance.
#define FISHING_DUD "dud"
+<<<<<<< HEAD
+=======
+///Used in the the hydro tray fishing spot to define a random seed reward
+#define FISHING_RANDOM_SEED "Random seed"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Baseline fishing difficulty levels
#define FISHING_DEFAULT_DIFFICULTY 15
@@ -14,11 +19,14 @@
#define FISH_TRAIT_MINOR_DIFFICULTY_BOOST 5
+<<<<<<< HEAD
// These define how the fish will behave in the minigame
#define FISH_AI_DUMB "dumb"
#define FISH_AI_ZIPPY "zippy"
#define FISH_AI_SLOW "slow"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Slot defines for the fishing rod and its equipment
#define ROD_SLOT_BAIT "bait"
#define ROD_SLOT_LINE "line"
@@ -70,9 +78,17 @@
#define FISHING_MINIGAME_RULE_FLIP (1 << 5)
///Skip the biting phase and go straight to the minigame, avoiding the penalty for having slow reflexes.
#define FISHING_MINIGAME_AUTOREEL (1 << 6)
+<<<<<<< HEAD
///all the effects that are active and will last for a few seconds before triggering a cooldown
#define FISHING_MINIGAME_ACTIVE_EFFECTS (FISHING_MINIGAME_RULE_ANTIGRAV|FISHING_MINIGAME_RULE_FLIP)
+=======
+///The fish will fade in and out at intervals
+#define FISHING_MINIGAME_RULE_CAMO (1 << 7)
+
+///all the effects that are active and will last for a few seconds before triggering a cooldown
+#define FISHING_MINIGAME_ACTIVE_EFFECTS (FISHING_MINIGAME_RULE_ANTIGRAV|FISHING_MINIGAME_RULE_FLIP|FISHING_MINIGAME_RULE_CAMO)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The default additive value for fishing hook catch weight modifiers.
#define FISHING_DEFAULT_HOOK_BONUS_ADDITIVE 0
@@ -89,7 +105,16 @@
#define FISH_ICON_GEM "gem"
#define FISH_ICON_CRAB "crab"
#define FISH_ICON_JELLYFISH "jellyfish"
+<<<<<<< HEAD
#define FISH_ICON_BONE "bone"
+=======
+#define FISH_ICON_BOTTLE "bottle"
+#define FISH_ICON_BONE "bone"
+#define FISH_ICON_ELECTRIC "electric"
+#define FISH_ICON_WEAPON "weapon"
+#define FISH_ICON_CRITTER "critter"
+#define FISH_ICON_SEED "seed"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define AQUARIUM_ANIMATION_FISH_SWIM "fish"
#define AQUARIUM_ANIMATION_FISH_DEAD "dead"
@@ -110,8 +135,16 @@
///Fish size thresholds for w_class.
#define FISH_SIZE_TINY_MAX 30
#define FISH_SIZE_SMALL_MAX 50
+<<<<<<< HEAD
#define FISH_SIZE_NORMAL_MAX 90
#define FISH_SIZE_BULKY_MAX 130
+=======
+#define FISH_SIZE_NORMAL_MAX 80
+#define FISH_SIZE_BULKY_MAX 120
+///size threshold for requiring two-handed carry
+#define FISH_SIZE_TWO_HANDS_REQUIRED 135
+#define FISH_SIZE_HUGE_MAX 165
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///The coefficient for maximum weight/size divergence relative to the averages.
#define MAX_FISH_DEVIATION_COEFF 2.5
@@ -121,6 +154,18 @@
///The number of fillets is multiplied by the fish' size and divided by this.
#define FISH_FILLET_NUMBER_SIZE_DIVISOR 30
+<<<<<<< HEAD
+=======
+///The slowdown of the fish when carried begins at this value
+#define FISH_WEIGHT_SLOWDOWN 2100
+///The value of the slowdown equals to the weight divided by this (and then at the power of a sub-1 exponent)
+#define FISH_WEIGHT_SLOWDOWN_DIVISOR 500
+///The sub-one exponent that results in the final slowdown of the fish item
+#define FISH_WEIGHT_SLOWDOWN_EXPONENT 0.54
+///Used to calculate the force of the fish by comparing (1 + log(weight/this_define)) and the w_class of the item.
+#define FISH_WEIGHT_FORCE_DIVISOR 250
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///The breeding timeout for newly instantiated fish is multiplied by this.
#define NEW_FISH_BREEDING_TIMEOUT_MULT 2
///The last feeding timestamp of newly instantiated fish is multiplied by this: ergo, they spawn 50% hungry.
@@ -164,3 +209,22 @@
//Fish breeding stops if fish count exceeds this.
#define AQUARIUM_MAX_BREEDING_POPULATION 20
+<<<<<<< HEAD
+=======
+
+//Minigame defines
+/// The height of the minigame slider. Not in pixels, but minigame units.
+#define FISHING_MINIGAME_AREA 1000
+
+///Defines for fish properties from the collect_fish_properties proc
+#define FISH_PROPERTIES_FAV_BAIT "fav_bait"
+#define FISH_PROPERTIES_BAD_BAIT "bad_bait"
+#define FISH_PROPERTIES_TRAITS "fish_traits"
+
+///Define for favorite and disliked baits that aren't just item typepaths.
+#define FISH_BAIT_TYPE "Type"
+#define FISH_BAIT_FOODTYPE "Foodtype"
+#define FISH_BAIT_REAGENT "Reagent"
+#define FISH_BAIT_VALUE "Value"
+#define FISH_BAIT_AMOUNT "Amount"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/fonts.dm b/code/__DEFINES/fonts.dm
index b8932860fca..2df43b40953 100644
--- a/code/__DEFINES/fonts.dm
+++ b/code/__DEFINES/fonts.dm
@@ -13,7 +13,11 @@
#define SIGNATURE_FONT "Segoe Script"
/// Emoji icon set
+<<<<<<< HEAD
#define EMOJI_SET 'modular_skyrat/master_files/icons/emoji.dmi' // SKYRAT EDIT - ORIGINAL: 'icons/ui/chat/emoji.dmi'
+=======
+#define EMOJI_SET 'icons/ui/chat/emoji.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Font metrics bitfield
/// Include leading A width and trailing C width in GetWidth() or in DrawText()
diff --git a/code/__DEFINES/food.dm b/code/__DEFINES/food.dm
index 1304bd53cd3..4e249f0fb7d 100644
--- a/code/__DEFINES/food.dm
+++ b/code/__DEFINES/food.dm
@@ -19,7 +19,10 @@
#define BUGS (1<<18)
#define GORE (1<<19)
#define STONE (1<<20)
+<<<<<<< HEAD
#define BLOODY (1<<21) // SKYRAT EDIT - Hemophage Food
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DEFINE_BITFIELD(foodtypes, list(
"MEAT" = MEAT,
@@ -43,7 +46,10 @@ DEFINE_BITFIELD(foodtypes, list(
"BUGS" = BUGS,
"GORE" = GORE,
"STONE" = STONE,
+<<<<<<< HEAD
"BLOODY" = BLOODY, // SKYRAT EDIT - Hemophage Food
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/// A list of food type names, in order of their flags
@@ -69,7 +75,10 @@ DEFINE_BITFIELD(foodtypes, list(
"BUGS", \
"GORE", \
"STONE", \
+<<<<<<< HEAD
"BLOODY", /* SKYRAT EDIT - Hemophage Food */ \
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/// IC meaning (more or less) for food flags
@@ -95,7 +104,10 @@ DEFINE_BITFIELD(foodtypes, list(
"Bugs", \
"Gore", \
"Rocks", \
+<<<<<<< HEAD
"Bloody", /* SKYRAT EDIT - Hemophage Food */ \
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
#define DRINK_REVOLTING 1
@@ -105,7 +117,10 @@ DEFINE_BITFIELD(foodtypes, list(
#define DRINK_FANTASTIC 5
#define FOOD_AMAZING 6
+<<<<<<< HEAD
#define RACE_DRINK 7 // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define FOOD_QUALITY_NORMAL 1
#define FOOD_QUALITY_NICE 2
@@ -175,14 +190,25 @@ GLOBAL_LIST_INIT(food_buffs, list(
#define FOOD_IN_CONTAINER (1<<0)
/// Finger food can be eaten while walking / running around
#define FOOD_FINGER_FOOD (1<<1)
+<<<<<<< HEAD
+=======
+
+DEFINE_BITFIELD(food_flags, list(
+ "FOOD_FINGER_FOOD" = FOOD_FINGER_FOOD,
+ "FOOD_IN_CONTAINER" = FOOD_IN_CONTAINER,
+))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DEFINE_BITFIELD(food_flags, list(
"FOOD_FINGER_FOOD" = FOOD_FINGER_FOOD,
"FOOD_IN_CONTAINER" = FOOD_IN_CONTAINER,
))
+<<<<<<< HEAD
#define STOP_SERVING_BREAKFAST (35 MINUTES) // SKYRAT EDIT - ORIGINAL: 15 MINUTES
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define FOOD_MEAT_HUMAN 50
#define FOOD_MEAT_MUTANT 100
#define FOOD_MEAT_MUTANT_RARE 200
diff --git a/code/__DEFINES/icon_smoothing.dm b/code/__DEFINES/icon_smoothing.dm
index aff51851e18..24b2d1cbe9b 100644
--- a/code/__DEFINES/icon_smoothing.dm
+++ b/code/__DEFINES/icon_smoothing.dm
@@ -139,6 +139,7 @@ DEFINE_BITFIELD(smoothing_junction, list(
#define SMOOTH_GROUP_SURVIVAL_TITANIUM_WALLS S_TURF(59) ///turf/closed/wall/mineral/titanium/survival
#define SMOOTH_GROUP_TURF_OPEN_CLIFF S_TURF(60) ///turf/open/cliff
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
#define SMOOTH_GROUP_ELEVATED_PLASTEEL S_TURF(61)
#define SMOOTH_GROUP_LOWERED_PLASTEEL S_TURF(62)
@@ -148,6 +149,9 @@ DEFINE_BITFIELD(smoothing_junction, list(
#define MAX_S_TURF 63 //Always match this value with the one above it.
//SKYRAT EDIT END
+=======
+#define MAX_S_TURF 60 //Always match this value with the one above it.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define S_OBJ(num) ("-" + #num + ",")
/* /obj included */
@@ -170,11 +174,14 @@ DEFINE_BITFIELD(smoothing_junction, list(
#define SMOOTH_GROUP_BAMBOO_WALLS S_TURF(17) //![/turf/closed/wall/mineral/bamboo, /obj/structure/falsewall/bamboo]
#define SMOOTH_GROUP_PLASTINUM_WALLS S_TURF(18) //![turf/closed/indestructible/riveted/plastinum]
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
#define SMOOTH_GROUP_SHIPWALLS S_OBJ(19) ///turf/closed/wall/mineral/titanium/spaceship
#define SMOOTH_GROUP_STONE_WALLS S_OBJ(20) ///turf/closed/wall/mineral/stone, /obj/structure/falsewall/stone
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SMOOTH_GROUP_PAPERFRAME S_OBJ(21) ///obj/structure/window/paperframe, /obj/structure/mineral_door/paperframe
#define SMOOTH_GROUP_WINDOW_FULLTILE S_OBJ(22) ///turf/closed/indestructible/fakeglass, /obj/structure/window/fulltile, /obj/structure/window/reinforced/fulltile, /obj/structure/window/reinforced/tinted/fulltile, /obj/structure/window/plasma/fulltile, /obj/structure/window/reinforced/plasma/fulltile
@@ -219,12 +226,15 @@ DEFINE_BITFIELD(smoothing_junction, list(
#define SMOOTH_GROUP_SPIDER_WEB_WALL_TOUGH S_OBJ(73) // /obj/structure/spider/stickyweb/sealed/thick
#define SMOOTH_GROUP_SPIDER_WEB_WALL_MIRROR S_OBJ(74) // /obj/structure/spider/stickyweb/sealed/reflector
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
#define SMOOTH_GROUP_SHUTTERS S_OBJ(75)
#define SMOOTH_GROUP_WATER S_OBJ(76) ///obj/effect/abstract/liquid_turf
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SMOOTH_GROUP_GRAV_FIELD S_OBJ(69)
/// Performs the work to set smoothing_groups and canSmoothWith.
diff --git a/code/__DEFINES/inventory.dm b/code/__DEFINES/inventory.dm
index aadf93fad74..19336594769 100644
--- a/code/__DEFINES/inventory.dm
+++ b/code/__DEFINES/inventory.dm
@@ -63,6 +63,11 @@
#define ITEM_SLOT_HANDCUFFED (1<<18)
/// Legcuff slot (bolas, beartraps)
#define ITEM_SLOT_LEGCUFFED (1<<19)
+<<<<<<< HEAD
+=======
+/// Inside of a character's BELT.........
+#define ITEM_SLOT_BELTPACK (1<<20)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Total amount of slots
#define SLOTS_AMT 20 // Keep this up to date!
@@ -108,6 +113,7 @@ DEFINE_BITFIELD(no_equip_flags, list(
#define HIDEMUTWINGS (1<<13)
///hides belts and riggings
#define HIDEBELT (1<<14)
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION: CUSTOM EAR TOGGLE FOR ANTHRO/ETC EAR SHOWING -
/// Manually set this on items you want anthro ears to show on!
@@ -121,6 +127,8 @@ DEFINE_BITFIELD(no_equip_flags, list(
/// If this has our taur variant, do we hide our taur part?
#define HIDETAUR (1<<18)
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//bitflags for clothing coverage - also used for limbs
#define HEAD (1<<0)
@@ -154,10 +162,13 @@ DEFINE_BITFIELD(no_equip_flags, list(
#define FEMALE_UNIFORM_TOP_ONLY (1<<1)
/// For when you don't want the "breast" effect to be applied (the one that cuts two pixels in the middle of the front of the uniform when facing east or west).
#define FEMALE_UNIFORM_NO_BREASTS (1<<2)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
/// For when you -don't- want to apply FEMALE_UNIFORM_TOP_ONLY to the digi version (which happens by default).
#define FEMALE_UNIFORM_DIGI_FULL (1<<3)
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//flags for alternate styles: These are hard sprited so don't set this if you didn't put the effort in
#define NORMAL_STYLE 0
@@ -165,6 +176,7 @@ DEFINE_BITFIELD(no_equip_flags, list(
#define DIGITIGRADE_STYLE 2
//Flags (actual flags, fucker ^) for /obj/item/var/supports_variations_flags
+<<<<<<< HEAD
///No alternative sprites based on bodytype
#define CLOTHING_NO_VARIATION (1<<0)
///Has a sprite for digitigrade legs specifically.
@@ -187,6 +199,20 @@ DEFINE_BITFIELD(no_equip_flags, list(
/// The sprite works fine for vox snouts as is.
#define CLOTHING_SNOUTED_BETTER_VOX_VARIATION_NO_NEW_ICON (1<<9)
// SKYRAT EDIT ADDITION END
+=======
+/// No alternative sprites or handling based on bodytype
+#define CLOTHING_NO_VARIATION (1<<0)
+/// Has a sprite for digitigrade legs specifically.
+#define CLOTHING_DIGITIGRADE_VARIATION (1<<1)
+/// The sprite works fine for digitigrade legs as-is.
+#define CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON (1<<2)
+/// Auto-generates the leg portion of the sprite with GAGS
+/// Suggested that you set [/obj/item/var/digitigrade_greyscale_config_worn] when using this flag
+#define CLOTHING_DIGITIGRADE_MASK (1<<3)
+
+/// All variation flags which render "correctly" on a digitigrade leg setup
+#define DIGITIGRADE_VARIATIONS (CLOTHING_DIGITIGRADE_VARIATION|CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON|CLOTHING_DIGITIGRADE_MASK)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//flags for covering body parts
#define GLASSESCOVERSEYES (1<<0)
@@ -231,7 +257,10 @@ GLOBAL_LIST_INIT(detective_vest_allowed, list(
/obj/item/storage/belt/holster/nukie,
/obj/item/storage/belt/holster/energy,
/obj/item/gun/ballistic/shotgun/automatic/combat/compact,
+<<<<<<< HEAD
/obj/item/gun/microfusion, //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
GLOBAL_LIST_INIT(security_vest_allowed, list(
@@ -249,7 +278,10 @@ GLOBAL_LIST_INIT(security_vest_allowed, list(
/obj/item/storage/belt/holster/energy,
/obj/item/gun/ballistic/shotgun/automatic/combat/compact,
/obj/item/pen/red/security,
+<<<<<<< HEAD
/obj/item/gun/microfusion, //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
GLOBAL_LIST_INIT(security_wintercoat_allowed, list(
@@ -262,7 +294,10 @@ GLOBAL_LIST_INIT(security_wintercoat_allowed, list(
/obj/item/storage/belt/holster/nukie,
/obj/item/storage/belt/holster/energy,
/obj/item/gun/ballistic/shotgun/automatic/combat/compact,
+<<<<<<< HEAD
/obj/item/gun/microfusion, //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
//Allowed list for all chaplain suits (except the honkmother robe)
diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm
index be21dcf081a..52c7d2f83d1 100644
--- a/code/__DEFINES/is_helpers.dm
+++ b/code/__DEFINES/is_helpers.dm
@@ -139,6 +139,7 @@ GLOBAL_LIST_INIT(turfs_pass_meteor, typecacheof(list(
//Silicon mobs
#define issilicon(A) (istype(A, /mob/living/silicon))
+<<<<<<< HEAD
///Define on whether A has access to Silicon stuff either through being a silicon, admin ghost or is a non-silicon holding the Silicon remote.
///This can only be used for instances where you are not specifically looking for silicon, but access.
#define HAS_SILICON_ACCESS(A) (istype(A, /mob/living/silicon) || isAdminGhostAI(A) || A.has_unlimited_silicon_privilege || istype(A.get_active_held_item(), /obj/item/machine_remote))
@@ -152,6 +153,17 @@ GLOBAL_LIST_INIT(turfs_pass_meteor, typecacheof(list(
#define ispAI(A) (istype(A, /mob/living/silicon/pai))
+=======
+#define isAI(A) (istype(A, /mob/living/silicon/ai))
+#define iscyborg(A) (istype(A, /mob/living/silicon/robot))
+#define ispAI(A) (istype(A, /mob/living/silicon/pai))
+
+///This is used to see if you have Silicon access. This includes things like Admins, Drones, Bots, and Human wands.
+#define HAS_SILICON_ACCESS(possible_silicon) (HAS_TRAIT(possible_silicon, TRAIT_SILICON_ACCESS) || isAdminGhostAI(possible_silicon))
+///This is used to see if you have the access of an AI. This doesn't mean you are an AI, just have the same access as one.
+#define HAS_AI_ACCESS(possible_ai) (HAS_TRAIT(possible_ai, TRAIT_AI_ACCESS) || isAdminGhostAI(possible_ai))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// basic mobs
#define isbasicmob(A) (istype(A, /mob/living/basic))
diff --git a/code/__DEFINES/jobs.dm b/code/__DEFINES/jobs.dm
index f7700da8441..64c0351bc5d 100644
--- a/code/__DEFINES/jobs.dm
+++ b/code/__DEFINES/jobs.dm
@@ -63,30 +63,45 @@
#define JOB_SECURITY_OFFICER_ENGINEERING "Security Officer (Engineering)"
#define JOB_SECURITY_OFFICER_SCIENCE "Security Officer (Science)"
#define JOB_SECURITY_OFFICER_SUPPLY "Security Officer (Cargo)"
+<<<<<<< HEAD
#define JOB_CORRECTIONS_OFFICER "Corrections Officer" // SKYRAT EDIT ADDITION
//Engineering
#define JOB_STATION_ENGINEER "Station Engineer"
#define JOB_ATMOSPHERIC_TECHNICIAN "Atmospheric Technician"
#define JOB_ENGINEERING_GUARD "Engineering Guard" // SKYRAT EDIT ADDITION
#define JOB_TELECOMMS_SPECIALIST "Telecomms Specialist" // SKYRAT EDIT ADDITION
+=======
+//Engineering
+#define JOB_STATION_ENGINEER "Station Engineer"
+#define JOB_ATMOSPHERIC_TECHNICIAN "Atmospheric Technician"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Medical
#define JOB_CORONER "Coroner"
#define JOB_MEDICAL_DOCTOR "Medical Doctor"
#define JOB_PARAMEDIC "Paramedic"
#define JOB_CHEMIST "Chemist"
+<<<<<<< HEAD
#define JOB_ORDERLY "Orderly" // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Science
#define JOB_SCIENTIST "Scientist"
#define JOB_ROBOTICIST "Roboticist"
#define JOB_GENETICIST "Geneticist"
+<<<<<<< HEAD
#define JOB_SCIENCE_GUARD "Science Guard"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Supply
#define JOB_QUARTERMASTER "Quartermaster"
#define JOB_CARGO_TECHNICIAN "Cargo Technician"
#define JOB_CARGO_GORILLA "Cargo Gorilla"
#define JOB_SHAFT_MINER "Shaft Miner"
#define JOB_BITRUNNER "Bitrunner"
+<<<<<<< HEAD
#define JOB_CUSTOMS_AGENT "Customs Agent" // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Service
#define JOB_BARTENDER "Bartender"
#define JOB_BOTANIST "Botanist"
@@ -99,8 +114,11 @@
#define JOB_LAWYER "Lawyer"
#define JOB_CHAPLAIN "Chaplain"
#define JOB_PSYCHOLOGIST "Psychologist"
+<<<<<<< HEAD
#define JOB_BARBER "Barber" // SKYRAT EDIT ADDITION
#define JOB_BOUNCER "Bouncer" // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//ERTs
#define JOB_ERT_DEATHSQUAD "Death Commando"
#define JOB_ERT_COMMANDER "Emergency Response Team Commander"
@@ -123,6 +141,7 @@
#define JOB_CENTCOM_RESEARCH_OFFICER "Research Officer"
#define JOB_CENTCOM_SPECIAL_OFFICER "Special Ops Officer"
#define JOB_CENTCOM_PRIVATE_SECURITY "Private Security Force"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
#define JOB_BLUESHIELD "Blueshield"
#define JOB_NT_REP "Nanotrasen Consultant"
@@ -140,6 +159,8 @@
#define JOB_SOLFED "SolFed"
#define JOB_SOLFED_LIASON "SolFed Liason"
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define JOB_GROUP_ENGINEERS list( \
JOB_STATION_ENGINEER, \
@@ -186,6 +207,7 @@
#define JOB_DISPLAY_ORDER_DETECTIVE 37
#define JOB_DISPLAY_ORDER_SECURITY_OFFICER 38
#define JOB_DISPLAY_ORDER_PRISONER 39
+<<<<<<< HEAD
#define JOB_DISPLAY_ORDER_SECURITY_MEDIC 100 //SKYRAT EDIT ADDITON
#define JOB_DISPLAY_ORDER_CORRECTIONS_OFFICER 101 //SKYRAT EDIT ADDITON
#define JOB_DISPLAY_ORDER_NANOTRASEN_CONSULTANT 102 //SKYRAT EDIT ADDITON
@@ -197,6 +219,8 @@
#define JOB_DISPLAY_ORDER_CUSTOMS_AGENT 108 //SKYRAT EDIT ADDITION
#define JOB_DISPLAY_ORDER_EXP_CORPS 109 //SKYRAT EDIT ADDITON
#define JOB_DISPLAY_ORDER_TELECOMMS_SPECIALIST 51 //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define DEPARTMENT_UNASSIGNED "No Department"
@@ -220,8 +244,11 @@
#define DEPARTMENT_ASSISTANT "Assistant"
#define DEPARTMENT_BITFLAG_CAPTAIN (1<<9)
#define DEPARTMENT_CAPTAIN "Captain"
+<<<<<<< HEAD
#define DEPARTMENT_BITFLAG_CENTRAL_COMMAND (1<<10) //SKYRAT EDIT CHANGE
#define DEPARTMENT_CENTRAL_COMMAND "Central Command" //SKYRAT EDIT CHANGE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
DEFINE_BITFIELD(departments_bitflags, list(
"SECURITY" = DEPARTMENT_BITFLAG_SECURITY,
diff --git a/code/__DEFINES/lag_switch.dm b/code/__DEFINES/lag_switch.dm
index 2152d0d9a55..fdcde76a86d 100644
--- a/code/__DEFINES/lag_switch.dm
+++ b/code/__DEFINES/lag_switch.dm
@@ -16,8 +16,13 @@
#define DISABLE_PARALLAX 7
/// Disables footsteps, TRAIT_BYPASS_MEASURES exempted
#define DISABLE_FOOTSTEPS 8
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
/// Stops people from changing things in the character creator. Entirely.
#define DISABLE_CREATOR 9
// SKYRAT EDIT END
#define MEASURES_AMOUNT 9 // The total number of switches defined above // SKYRAT EDIT ADDITION
+=======
+
+#define MEASURES_AMOUNT 8 // The total number of switches defined above
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index 06d5eb8408b..6ae326f6164 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -132,7 +132,10 @@
// this allows larger then bound floors to layer as we'd expect
// ANYTHING on the floor plane needs TOPDOWN_LAYER, and nothing that isn't on the floor plane can have it
+<<<<<<< HEAD
//FLOOR_PLANE layers
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// NOTICE: we break from the pattern of increasing in steps of like 0.01 here
// Because TOPDOWN_LAYER is 10000 and that's enough to floating point our modifications away
#define LOW_FLOOR_LAYER (1 + TOPDOWN_LAYER)
@@ -269,7 +272,10 @@
#define CURSE_LAYER 6
#define ECHO_LAYER 7
#define PARRY_LAYER 8
+<<<<<<< HEAD
#define CARRIER_LAYER 9 // SKYRAT EDIT - CARRIERS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define FOV_EFFECT_LAYER 100
diff --git a/code/__DEFINES/lazy_templates.dm b/code/__DEFINES/lazy_templates.dm
index bc1e99e594c..4f54c72760d 100644
--- a/code/__DEFINES/lazy_templates.dm
+++ b/code/__DEFINES/lazy_templates.dm
@@ -12,5 +12,9 @@
"Abductor Ships" = LAZY_TEMPLATE_KEY_ABDUCTOR_SHIPS, \
"Heretic Sacrifice Level" = LAZY_TEMPLATE_KEY_HERETIC_SACRIFICE, \
"Voidwalker Void" = LAZY_TEMPLATE_KEY_VOIDWALKER_VOID, \
+<<<<<<< HEAD
"Outpost of Cogs" = LAZY_TEMPLATE_KEY_OUTPOST_OF_COGS, \
) // SKYRAT EDIT ABOVE - OUTPOST OF COGS
+=======
+)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/lighting.dm b/code/__DEFINES/lighting.dm
index d6586f390c6..08f6dafc4a0 100644
--- a/code/__DEFINES/lighting.dm
+++ b/code/__DEFINES/lighting.dm
@@ -10,6 +10,16 @@
#define OVERLAY_LIGHT_BEAM 4
/// Nonesensical value for light color, used for null checks.
#define NONSENSICAL_VALUE -99999
+<<<<<<< HEAD
+=======
+
+/// Is our overlay light source attached to another movable (its loc), meaning that the lighting component should go one level deeper.
+#define LIGHT_ATTACHED (1<<0)
+/// Freezes a light in its current state, blocking any attempts at modification
+#define LIGHT_FROZEN (1<<1)
+/// Does this light ignore inherent offsets? (Pixels, transforms, etc)
+#define LIGHT_IGNORE_OFFSET (1<<2)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Is our overlay light source attached to another movable (its loc), meaning that the lighting component should go one level deeper.
#define LIGHT_ATTACHED (1<<0)
@@ -18,8 +28,11 @@
/// Does this light ignore inherent offsets? (Pixels, transforms, etc)
#define LIGHT_IGNORE_OFFSET (1<<2)
+<<<<<<< HEAD
#define MINIMUM_USEFUL_LIGHT_RANGE 1.5 // SKYRAT EDIT CHANGE - Original value 1.4
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// light UNDER the floor. primarily used for starlight, shouldn't fuck with this
#define LIGHTING_HEIGHT_SPACE -0.5
/// light ON the floor
diff --git a/code/__DEFINES/machines.dm b/code/__DEFINES/machines.dm
index a2d66b9d4fc..4b36814adf9 100644
--- a/code/__DEFINES/machines.dm
+++ b/code/__DEFINES/machines.dm
@@ -66,10 +66,13 @@
#define AWAY_IMPRINTER (1<<9)
/// For wiremod/integrated circuits. Uses various minerals.
#define COMPONENT_PRINTER (1<<10)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
/// Can be made by the orderable colony fabricator
#define COLONY_FABRICATOR (1<<11)
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define HYPERTORUS_INACTIVE 0 // No or minimal energy
#define HYPERTORUS_NOMINAL 1 // Normal operation
diff --git a/code/__DEFINES/melee.dm b/code/__DEFINES/melee.dm
index 55240946de0..c156f08c55e 100644
--- a/code/__DEFINES/melee.dm
+++ b/code/__DEFINES/melee.dm
@@ -12,4 +12,8 @@
#define MARTIALART_WRESTLING "wrestling"
/// The number of hits required to crit a target
+<<<<<<< HEAD
#define HITS_TO_CRIT(damage) round(HUMAN_MAXHEALTH / damage, 0.1) // SKYRAT EDIT - changes the magic health number of 100 to HUMAN_MAXHEALTH.
+=======
+#define HITS_TO_CRIT(damage) round(100 / damage, 0.1)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/mobfactions.dm b/code/__DEFINES/mobfactions.dm
index aea143dad25..935b6e78bae 100644
--- a/code/__DEFINES/mobfactions.dm
+++ b/code/__DEFINES/mobfactions.dm
@@ -33,13 +33,21 @@
#define FACTION_HELL "hell"
/// Hivebots
#define FACTION_HIVEBOT "hivebot"
+<<<<<<< HEAD
/// Illusionary creaturs
+=======
+/// Illusionary creatures
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define FACTION_ILLUSION "illusion"
/// Creatures of the never finished jungle planet, and gorillas
#define FACTION_JUNGLE "jungle"
/// Small lizards
#define FACTION_LIZARD "lizard"
+<<<<<<< HEAD
/// Maint creatures have mutual respect for eachother.
+=======
+/// Maint creatures have mutual respect for each other.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define FACTION_MAINT_CREATURES "maint_creatures"
/// Animated objects and statues
#define FACTION_MIMIC "mimic"
diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm
index 51bb4bf1cea..8deccd78351 100644
--- a/code/__DEFINES/mobs.dm
+++ b/code/__DEFINES/mobs.dm
@@ -15,7 +15,11 @@
//Blood levels
#define BLOOD_VOLUME_MAX_LETHAL 2150
#define BLOOD_VOLUME_EXCESS 2100
+<<<<<<< HEAD
#define BLOOD_VOLUME_MAXIMUM 1000 // SKYRAT EDIT - Blood volume balancing (mainly for Hemophages as nobody else really goes much above regular blood volume) - ORIGINAL VALUE: 2000
+=======
+#define BLOOD_VOLUME_MAXIMUM 2000
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define BLOOD_VOLUME_SLIME_SPLIT 1120
#define BLOOD_VOLUME_NORMAL 560
#define BLOOD_VOLUME_SAFE (BLOOD_VOLUME_NORMAL * (1 - 0.15)) // Latter number is percentage of blood lost, for readability!
@@ -89,6 +93,7 @@
#define BODYTYPE_GOLEM (1<<4)
//The limb is a peg limb
#define BODYTYPE_PEG (1<<5)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
///The limb fits a modular custom shape
#define BODYSHAPE_CUSTOM (1<<9)
@@ -114,6 +119,22 @@
#define BODYTYPE_BIOSCRAMBLE_INCOMPATIBLE (BODYTYPE_ROBOTIC | BODYTYPE_LARVA_PLACEHOLDER | BODYTYPE_GOLEM | BODYTYPE_PEG)
#define BODYTYPE_CAN_BE_BIOSCRAMBLED(bodytype) (!(bodytype & BODYTYPE_BIOSCRAMBLE_INCOMPATIBLE))
+=======
+
+// Bodyshape defines for how things can be worn, i.e., what "shape" the mob sprite is
+///The limb fits the human mold. This is not meant to be literal, if the sprite "fits" on a human, it is "humanoid", regardless of origin.
+#define BODYSHAPE_HUMANOID (1<<0)
+///The limb fits the monkey mold.
+#define BODYSHAPE_MONKEY (1<<1)
+///The limb is digitigrade.
+#define BODYSHAPE_DIGITIGRADE (1<<2)
+///The limb is snouted.
+#define BODYSHAPE_SNOUTED (1<<3)
+
+#define BODYTYPE_BIOSCRAMBLE_INCOMPATIBLE (BODYTYPE_ROBOTIC | BODYTYPE_LARVA_PLACEHOLDER | BODYTYPE_GOLEM | BODYTYPE_PEG)
+#define BODYTYPE_CAN_BE_BIOSCRAMBLED(bodytype) (!(bodytype & BODYTYPE_BIOSCRAMBLE_INCOMPATIBLE))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Defines for Species IDs. Used to refer to the name of a species, for things like bodypart names or species preferences.
#define SPECIES_ABDUCTOR "abductor"
#define SPECIES_ANDROID "android"
@@ -163,7 +184,14 @@
///The species is forced to have digitigrade legs in generation.
#define DIGITIGRADE_FORCED 2
+<<<<<<< HEAD
///Digitigrade's prefs, used in features for legs if you're meant to be a Digitigrade.
+=======
+// Preferences for leg types
+/// Legs that are normal
+#define NORMAL_LEGS "Normal Legs"
+/// Digitgrade legs that are like bended and uhhh no shoes
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define DIGITIGRADE_LEGS "Digitigrade Legs"
// Health/damage defines
@@ -316,7 +344,11 @@
#define BRUTE_DAMAGE_REQUIRED_TO_STOP_CRYSTALIZATION 30
+<<<<<<< HEAD
#define CRYSTALIZE_STAGE_ENGULFING 100 //Cant use second defines
+=======
+#define CRYSTALIZE_STAGE_ENGULFING 100 //Can't use second defines
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define CRYSTALIZE_STAGE_ENCROACHING 300 //In switches
#define CRYSTALIZE_STAGE_SMALL 600 //Because they're not static
@@ -438,6 +470,7 @@
#define OFFSET_SUIT "suit"
#define OFFSET_NECK "neck"
#define OFFSET_HELD "held"
+<<<<<<< HEAD
#define OFFSET_ACCESSORY "accessory" // Skyrat edit - addition
#define OFFSET_HAIR "hair" // Skyrat edit - addition - Akulas
@@ -454,6 +487,19 @@
#define POCKET_STRIP_DELAY (4 SECONDS) //time taken to search somebody's pockets
#define DOOR_CRUSH_DAMAGE 15 //the amount of damage that airlocks deal when they crush you
+=======
+
+//MINOR TWEAKS/MISC
+#define AGE_MIN 17 //youngest a character can be
+#define AGE_MAX 85 //oldest a character can be
+#define AGE_MINOR 20 //legal age of space drinking and smoking
+#define WIZARD_AGE_MIN 30 //youngest a wizard can be
+#define APPRENTICE_AGE_MIN 29 //youngest an apprentice can be
+#define SHOES_SLOWDOWN 0 //How much shoes slow you down by default. Negative values speed you up
+#define POCKET_STRIP_DELAY (4 SECONDS) //time taken to search somebody's pockets
+#define DOOR_CRUSH_DAMAGE 15 //the amount of damage that airlocks deal when they crush you
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define HUNGER_FACTOR 0.05 //factor at which mob nutrition decreases
#define ETHEREAL_DISCHARGE_RATE (8e-4 * STANDARD_CELL_CHARGE) // Rate at which ethereal stomach charge decreases
/// How much nutrition eating clothes as moth gives and drains
@@ -505,6 +551,27 @@
#define RACE_SWAP (1<<3)
//Wabbacjack staff projectiles
#define WABBAJACK (1<<4)
+<<<<<<< HEAD
+
+// These flags do NOT unlock the Lepton Violet shuttle, hardcoded in wabbajack() - use for things like xenobio, admins, etc.
+//Badmin magic mirror
+#define MIRROR_BADMIN (1<<5)
+//ERT spawn template (avoid races that don't function without correct gear)
+#define ERT_SPAWN (1<<6)
+//xenobio black crossbreed
+#define SLIME_EXTRACT (1<<7)
+
+// Randomization keys for calling wabbajack with.
+// Note the contents of these keys are important, as they're displayed to the player
+// Ex: (You turn into a "monkey", You turn into a "xenomorph")
+#define WABBAJACK_MONKEY "monkey"
+#define WABBAJACK_ROBOT "robot"
+#define WABBAJACK_SLIME "slime"
+#define WABBAJACK_XENO "xenomorph"
+#define WABBAJACK_HUMAN "humanoid"
+#define WABBAJACK_ANIMAL "animal"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// These flags do NOT unlock the Lepton Violet shuttle, hardcoded in wabbajack() - use for things like xenobio, admins, etc.
//Badmin magic mirror
@@ -524,7 +591,7 @@
#define WABBAJACK_HUMAN "humanoid"
#define WABBAJACK_ANIMAL "animal"
-// Reasons a defibrilation might fail
+// Reasons a defibrillation might fail
#define DEFIB_POSSIBLE (1<<0)
#define DEFIB_FAIL_SUICIDE (1<<1)
#define DEFIB_FAIL_HUSK (1<<2)
@@ -689,6 +756,7 @@ GLOBAL_LIST_INIT(human_heights_to_offsets, list(
/// Total number of layers for mob overlays
/// KEEP THIS UP-TO-DATE OR SHIT WILL BREAK
/// Also consider updating layers_to_offset
+<<<<<<< HEAD
#define TOTAL_LAYERS 41 // SKYRAT EDIT CHANGE - ORIGINAL: 35
/// Mutations layer - Tk headglows, cold resistance glow, etc
#define MUTATIONS_LAYER 41 // SKYRAT EDIT CHANGE - ORIGINAL: 35
@@ -719,6 +787,27 @@ GLOBAL_LIST_INIT(human_heights_to_offsets, list(
#define NIPPLES_LAYER 28
#define BANDAGE_LAYER 27
//SKYRAT EDIT ADDITION END
+=======
+#define TOTAL_LAYERS 35
+/// Mutations layer - Tk headglows, cold resistance glow, etc
+#define MUTATIONS_LAYER 35
+/// Mutantrace features (tail when looking south) that must appear behind the body parts
+#define BODY_BEHIND_LAYER 34
+/// Layer for bodyparts that should appear behind every other bodypart - Mostly, legs when facing WEST or EAST
+#define BODYPARTS_LOW_LAYER 33
+/// Layer for most bodyparts, appears above BODYPARTS_LOW_LAYER and below BODYPARTS_HIGH_LAYER
+#define BODYPARTS_LAYER 32
+/// Mutantrace features (snout, body markings) that must appear above the body parts
+#define BODY_ADJ_LAYER 31
+/// Underwear, undershirts, socks, eyes, lips(makeup)
+#define BODY_LAYER 30
+/// Mutations that should appear above body, body_adj and bodyparts layer (e.g. laser eyes)
+#define FRONT_MUTATIONS_LAYER 29
+/// Damage indicators (cuts and burns)
+#define DAMAGE_LAYER 28
+/// Jumpsuit clothing layer
+#define UNIFORM_LAYER 27
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// ID card layer
#define ID_LAYER 26
/// ID card layer (might be deprecated)
@@ -740,7 +829,11 @@ GLOBAL_LIST_INIT(human_heights_to_offsets, list(
/// Glasses layer
#define GLASSES_LAYER 17
/// Belt layer
+<<<<<<< HEAD
#define BELT_LAYER 16 //Possible make this an overlay of somethign required to wear a belt?
+=======
+#define BELT_LAYER 16 //Possible make this an overlay of something required to wear a belt?
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Suit storage layer (tucking a gun or baton underneath your armor)
#define SUIT_STORE_LAYER 15
/// Neck layer (for wearing capes and bedsheets)
@@ -819,6 +912,7 @@ GLOBAL_LIST_INIT(layers_to_offset, list(
// WOUND_LAYER (full body)
))
+<<<<<<< HEAD
//Bitflags for the layers an external organ can draw on (organs can be drawn on multiple layers)
/// Draws organ on the BODY_FRONT_LAYER
#define EXTERNAL_FRONT (1 << 1)
@@ -834,6 +928,15 @@ GLOBAL_LIST_INIT(layers_to_offset, list(
/// Draws organ on the HEAD_LAYER, for things that need to be above hair but below hats.
#define EXTERNAL_FRONT_ABOVE_HAIR (1 << 6)
// SKYRAT EDIT END (not touching what comes next because we don't actually have to (nor want to))
+=======
+//Bitflags for the layers a bodypart overlay can draw on (can be drawn on multiple layers)
+/// Draws overlay on the BODY_FRONT_LAYER
+#define EXTERNAL_FRONT (1 << 0)
+/// Draws overlay on the BODY_ADJ_LAYER
+#define EXTERNAL_ADJACENT (1 << 1)
+/// Draws overlay on the BODY_BEHIND_LAYER
+#define EXTERNAL_BEHIND (1 << 2)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Draws organ on all EXTERNAL layers
#define ALL_EXTERNAL_OVERLAYS EXTERNAL_FRONT | EXTERNAL_ADJACENT | EXTERNAL_BEHIND
@@ -879,7 +982,11 @@ GLOBAL_LIST_INIT(layers_to_offset, list(
#define NEED_VENTCRAWL (1<<8)
/// Skips adjacency checks
#define BYPASS_ADJACENCY (1<<9)
+<<<<<<< HEAD
/// Skips reccursive loc checks
+=======
+/// Skips recursive loc checks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define NOT_INSIDE_TARGET (1<<10)
/// Checks for base adjacency, but silences the error
#define SILENT_ADJACENCY (1<<11)
@@ -1011,6 +1118,11 @@ GLOBAL_LIST_INIT(layers_to_offset, list(
/// The duration of the flip emote animation
#define FLIP_EMOTE_DURATION 0.7 SECONDS
+<<<<<<< HEAD
+=======
+///The duration of a taunt emote, so how long they can deflect projectiles
+#define TAUNT_EMOTE_DURATION 0.9 SECONDS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Sprites for photocopying butts
#define BUTT_SPRITE_HUMAN_MALE "human_male"
diff --git a/code/__DEFINES/pai.dm b/code/__DEFINES/pai.dm
index 356cbc28843..8d642b95676 100644
--- a/code/__DEFINES/pai.dm
+++ b/code/__DEFINES/pai.dm
@@ -12,7 +12,11 @@
#define PAI_SPAM_TIME (40 SECONDS)
/// Maximum distance you can set the holoform leash
+<<<<<<< HEAD
#define HOLOFORM_MAX_RANGE 25 // SKYRAT EDIT CHANGE - ORIGINAL: #define HOLOFORM_MAX_RANGE 9
+=======
+#define HOLOFORM_MAX_RANGE 9
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Minimum distance you can set the holoform leash
#define HOLOFORM_MIN_RANGE 3
/// Default holoform leash distance
diff --git a/code/__DEFINES/paper.dm b/code/__DEFINES/paper.dm
index 0d70a2f3ca4..68485721601 100644
--- a/code/__DEFINES/paper.dm
+++ b/code/__DEFINES/paper.dm
@@ -18,3 +18,32 @@
#define BARCODE_SCANNER_INVENTORY "inventory"
#define IS_WRITING_UTENSIL(thing) (thing?.get_writing_implement_details()?["interaction_mode"] == MODE_WRITING)
+<<<<<<< HEAD
+=======
+
+/**
+ * key defines used when converting a paper to and fro' a data/json list. It's really important that they stay the same
+ * lest we break persistence.
+ */
+#define LIST_PAPER_COLOR "paper_color"
+#define LIST_PAPER_NAME "paper_name"
+
+#define LIST_PAPER_RAW_TEXT_INPUT "raw_text_input"
+#define LIST_PAPER_RAW_FIELD_INPUT "raw_field_input"
+#define LIST_PAPER_RAW_STAMP_INPUT "raw_stamp_input"
+
+#define LIST_PAPER_RAW_TEXT "raw_text"
+#define LIST_PAPER_FONT "font"
+#define LIST_PAPER_FIELD_COLOR "color"
+#define LIST_PAPER_BOLD "bold"
+#define LIST_PAPER_ADVANCED_HTML "advanced_html"
+
+#define LIST_PAPER_FIELD_INDEX "field_index"
+#define LIST_PAPER_FIELD_DATA "field_data"
+#define LIST_PAPER_IS_SIGNATURE "is_signature"
+
+#define LIST_PAPER_CLASS "class"
+#define LIST_PAPER_STAMP_X "x"
+#define LIST_PAPER_STAMP_Y "y"
+#define LIST_PAPER_ROTATION "rotation"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/preferences.dm b/code/__DEFINES/preferences.dm
index c85b2519869..02cb99106c5 100644
--- a/code/__DEFINES/preferences.dm
+++ b/code/__DEFINES/preferences.dm
@@ -60,7 +60,10 @@
// Playtime tracking system, see jobs_exp.dm
#define EXP_TYPE_LIVING "Living"
#define EXP_TYPE_CREW "Crew"
+<<<<<<< HEAD
#define EXP_TYPE_CENTRAL_COMMAND "Central Command" // SKYRAT EDIT ADD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define EXP_TYPE_COMMAND "Command"
#define EXP_TYPE_ENGINEERING "Engineering"
#define EXP_TYPE_MEDICAL "Medical"
diff --git a/code/__DEFINES/radio.dm b/code/__DEFINES/radio.dm
index 686c42e07d0..13221b53910 100644
--- a/code/__DEFINES/radio.dm
+++ b/code/__DEFINES/radio.dm
@@ -37,6 +37,10 @@
#define RADIO_KEY_AI_PRIVATE "o"
#define RADIO_TOKEN_AI_PRIVATE ":o"
+#define RADIO_CHANNEL_ENTERTAINMENT "Entertainment"
+#define RADIO_KEY_ENTERTAINMENT "p"
+#define RADIO_TOKEN_ENTERTAINMENT ":p"
+
#define RADIO_CHANNEL_SYNDICATE "Syndicate"
#define RADIO_KEY_SYNDICATE "t"
@@ -73,6 +77,10 @@
#define FREQ_MEDICAL 1355 // Medical comms frequency, soft blue
#define FREQ_ENGINEERING 1357 // Engineering comms frequency, orange
#define FREQ_SECURITY 1359 // Security comms frequency, red
+<<<<<<< HEAD
+=======
+#define FREQ_ENTERTAINMENT 1415 // Used by entertainment monitors, cyan
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define FREQ_HOLOGRID_SOLUTION 1433
#define FREQ_STATUS_DISPLAYS 1435
@@ -130,3 +138,13 @@
#define RADIO_FREQENCY_LOCKED 1
/// Radio frequency is locked and unchangeable, but can be unlocked by an emag
#define RADIO_FREQENCY_EMAGGABLE_LOCK 2
+<<<<<<< HEAD
+=======
+
+///Bitflag for if a headset can use the syndicate radio channel
+#define RADIO_SPECIAL_SYNDIE (1<<0)
+///Bitflag for if a headset can use the centcom radio channel
+#define RADIO_SPECIAL_CENTCOM (1<<1)
+///Bitflag for if a headset can use the binary radio channel
+#define RADIO_SPECIAL_BINARY (1<<2)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/reagents.dm b/code/__DEFINES/reagents.dm
index 2414ff046b2..2b779630b81 100644
--- a/code/__DEFINES/reagents.dm
+++ b/code/__DEFINES/reagents.dm
@@ -142,11 +142,19 @@
#define MAX_ADDICTION_POINTS 1000
///Addiction start/ends
+<<<<<<< HEAD
#define WITHDRAWAL_STAGE1_START_CYCLE 121 // SKYRAT EDIT CHANGE - Original 61
#define WITHDRAWAL_STAGE1_END_CYCLE 240 // SKYRAT EDIT CHANGE - Original 120
#define WITHDRAWAL_STAGE2_START_CYCLE 241 // SKYRAT EDIT CHANGE - Original 121
#define WITHDRAWAL_STAGE2_END_CYCLE 360 // SKYRAT EDIT CHANGE - Original 180
#define WITHDRAWAL_STAGE3_START_CYCLE 361 // SKYRAT EDIT CHANGE - Original 181
+=======
+#define WITHDRAWAL_STAGE1_START_CYCLE 61
+#define WITHDRAWAL_STAGE1_END_CYCLE 120
+#define WITHDRAWAL_STAGE2_START_CYCLE 121
+#define WITHDRAWAL_STAGE2_END_CYCLE 180
+#define WITHDRAWAL_STAGE3_START_CYCLE 181
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///reagent tags - used to look up reagents for specific effects. Feel free to add to but comment it
/// This reagent does brute effects (BOTH damaging and healing)
@@ -215,7 +223,11 @@
#define GOLDSCHLAGER_GOLD_RATIO (GOLDSCHLAGER_GOLD/(GOLDSCHLAGER_VODKA+GOLDSCHLAGER_GOLD))
/// The rate at which alcohol affects the drinker
+<<<<<<< HEAD
#define ALCOHOL_RATE 0.0025 // SKYRAT EDIT CHANGE - ALCOHOL_PROCESSING - ORIGINAL: 0.005
+=======
+#define ALCOHOL_RATE 0.005
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define BLASTOFF_DANCE_MOVE_CHANCE_PER_UNIT 3
#define BLASTOFF_DANCE_MOVES_PER_SUPER_MOVE 3
diff --git a/code/__DEFINES/research/anomalies.dm b/code/__DEFINES/research/anomalies.dm
index 209a539ac7e..bb1d379ad6d 100644
--- a/code/__DEFINES/research/anomalies.dm
+++ b/code/__DEFINES/research/anomalies.dm
@@ -43,9 +43,12 @@ GLOBAL_LIST_INIT(bioscrambler_organs_blacklist, typecacheof(list (
/obj/item/organ/internal/tongue/dullahan,
/obj/item/organ/internal/vocal_cords/colossus,
/obj/item/organ/internal/zombie_infection,
+<<<<<<< HEAD
/obj/item/organ/internal/empowered_borer_egg, // SKYRAT EDIT ADDITION
/obj/item/organ/internal/eyes/robotic, // SKYRAT EDIT ADDITION
/obj/item/organ/internal/eyes/night_vision/cyber, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)))
/// List of body parts we can apply to people
diff --git a/code/__DEFINES/robots.dm b/code/__DEFINES/robots.dm
index f135635b185..ec280d42c33 100644
--- a/code/__DEFINES/robots.dm
+++ b/code/__DEFINES/robots.dm
@@ -55,6 +55,7 @@
///Third Borg module slot.
#define BORG_CHOOSE_MODULE_THREE 3
+<<<<<<< HEAD
// SKYRAT EDIT START - TODO - Move this upstream later
/// To store all the different cyborg models, instead of creating that for each cyborg.
GLOBAL_LIST_EMPTY(cyborg_model_list)
@@ -64,6 +65,8 @@ GLOBAL_LIST_EMPTY(cyborg_base_models_icon_list)
GLOBAL_LIST_EMPTY(cyborg_all_models_icon_list)
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SKIN_ICON "skin_icon"
#define SKIN_ICON_STATE "skin_icon_state"
#define SKIN_PIXEL_X "skin_pixel_x"
diff --git a/code/__DEFINES/role_preferences.dm b/code/__DEFINES/role_preferences.dm
index 72f04b66869..ba380c965e6 100644
--- a/code/__DEFINES/role_preferences.dm
+++ b/code/__DEFINES/role_preferences.dm
@@ -17,10 +17,13 @@
#define ROLE_TRAITOR "Traitor"
#define ROLE_WIZARD "Wizard"
#define ROLE_SPY "Spy"
+<<<<<<< HEAD
// SKYRAT EDIT START
#define ROLE_ASSAULT_OPERATIVE "Assault Operative"
#define ROLE_OPFOR_CANDIDATE "OPFOR Candidate"
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Midround roles
#define ROLE_ABDUCTOR "Abductor"
@@ -41,12 +44,15 @@
#define ROLE_SPACE_DRAGON "Space Dragon"
#define ROLE_SPIDER "Spider"
#define ROLE_WIZARD_MIDROUND "Wizard (Midround)"
+<<<<<<< HEAD
//SKYRAT EDIT START
#define ROLE_BORER "Borer"
#define ROLE_LONE_INFILTRATOR "Lone Infiltrator"
#define ROLE_MUTANT "Mutated Abomination"
#define ROLE_CLOCK_CULTIST "Clock Cultist"
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define ROLE_VOIDWALKER "Voidwalker"
// Latejoin roles
@@ -127,6 +133,7 @@
#define ROLE_CYBER_POLICE "Cyber Police"
#define ROLE_CYBER_TAC "Cyber Tac"
#define ROLE_NETGUARDIAN "NetGuardian Prime"
+<<<<<<< HEAD
//SKYRAT EDIT START - Skyrat roles
#define ROLE_BLACK_MARKET_DEALER "Black Market Dealer"
#define ROLE_DS2 "DS2 Syndicate"
@@ -134,6 +141,8 @@
#define ROLE_GHOST_CAFE "Ghost Cafe Visitor"
#define ROLE_PORT_TARKON "Port Tarkon Survivor"
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// This defines the antagonists you can operate with in the settings.
/// Keys are the antagonist, values are the number of days since the player's
@@ -151,9 +160,12 @@ GLOBAL_LIST_INIT(special_roles, list(
ROLE_TRAITOR = 0,
ROLE_WIZARD = 14,
ROLE_SPY = 0,
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
ROLE_ASSAULT_OPERATIVE = 14,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Midround
ROLE_ABDUCTOR = 0,
@@ -174,11 +186,14 @@ GLOBAL_LIST_INIT(special_roles, list(
ROLE_SPACE_DRAGON = 0,
ROLE_SPIDER = 0,
ROLE_WIZARD_MIDROUND = 14,
+<<<<<<< HEAD
//SKYRAT EDIT START
ROLE_LONE_INFILTRATOR = 0,
ROLE_BORER = 0,
ROLE_MUTANT = 0,
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ROLE_VOIDWALKER = 0,
// Latejoin
diff --git a/code/__DEFINES/say.dm b/code/__DEFINES/say.dm
index 86432d25ecb..cba857beed1 100644
--- a/code/__DEFINES/say.dm
+++ b/code/__DEFINES/say.dm
@@ -105,7 +105,11 @@
#define FOLLOW_OR_TURF_LINK(alice, bob, turfy) "(F) "
//Don't set this very much higher then 1024 unless you like inviting people in to dos your server with message spam
+<<<<<<< HEAD
#define MAX_MESSAGE_LEN 2048 //SKYRAT EDIT CHANGE - ORIGINAL 1024 - I SAID DOUBLE IT!! FUCK THE WARNING!
+=======
+#define MAX_MESSAGE_LEN 1024
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define MAX_NAME_LEN 42
#define MAX_BROADCAST_LEN 512
#define MAX_CHARTER_LEN 80
diff --git a/code/__DEFINES/sight.dm b/code/__DEFINES/sight.dm
index 0e616b090dc..57a8b07c7c3 100644
--- a/code/__DEFINES/sight.dm
+++ b/code/__DEFINES/sight.dm
@@ -56,6 +56,7 @@
/// NOTE: this does not function with the SIDE_MAP map format. So we can't. :(
//#define SEE_BLACKNESS (1<<10)
+<<<<<<< HEAD
/// Bitfield of sight flags that show things "inside" the blackness plane
/// We've gotta alpha it down if we get this, cause otherwise the sight flag won't work
#define BLACKNESS_CUTTING (SEE_MOBS|SEE_OBJS|SEE_TURFS|SEE_TURFS|SEE_TURFS)
@@ -66,6 +67,8 @@
/// Range in tiles that a mob can see in the dark (used to determine if a mob has night_vision)
#define NIGHTVISION_RANGE 8
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Bitfield of sight flags that show THINGS but no lighting
/// Since lighting is an underlay on turfs, this is everything but that
#define SEE_AVOID_TURF_BLACKNESS (SEE_MOBS|SEE_OBJS)
diff --git a/code/__DEFINES/sound.dm b/code/__DEFINES/sound.dm
index 4094eb93f2f..034bc9a5e11 100644
--- a/code/__DEFINES/sound.dm
+++ b/code/__DEFINES/sound.dm
@@ -16,11 +16,14 @@
#define MAX_INSTRUMENT_CHANNELS (128 * 6)
+<<<<<<< HEAD
// SKYRAT EDIT START - JUKEBOX
#define CHANNEL_JUKEBOX_START 1006
#define CHANNEL_HEV 1005
//SKYRAT EDIT CHANGE END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Default range of a sound.
#define SOUND_RANGE 17
#define MEDIUM_RANGE_SOUND_EXTRARANGE -5
@@ -122,6 +125,7 @@
#define ANNOUNCER_SHUTTLERECALLED "announcer_shuttlerecalled"
#define ANNOUNCER_SPANOMALIES "announcer_spanomalies"
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
#define ANNOUNCER_SHUTTLELEFT "announcer_shuttleleft"
#define ANNOUNCER_CARP "announcer_carp"
@@ -153,6 +157,8 @@
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Global list of all of our announcer keys.
GLOBAL_LIST_INIT(announcer_keys, list(
ANNOUNCER_AIMALF,
@@ -171,6 +177,7 @@ GLOBAL_LIST_INIT(announcer_keys, list(
ANNOUNCER_SHUTTLEDOCK,
ANNOUNCER_SHUTTLERECALLED,
ANNOUNCER_SPANOMALIES,
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
ANNOUNCER_SHUTTLELEFT,
ANNOUNCER_CARP,
@@ -197,6 +204,8 @@ GLOBAL_LIST_INIT(announcer_keys, list(
ANNOUNCER_NRI_RAIDERS,
ANNOUNCER_OUTBREAK6,
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/// List of all of our sound keys.
@@ -242,3 +251,10 @@ GLOBAL_LIST_INIT(announcer_keys, list(
#define SFX_KEYBOARD_CLICKS "keyboard_clicks"
#define SFX_STONE_DROP "stone_drop"
#define SFX_STONE_PICKUP "stone_pickup"
+<<<<<<< HEAD
+=======
+#define SFX_MUFFLED_SPEECH "muffspeech"
+#define SFX_DEFAULT_FISH_SLAP "default_fish_slap"
+#define SFX_ALT_FISH_SLAP "alt_fish_slap"
+#define SFX_FISH_PICKUP "fish_pickup"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/spacevines.dm b/code/__DEFINES/spacevines.dm
index 84739f344b5..082c6401481 100644
--- a/code/__DEFINES/spacevines.dm
+++ b/code/__DEFINES/spacevines.dm
@@ -27,10 +27,17 @@
#define SEVERITY_MAJOR 10
/// Kudzu mutativeness is based on a scale factor * potency
+<<<<<<< HEAD
#define MUTATIVENESS_SCALE_FACTOR 0.1 // SKYRAT EDIT CHANGE - Original: 0.2
/// Kudzu maximum mutation severity is a linear function of potency
#define MAX_SEVERITY_LINEAR_COEFF 0.1 // SKYRAT EDIT CHANGE - Original: 0.15
+=======
+#define MUTATIVENESS_SCALE_FACTOR 0.2
+
+/// Kudzu maximum mutation severity is a linear function of potency
+#define MAX_SEVERITY_LINEAR_COEFF 0.15
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define MAX_SEVERITY_CONSTANT_TERM 10
/// Additional maximum mutation severity given to kudzu spawned by a random event
diff --git a/code/__DEFINES/span.dm b/code/__DEFINES/span.dm
index fadd0005315..36c3438e784 100644
--- a/code/__DEFINES/span.dm
+++ b/code/__DEFINES/span.dm
@@ -48,6 +48,10 @@
#define span_drone(str) ("" + str + " ")
#define span_engradio(str) ("" + str + " ")
#define span_extremelybig(str) ("" + str + " ")
+<<<<<<< HEAD
+=======
+#define span_enteradio(str) ("" + str + " ")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define span_game_say(str) ("" + str + " ")
#define span_ghostalert(str) ("" + str + " ")
#define span_green(str) ("" + str + " ")
diff --git a/code/__DEFINES/species_clothing_paths.dm b/code/__DEFINES/species_clothing_paths.dm
index be95aa3a3b0..17148efcc80 100644
--- a/code/__DEFINES/species_clothing_paths.dm
+++ b/code/__DEFINES/species_clothing_paths.dm
@@ -8,8 +8,16 @@
//DIGITIGRADE PATHS
///The dmi containing digitigrade uniforms
+<<<<<<< HEAD
#define DIGITIGRADE_UNIFORM_FILE 'modular_skyrat/master_files/icons/mob/clothing/uniform_digi.dmi' // SKYRAT EDIT CHANGE
///The dmi containing digitigrade shoes
#define DIGITIGRADE_SHOES_FILE 'modular_skyrat/master_files/icons/mob/clothing/feet_digi.dmi' // SKYRAT EDIT CHANGE
///The dmi containing digitigrade oversuits
#define DIGITIGRADE_SUIT_FILE 'modular_skyrat/master_files/icons/mob/clothing/suit_digi.dmi' // SKYRAT EDIT CHANGE
+=======
+#define DIGITIGRADE_UNIFORM_FILE 'icons/mob/human/species/misc/digitigrade.dmi'
+///The dmi containing digitigrade shoes
+#define DIGITIGRADE_SHOES_FILE 'icons/mob/human/species/misc/digitigrade_shoes.dmi'
+///The dmi containing digitigrade oversuits
+#define DIGITIGRADE_SUIT_FILE 'icons/mob/human/species/misc/digitigrade_suits.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm
index 8ada83a2109..889fa06429c 100644
--- a/code/__DEFINES/status_effects.dm
+++ b/code/__DEFINES/status_effects.dm
@@ -24,6 +24,7 @@
#define CURSE_GRASPING (1<<3)
//Incapacitated status effect flags
+<<<<<<< HEAD
/// If the incapacitated status effect will ignore a mob in restraints (handcuffs)
#define IGNORE_RESTRAINTS (1<<0)
/// If the incapacitated status effect will ignore a mob in stasis (stasis beds)
@@ -31,6 +32,21 @@
/// If the incapacitated status effect will ignore a mob being agressively grabbed
#define IGNORE_GRAB (1<<2)
+=======
+/// If the mob is normal incapacitated. Should never need this, just avoids issues if we ever overexpand this
+#define TRADITIONAL_INCAPACITATED (1<<0)
+/// If the incapacitated status effect is being caused by restraints (handcuffs)
+#define INCAPABLE_RESTRAINTS (1<<1)
+/// If the incapacitated status effect is being caused by stasis (stasis beds)
+#define INCAPABLE_STASIS (1<<2)
+/// If the incapacitated status effect is being caused by being agressively grabbed
+#define INCAPABLE_GRAB (1<<3)
+
+/// Checks to see if a mob would be incapacitated even while ignoring some types
+/// Does this by inverting the passed in flags and seeing if we're still incapacitated
+#define INCAPACITATED_IGNORING(mob, flags) (mob.incapacitated & ~(flags))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Maxamounts of fire stacks a mob can get
#define MAX_FIRE_STACKS 20
/// If a mob has a higher threshold than this, the icon shown will be increased to the big fire icon.
diff --git a/code/__DEFINES/subsystems.dm b/code/__DEFINES/subsystems.dm
index 73241b9d34b..0757bd3f226 100644
--- a/code/__DEFINES/subsystems.dm
+++ b/code/__DEFINES/subsystems.dm
@@ -20,7 +20,11 @@
*
* make sure you add an update to the schema_version stable in the db changelog
*/
+<<<<<<< HEAD
#define DB_MINOR_VERSION 30
+=======
+#define DB_MINOR_VERSION 27
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//! ## Timing subsystem
@@ -39,7 +43,11 @@
* Timing should be based on how timing progresses on clients, not the server.
*
* Tracking this is more expensive,
+<<<<<<< HEAD
* should only be used in conjuction with things that have to progress client side, such as
+=======
+ * should only be used in conjunction with things that have to progress client side, such as
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* animate() or sound()
*/
#define TIMER_CLIENT_TIME (1<<2)
@@ -81,15 +89,22 @@
///Nothing happens
#define INITIALIZE_HINT_NORMAL 0
/**
+<<<<<<< HEAD
* call LateInitialize at the end of all atom Initalization
*
* The item will be added to the late_loaders list, this is iterated over after
* initalization of subsystems is complete and calls LateInitalize on the atom
+=======
+ * call LateInitialize at the end of all atom Initialization
+ *
+ * The item will be added to the late_loaders list, this is iterated over after
+ * initialization of subsystems is complete and calls LateInitalize on the atom
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* see [this file for the LateIntialize proc](atom.html#proc/LateInitialize)
*/
#define INITIALIZE_HINT_LATELOAD 1
-///Call qdel on the atom after intialization
+///Call qdel on the atom after initialization
#define INITIALIZE_HINT_QDEL 2
///type and all subtypes should always immediately call Initialize in New()
@@ -106,23 +121,39 @@
//! ### SS initialization hints
/**
+<<<<<<< HEAD
* Negative values incidate a failure or warning of some kind, positive are good.
* 0 and 1 are unused so that TRUE and FALSE are guarenteed to be invalid values.
+=======
+ * Negative values indicate a failure or warning of some kind, positive are good.
+ * 0 and 1 are unused so that TRUE and FALSE are guaranteed to be invalid values.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*/
/// Subsystem failed to initialize entirely. Print a warning, log, and disable firing.
#define SS_INIT_FAILURE -2
+<<<<<<< HEAD
/// The default return value which must be overriden. Will succeed with a warning.
#define SS_INIT_NONE -1
/// Subsystem initialized sucessfully.
+=======
+/// The default return value which must be overridden. Will succeed with a warning.
+#define SS_INIT_NONE -1
+
+/// Subsystem initialized successfully.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SS_INIT_SUCCESS 2
/// If your system doesn't need to be initialized (by being disabled or something)
#define SS_INIT_NO_NEED 3
+<<<<<<< HEAD
/// Succesfully initialized, BUT do not announce it to players (generally to hide game mechanics it would otherwise spoil)
+=======
+/// Successfully initialized, BUT do not announce it to players (generally to hide game mechanics it would otherwise spoil)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SS_INIT_NO_MESSAGE 4
//! ### SS initialization load orders
@@ -136,9 +167,14 @@
#define INIT_ORDER_DBCORE 95
#define INIT_ORDER_BLACKBOX 94
#define INIT_ORDER_SERVER_MAINT 93
+<<<<<<< HEAD
#define INIT_ORDER_PLAYER_RANKS 86 // SKYRAT EDIT - Player Ranks Subsystem
#define INIT_ORDER_INPUT 85
#define INIT_ORDER_ADMIN_VERBS 84 // needs to be pretty high, admins cant do much without it
+=======
+#define INIT_ORDER_INPUT 85
+#define INIT_ORDER_ADMIN_VERBS 84 // needs to be pretty high, admins can't do much without it
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define INIT_ORDER_SOUNDS 83
#define INIT_ORDER_INSTRUMENTS 82
#define INIT_ORDER_GREYSCALE 81
@@ -156,7 +192,10 @@
#define INIT_ORDER_AI_CONTROLLERS 55 //So the controller can get the ref
#define INIT_ORDER_TICKER 55
#define INIT_ORDER_TCG 55
+<<<<<<< HEAD
#define INIT_ORDER_AUTOMAPPER 51 // SKYRAT EDIT ADDITION - We need to load just before mapping.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define INIT_ORDER_MAPPING 50
#define INIT_ORDER_AI_IDLE_CONTROLLERS 50
#define INIT_ORDER_EARLY_ASSETS 48
@@ -167,9 +206,13 @@
#define INIT_ORDER_OUTPUTS 35
#define INIT_ORDER_RESTAURANT 34
#define INIT_ORDER_TTS 33
+<<<<<<< HEAD
#define INIT_ORDER_POLLUTION 32 //SKYRAT EDIT ADDITION - //Needs to be above atoms
#define INIT_ORDER_ATOMS 30
#define INIT_ORDER_ARMAMENTS 27 // SKYRAT EDIT ADDITION - Needs to be between atoms and default so it runs before gun companies
+=======
+#define INIT_ORDER_ATOMS 30
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define INIT_ORDER_LANGUAGE 25
#define INIT_ORDER_MACHINES 20
#define INIT_ORDER_SKILLS 15
@@ -189,9 +232,12 @@
#define INIT_ORDER_SHUTTLE -21
#define INIT_ORDER_MINOR_MAPPING -40
#define INIT_ORDER_PATH -50
+<<<<<<< HEAD
#define INIT_ORDER_MATURITY_GUARD -60 //SKYRAT EDIT ADDITION
#define INIT_ORDER_DECAY -61 //SKYRAT EDIT ADDITION
#define INIT_ORDER_POWERATOR_PENALITY -62 // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define INIT_ORDER_EXPLOSIONS -69
#define INIT_ORDER_STATPANELS -97
#define INIT_ORDER_BAN_CACHE -98
diff --git a/code/__DEFINES/surgery.dm b/code/__DEFINES/surgery.dm
index 2fb6ab61557..07e1ffcb858 100644
--- a/code/__DEFINES/surgery.dm
+++ b/code/__DEFINES/surgery.dm
@@ -28,6 +28,10 @@
#define ORGAN_VIRGIN (1<<10)
/// ALWAYS show this when scanned by advanced scanners, even if it is totally healthy
#define ORGAN_PROMINENT (1<<11)
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Helper to figure out if a limb is organic
#define IS_ORGANIC_LIMB(limb) (limb.bodytype & BODYTYPE_ORGANIC)
/// Helper to figure out if a limb is robotic
@@ -67,7 +71,11 @@
/// All head flags, default for most heads
#define HEAD_ALL_FEATURES (HEAD_HAIR|HEAD_FACIAL_HAIR|HEAD_LIPS|HEAD_EYESPRITES|HEAD_EYECOLOR|HEAD_EYEHOLES|HEAD_DEBRAIN)
+<<<<<<< HEAD
/// When the surgery step fails :(
+=======
+/// Return value when the surgery step fails :(
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SURGERY_STEP_FAIL -1
// Flags for surgery_flags on surgery datums
diff --git a/code/__DEFINES/text.dm b/code/__DEFINES/text.dm
index 06d2a938898..42574992f97 100644
--- a/code/__DEFINES/text.dm
+++ b/code/__DEFINES/text.dm
@@ -94,10 +94,13 @@
#define FLESH_SCAR_FILE "wounds/flesh_scar_desc.json"
/// File location for bone wound descriptions
#define BONE_SCAR_FILE "wounds/bone_scar_desc.json"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - SYNTH WOUNDS
/// File location for metalic wound descriptions
#define METAL_SCAR_FILE "wounds/metal_scar_desc.json"
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// File location for scar wound descriptions
#define SCAR_LOC_FILE "wounds/scar_loc.json"
/// File location for exodrone descriptions
diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm
index 4766b3dfe66..f4416fb65bf 100644
--- a/code/__DEFINES/tgs.dm
+++ b/code/__DEFINES/tgs.dm
@@ -1,7 +1,11 @@
// tgstation-server DMAPI
// The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in IETF RFC 2119.
+<<<<<<< HEAD
#define TGS_DMAPI_VERSION "7.2.1"
+=======
+#define TGS_DMAPI_VERSION "7.3.0"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// All functions and datums outside this document are subject to change with any version and should not be relied on.
diff --git a/code/__DEFINES/traits/declarations.dm b/code/__DEFINES/traits/declarations.dm
index ff2e0aa3198..2b27ff263e7 100644
--- a/code/__DEFINES/traits/declarations.dm
+++ b/code/__DEFINES/traits/declarations.dm
@@ -24,7 +24,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_PULL_BLOCKED "pullblocked"
/// Abstract condition that prevents movement if being pulled and might be resisted against. Handcuffs and straight jackets, basically.
#define TRAIT_RESTRAINED "restrained"
+<<<<<<< HEAD
/// Apply this to make a mob not dense, and remove it when you want it to no longer make them undense, other sorces of undesity will still apply. Always define a unique source when adding a new instance of this!
+=======
+/// Apply this to make a mob not dense, and remove it when you want it to no longer make them undense, other sources of undesity will still apply. Always define a unique source when adding a new instance of this!
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_UNDENSE "undense"
/// Expands our FOV by 30 degrees if restricted
#define TRAIT_EXPANDED_FOV "expanded_fov"
@@ -50,7 +54,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_DEAF "deaf"
#define TRAIT_FAT "fat"
#define TRAIT_HUSK "husk"
+<<<<<<< HEAD
///Blacklisted from being revived via defibrilator
+=======
+///Blacklisted from being revived via defibrillator
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_DEFIB_BLACKLISTED "defib_blacklisted"
#define TRAIT_BADDNA "baddna"
#define TRAIT_CLUMSY "clumsy"
@@ -169,7 +177,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_NO_ZOMBIFY "no_zombify"
/// Carbons with this trait can't have their DNA copied by diseases nor changelings
#define TRAIT_NO_DNA_COPY "no_dna_copy"
+<<<<<<< HEAD
/// Carbons with this trait cant have their dna scrambled by genetics or a disease retrovirus.
+=======
+/// Carbons with this trait can't have their DNA scrambled by genetics or a disease retrovirus.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_NO_DNA_SCRAMBLE "no_dna_scramble"
/// Carbons with this trait can eat blood to regenerate their own blood volume, instead of injecting it
#define TRAIT_DRINKS_BLOOD "drinks_blood"
@@ -233,6 +245,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_FISHING_SPOT "fishing_spot"
///Trait given to mobs that can fish without a rod
#define TRAIT_PROFOUND_FISHER "profound_fisher"
+<<<<<<< HEAD
+=======
+/// If an atom has this trait, then you can toss a bottle with a message in it.
+#define TRAIT_MESSAGE_IN_A_BOTTLE_LOCATION "message_in_a_bottle_location"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// This trait lets you evaluate someone's fitness level against your own
#define TRAIT_EXAMINE_FITNESS "reveal_power_level"
/// These mobs have particularly hygienic tongues
@@ -253,7 +270,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// Stop the mob from sliding around from being slipped, but not the slip part.
/// DOES NOT include ice slips.
#define TRAIT_NO_SLIP_SLIDE "noslip_slide"
+<<<<<<< HEAD
/// Stops all slipping and sliding from ocurring
+=======
+/// Stops all slipping and sliding from occurring
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_NO_SLIP_ALL "noslip_all"
/// Unlinks gliding from movement speed, meaning that there will be a delay between movements rather than a single move movement between tiles
@@ -362,16 +383,25 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_GUNFLIP "gunflip"
/// Increases chance of getting special traumas, makes them harder to cure
#define TRAIT_SPECIAL_TRAUMA_BOOST "special_trauma_boost"
+<<<<<<< HEAD
/// Doubles the duration and cooldown of a flip
#define TRAIT_SLOW_FLIP "slow_flip"
#define TRAIT_SPACEWALK "spacewalk"
/// Sanity trait to keep track of when we're in hyperspace and add the appropriate element if we werent
+=======
+#define TRAIT_SPACEWALK "spacewalk"
+/// Sanity trait to keep track of when we're in hyperspace and add the appropriate element if we weren't
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_HYPERSPACED "hyperspaced"
///Gives the movable free hyperspace movement without being pulled during shuttle transit
#define TRAIT_FREE_HYPERSPACE_MOVEMENT "free_hyperspace_movement"
///Lets the movable move freely in the soft-cordon area of transit space, which would otherwise teleport them away just before they got to see the true cordon
#define TRAIT_FREE_HYPERSPACE_SOFTCORDON_MOVEMENT "free_hyperspace_softcordon_movement"
+<<<<<<< HEAD
///Deletes the object upon being dumped into space, usually from exiting hyperspace. Useful if you're spawning in a lot of stuff for hyperspace events that dont need to flood the entire game
+=======
+///Deletes the object upon being dumped into space, usually from exiting hyperspace. Useful if you're spawning in a lot of stuff for hyperspace events that don't need to flood the entire game
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_DEL_ON_SPACE_DUMP "del_on_hyperspace_leave"
/// We can walk up or around cliffs, or at least we don't fall off of it
#define TRAIT_CLIFF_WALKER "cliff_walker"
@@ -438,7 +468,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_BLOODSHOT_EYES "bloodshot_eyes"
/// This mob should never close UI even if it doesn't have a client
#define TRAIT_PRESERVE_UI_WITHOUT_CLIENT "preserve_ui_without_client"
+<<<<<<< HEAD
/// This mob overrides certian SSlag_switch measures with this special trait
+=======
+/// This mob overrides certain SSlag_switch measures with this special trait
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define TRAIT_BYPASS_MEASURES "bypass_lagswitch_measures"
/// Someone can safely be attacked with honorbound with ONLY a combat mode check, the trait is assuring holding a weapon and hitting won't hurt them..
#define TRAIT_ALLOWED_HONORBOUND_ATTACK "allowed_honorbound_attack"
@@ -534,9 +568,12 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// Mobs with this trait cannot be hit by projectiles, meaning the projectiles will just go through.
#define TRAIT_UNHITTABLE_BY_PROJECTILES "unhittable_by_projectiles"
+<<<<<<< HEAD
/// Projectile with this trait will always hit the defined zone of a struck living mob.
#define TRAIT_ALWAYS_HIT_ZONE "always_hit_zone"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Mobs with this trait do care about a few grisly things, such as digging up graves. They also really do not like bringing people back to life or tending wounds, but love autopsies and amputations.
#define TRAIT_MORBID "morbid"
@@ -677,6 +714,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// This movable atom has the explosive block element
#define TRAIT_BLOCKING_EXPLOSIVES "blocking_explosives"
+<<<<<<< HEAD
+=======
+///This mob is currently blocking a projectile.
+#define TRAIT_BLOCKING_PROJECTILES "blocking_projectiles"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Lava will be safe to cross while it has this trait.
#define TRAIT_LAVA_STOPPED "lava_stopped"
///Chasms will be safe to cross while they've this trait.
@@ -743,14 +785,29 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_FOOD_SILVER "food_silver"
/// If this item's been made by a chef instead of being map-spawned or admin-spawned or such
#define TRAIT_FOOD_CHEF_MADE "food_made_by_chef"
+<<<<<<< HEAD
+=======
+/// This atom has a quality_food_ingredient element attached
+#define TRAIT_QUALITY_FOOD_INGREDIENT "quality_food_ingredient"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The items needs two hands to be carried
#define TRAIT_NEEDS_TWO_HANDS "needstwohands"
/// Can't be catched when thrown
#define TRAIT_UNCATCHABLE "uncatchable"
+<<<<<<< HEAD
+=======
+/// You won't catch duds while fishing with this rod.
+#define TRAIT_ROD_REMOVE_FISHING_DUD "rod_remove_fishing_dud"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Stuff that can go inside fish cases
#define TRAIT_FISH_CASE_COMPATIBILE "fish_case_compatibile"
/// If the item can be used as a bit.
#define TRAIT_FISHING_BAIT "fishing_bait"
+<<<<<<< HEAD
+=======
+/// This bait will kill any fish that doesn't have it on its favorite_bait list
+#define TRAIT_POISONOUS_BAIT "poisonous_bait"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The quality of the bait. It influences odds of catching fish
#define TRAIT_BASIC_QUALITY_BAIT "baic_quality_bait"
#define TRAIT_GOOD_QUALITY_BAIT "good_quality_bait"
@@ -758,7 +815,18 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// Baits with this trait will ignore bait preferences and related fish traits.
#define TRAIT_OMNI_BAIT "omni_bait"
/// The bait won't be consumed when used
+<<<<<<< HEAD
#define TRAIT_BAIT_UNCONSUMABLE "bait_unconsumabe"
+=======
+#define TRAIT_BAIT_UNCONSUMABLE "bait_unconsumable"
+/// This bait ignores environmental conditions for fishing (like low light for nocturnal fish)
+#define TRAIT_BAIT_IGNORE_ENVIRONMENT "bait_ignore_environment"
+/**
+ * This bait won't apply TRAIT_ROD_REMOVE_FISHING_DUD to the rod it's attached on,
+ * instead, it'll allow the fishing dud to be there unless there's at least one fish that likes the bait
+ */
+#define TRAIT_BAIT_ALLOW_FISHING_DUD "bait_dont_affect_fishing_dud"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Plants that were mutated as a result of passive instability, not a mutation threshold.
#define TRAIT_PLANT_WILDMUTATE "wildmutation"
/// If you hit an APC with exposed internals with this item it will try to shock you
@@ -952,6 +1020,17 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
#define TRAIT_FISH_FROM_CASE "fish_from_case"
///Fish will also occasionally fire weak tesla zaps
#define TRAIT_FISH_ELECTROGENESIS "fish_electrogenesis"
+<<<<<<< HEAD
+=======
+///Offsprings from this fish will never be of its same type (unless it's self-reproducing).
+#define TRAIT_FISH_RECESSIVE "fish_recessive"
+///This fish comes equipped with a stinger (increased damage and potentially venomous if also toxic)
+#define TRAIT_FISH_STINGER "fish_stinger"
+///This fish is currently on cooldown and cannot splash ink unto people's faces
+#define TRAIT_FISH_INK_ON_COOLDOWN "fish_ink_on_cooldown"
+///This fish requires two hands to carry even if smaller than FISH_SIZE_TWO_HANDS_REQUIRED, as long as it's bulky-sized.
+#define TRAIT_FISH_SHOULD_TWOHANDED "should_twohanded"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trait given to angelic constructs to let them purge cult runes
#define TRAIT_ANGELIC "angelic"
@@ -1049,6 +1128,16 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// things with this trait are treated as having no access in /atom/movable/proc/check_access(obj/item)
#define TRAIT_ALWAYS_NO_ACCESS "alwaysnoaccess"
+<<<<<<< HEAD
+=======
+///The entity has Silicon 'access', so is either a silicon, has an access wand, or is an admin ghost AI.
+///This is put on the mob, it is used on the client for Admins but they are the exception as they use `isAdminGhostAI`.
+#define TRAIT_SILICON_ACCESS "silicon_access_trait"
+///The entity has AI 'access', so is either an AI, has an access wand, or is an admin ghost AI. Used to block off regular Silicons from things.
+///This is put on the mob, it is used on the client for Admins but they are the exception as they use `isAdminGhostAI`.
+#define TRAIT_AI_ACCESS "ai_access_trait"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Used by wearable_client_colour to determine whether the mob wants to have the colours of the screen affected by worn items (some still do regardless).
#define TRAIT_SEE_WORN_COLOURS "see_worn_colour"
@@ -1094,6 +1183,11 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// Currently fishing
#define TRAIT_GONE_FISHING "fishing"
+<<<<<<< HEAD
+=======
+/// Currently fishing, and it's the active minigame phase
+#define TRAIT_ACTIVELY_FISHING "actively_fishing"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Makes a character be better/worse at tackling depending on their wing's status
#define TRAIT_TACKLING_WINGED_ATTACKER "tacking_winged_attacker"
@@ -1199,6 +1293,15 @@ Remember to update _globalvars/traits.dm if you're adding/removing/renaming trai
/// Trait given to anything linked to, not necessarily allied to, the mansus
#define TRAIT_MANSUS_TOUCHED "mansus_touched"
+<<<<<<< HEAD
+=======
+
+// These traits are used in IS_X() as an OR, and is utilized for pseudoantags (such as deathmatch or domains) so they don't need to actually get antag status.
+// To specifically and only get the antag datum, GET_X() exists now.
+#define TRAIT_ACT_AS_CULTIST "act_as_cultist"
+#define TRAIT_ACT_AS_HERETIC "act_as_heretic"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Appiled when wizard buy (/datum/spellbook_entry/perks/spalls_lottery) perk.
/// Give 50/25% chance not spend a spellbook charge on 1/2 cost spell.
/// Appiled it wizard can't refund any spells.
diff --git a/code/__DEFINES/traits/sources.dm b/code/__DEFINES/traits/sources.dm
index d50de26219b..37b75c31d70 100644
--- a/code/__DEFINES/traits/sources.dm
+++ b/code/__DEFINES/traits/sources.dm
@@ -36,6 +36,11 @@
#define VENDING_MACHINE_TRAIT "vending_machine"
+<<<<<<< HEAD
+=======
+///A trait given by a held item
+#define HELD_ITEM_TRAIT "held-item-trait"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define ABSTRACT_ITEM_TRAIT "abstract-item"
/// A trait given by any status effect
#define STATUS_EFFECT_TRAIT "status-effect"
@@ -45,7 +50,12 @@
/// Trait given by an Action datum
#define ACTION_TRAIT "action"
+<<<<<<< HEAD
+=======
+///A trait given by someone blocking.
+#define BLOCKING_TRAIT "blocking"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define CLOTHING_TRAIT "clothing"
#define HELMET_TRAIT "helmet"
/// inherited from the mask
diff --git a/code/__DEFINES/transport.dm b/code/__DEFINES/transport.dm
index b47bb6c2f06..cb2caea75e8 100644
--- a/code/__DEFINES/transport.dm
+++ b/code/__DEFINES/transport.dm
@@ -99,10 +99,15 @@ DEFINE_BITFIELD(request_flags, list(
#define XING_STATE_RED 2
#define XING_STATE_MALF 3
+<<<<<<< HEAD
// #define XING_THRESHOLD_AMBER 45
// #define XING_THRESHOLD_RED 27
#define XING_THRESHOLD_AMBER 60 // SKYRAT EDIT CHANGE - RUN/WALK SPEED
#define XING_THRESHOLD_RED 36 // SKYRAT EDIT CHANGE - RUN/WALK SPEED
+=======
+#define XING_THRESHOLD_AMBER 45
+#define XING_THRESHOLD_RED 27
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define DEFAULT_TRAM_LENGTH 10
#define DEFAULT_TRAM_MIDPOINT 5
diff --git a/code/__DEFINES/wiremod.dm b/code/__DEFINES/wiremod.dm
index 45c2dfae84b..a7c8eeaea1a 100644
--- a/code/__DEFINES/wiremod.dm
+++ b/code/__DEFINES/wiremod.dm
@@ -123,10 +123,13 @@
#define CIRCUIT_FLAG_REFUSE_MODULE (1<<5)
/// This circuit component cannot be inserted into the same circuit multiple times. Only use this for major headaches.
#define CIRCUIT_NO_DUPLICATES (1<<6)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - This is required since we have two reagent components, and the BCI only allows one active
/// This circuit component is a reagent container type. Check for existing reagent containers before adding.
#define CIRCUIT_REAGENT_CONTAINER_TYPE (1<<7) // This value should not conflict with any of the previous flags
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Datatype flags
/// The datatype supports manual inputs
diff --git a/code/__DEFINES/wounds.dm b/code/__DEFINES/wounds.dm
index 678a3fa80b9..64b312b04da 100644
--- a/code/__DEFINES/wounds.dm
+++ b/code/__DEFINES/wounds.dm
@@ -46,6 +46,10 @@ GLOBAL_LIST_INIT(wound_severities_chronological, list(
/// Mainly a define used for wound_pregen_data, if a pregen data instance expects this, it will accept any and all wound types, even none at all
#define WOUND_ALL "wound_all"
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// ~determination second wind defines
// How much determination reagent to add each time someone gains a new wound in [/datum/wound/proc/second_wind]
#define WOUND_DETERMINATION_MODERATE 1
@@ -113,6 +117,10 @@ GLOBAL_LIST_INIT(bio_state_anatomy, list(
// Wound series
// A "wound series" is just a family of wounds that logically follow eachother
// Multiple wounds in a single series cannot be on a limb - the highest severity will always be prioritized, and lower ones will be skipped
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// T1-T3 Bleeding slash wounds. Requires flesh. Can cause bleeding, but doesn't require it. From: slash.dm
#define WOUND_SERIES_FLESH_SLASH_BLEED "wound_series_flesh_slash_bled"
/// T1-T3 Basic blunt wounds. T1 requires jointed, but 2-3 require bone. From: bone.dm
@@ -126,6 +134,7 @@ GLOBAL_LIST_INIT(bio_state_anatomy, list(
/// Cranial fissure wound.
#define WOUND_SERIES_CRANIAL_FISSURE "wound_series_cranial_fissure"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - MUSCLE AND SYNTH WOUNDS
// Have to put it here so I can use it in the global list of wound series
/// See muscle.dm and robotic_blunt.dm
@@ -137,6 +146,8 @@ GLOBAL_LIST_INIT(bio_state_anatomy, list(
#define WOUND_SERIES_WIRE_PIERCE_ELECTRICAL_DAMAGE "wound_series_metal_pierce_electrical_damage_basic"
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// A assoc list of (wound typepath -> wound_pregen_data instance). Every wound should have a pregen data.
GLOBAL_LIST_INIT_TYPED(all_wound_pregen_data, /datum/wound_pregen_data, generate_wound_static_data())
@@ -208,6 +219,7 @@ GLOBAL_LIST_INIT(wound_series_collections, generate_wound_series_collection())
/// Allows for determining of which wound series are caused by what.
GLOBAL_LIST_INIT(wounding_types_to_series, list(
WOUND_BLUNT = list(
+<<<<<<< HEAD
WOUND_SERIES_BONE_BLUNT_BASIC,
WOUND_SERIES_MUSCLE_DAMAGE, // SKYRAT EDIT -- MUSCLE WOUNDS
WOUND_SERIES_METAL_BLUNT_BASIC, // SKYRAT EDIT ADDITION - SYNTH WOUNDS
@@ -227,6 +239,18 @@ GLOBAL_LIST_INIT(wounding_types_to_series, list(
WOUND_SERIES_FLESH_PUNCTURE_BLEED,
WOUND_SERIES_MUSCLE_DAMAGE, // SKYRAT EDIT ADDITION - MUSCLE WOUNDS
WOUND_SERIES_WIRE_PIERCE_ELECTRICAL_DAMAGE, // SKYRAT EDIT ADDITION - SYNTH WOUNDS
+=======
+ WOUND_SERIES_BONE_BLUNT_BASIC
+ ),
+ WOUND_SLASH = list(
+ WOUND_SERIES_FLESH_SLASH_BLEED,
+ ),
+ WOUND_BURN = list(
+ WOUND_SERIES_FLESH_BURN_BASIC,
+ ),
+ WOUND_PIERCE = list(
+ WOUND_SERIES_FLESH_PUNCTURE_BLEED
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
),
))
@@ -297,8 +321,12 @@ GLOBAL_LIST_INIT(wounding_types_to_series, list(
/// Assoc list of biotype -> ideal scar file to be used and grab stuff from.
GLOBAL_LIST_INIT(biotypes_to_scar_file, list(
"[BIO_FLESH]" = FLESH_SCAR_FILE,
+<<<<<<< HEAD
"[BIO_BONE]" = BONE_SCAR_FILE,
"[BIO_METAL]" = METAL_SCAR_FILE // SKYRAT EDIT ADDITION - METAL SCARS (see robotic_blunt.dm)
+=======
+ "[BIO_BONE]" = BONE_SCAR_FILE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
// ~burn wound infection defines
diff --git a/code/__HELPERS/_auxtools_api.dm b/code/__HELPERS/_auxtools_api.dm
index 0117ded4c51..92782717d1a 100644
--- a/code/__HELPERS/_auxtools_api.dm
+++ b/code/__HELPERS/_auxtools_api.dm
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
#define AUXTOOLS_FULL_INIT 2
#define AUXTOOLS_PARTIAL_INIT 1
@@ -33,6 +34,8 @@ GLOBAL_PROTECT(auxtools_initialized)
GLOB.auxtools_initialized[LIB] = FALSE;\
}
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/proc/auxtools_stack_trace(msg)
CRASH(msg)
diff --git a/code/__HELPERS/_dreamluau.dm b/code/__HELPERS/_dreamluau.dm
index 196774d6a88..7915a6d14b6 100644
--- a/code/__HELPERS/_dreamluau.dm
+++ b/code/__HELPERS/_dreamluau.dm
@@ -1,8 +1,18 @@
/* This comment bypasses grep checks */ /var/__dreamluau
+<<<<<<< HEAD
#define DREAMLUAU (world.system_type == MS_WINDOWS ? "dreamluau.dll" : (__dreamluau || (__dreamluau = __detect_auxtools("dreamluau"))))
#define DREAMLUAU_CALL(func) call_ext(DREAMLUAU, "byond:[#func]")
+=======
+/* This comment also bypasses grep checks */ /var/__dreamluau_exists
+
+#define DREAMLUAU_EXISTS (__dreamluau_exists ||= fexists(DREAMLUAU))
+
+#define DREAMLUAU (world.system_type == MS_WINDOWS ? "dreamluau.dll" : (__dreamluau ||= __detect_auxtools("dreamluau")))
+
+#define DREAMLUAU_CALL(func) (!DREAMLUAU_EXISTS) ? null : call_ext(DREAMLUAU, "byond:[#func]")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* All of the following functions will return a string if the underlying rust code returns an error or a wrapped panic.
diff --git a/code/__HELPERS/_lists.dm b/code/__HELPERS/_lists.dm
index 157a17012a8..dc87b93372d 100644
--- a/code/__HELPERS/_lists.dm
+++ b/code/__HELPERS/_lists.dm
@@ -978,17 +978,32 @@
else
return element
+<<<<<<< HEAD
/// Returns a copy of the list where any element that is a datum or the world is converted into a ref
/proc/refify_list(list/target_list, list/visited, path_accumulator = "list")
if(!visited)
visited = list()
var/list/ret = list()
visited[target_list] = path_accumulator
+=======
+/**
+ * Intermediate step for preparing lists to be passed into the lua editor tgui.
+ * Resolves weakrefs, converts some values without a standard textual representation to text,
+ * and can handle self-referential lists and potential duplicate output keys.
+ */
+/proc/prepare_lua_editor_list(list/target_list, list/visited)
+ if(!visited)
+ visited = list()
+ var/list/ret = list()
+ visited[target_list] = ret
+ var/list/duplicate_keys = list()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/i in 1 to target_list.len)
var/key = target_list[i]
var/new_key = key
if(isweakref(key))
var/datum/weakref/ref = key
+<<<<<<< HEAD
var/resolved = ref.resolve()
if(resolved)
new_key = "[resolved] [REF(resolved)]"
@@ -1025,6 +1040,43 @@
var/list/to_add = list(new_key)
if(value)
to_add[new_key] = value
+=======
+ new_key = ref.resolve() || "null weakref"
+ else if(key == world)
+ new_key = world.name
+ else if(ref(key) == "\[0xe000001\]")
+ new_key = "global"
+ else if(islist(key))
+ if(visited[key])
+ new_key = visited[key]
+ else
+ new_key = prepare_lua_editor_list(key, visited)
+ var/value
+ if(!isnull(key) && !isnum(key))
+ value = target_list[key]
+ if(isweakref(value))
+ var/datum/weakref/ref = value
+ value = ref.resolve() || "null weakref"
+ if(value == world)
+ value = "world"
+ else if(ref(value) == "\[0xe000001\]")
+ value = "global"
+ else if(islist(value))
+ if(visited[value])
+ value = visited[value]
+ else
+ value = prepare_lua_editor_list(value, visited)
+ var/list/to_add = list()
+ if(!isnull(value))
+ var/final_key = new_key
+ while(duplicate_keys[final_key])
+ duplicate_keys[new_key]++
+ final_key = "[new_key] ([duplicate_keys[new_key]])"
+ duplicate_keys[final_key] = 1
+ to_add[final_key] = value
+ else
+ to_add += list(new_key)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ret += to_add
if(i < target_list.len)
CHECK_TICK
@@ -1033,16 +1085,28 @@
/**
* Converts a list into a list of assoc lists of the form ("key" = key, "value" = value)
* so that list keys that are themselves lists can be fully json-encoded
+<<<<<<< HEAD
*/
/proc/kvpify_list(list/target_list, depth = INFINITY, list/visited, path_accumulator = "list")
if(!visited)
visited = list()
var/list/ret = list()
visited[target_list] = path_accumulator
+=======
+ * and that unique objects with the same string representation do not
+ * produce duplicate keys that are clobbered by the standard JavaScript JSON.parse function
+ */
+/proc/kvpify_list(list/target_list, depth = INFINITY, list/visited)
+ if(!visited)
+ visited = list()
+ var/list/ret = list()
+ visited[target_list] = ret
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/i in 1 to target_list.len)
var/key = target_list[i]
var/new_key = key
if(islist(key) && depth)
+<<<<<<< HEAD
if(visited.Find(key))
new_key = visited[key]
else
@@ -1056,6 +1120,21 @@
else
value = kvpify_list(value, depth-1, visited, path_accumulator + "\[[key]\]")
if(value)
+=======
+ if(visited[key])
+ new_key = visited[key]
+ else
+ new_key = kvpify_list(key, depth-1, visited)
+ var/value
+ if(!isnull(key) && !isnum(key))
+ value = target_list[key]
+ if(islist(value) && depth)
+ if(visited[value])
+ value = visited[value]
+ else
+ value = kvpify_list(value, depth-1, visited)
+ if(!isnull(value))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ret += list(list("key" = new_key, "value" = value))
else
ret += list(list("key" = i, "value" = new_key))
@@ -1065,12 +1144,21 @@
/// Compares 2 lists, returns TRUE if they are the same
/proc/deep_compare_list(list/list_1, list/list_2)
+<<<<<<< HEAD
if(!islist(list_1) || !islist(list_2))
return FALSE
if(list_1 == list_2)
return TRUE
+=======
+ if(list_1 == list_2)
+ return TRUE
+
+ if(!islist(list_1) || !islist(list_2))
+ return FALSE
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(list_1.len != list_2.len)
return FALSE
@@ -1093,11 +1181,19 @@
return TRUE
/// Returns a copy of the list where any element that is a datum is converted into a weakref
+<<<<<<< HEAD
/proc/weakrefify_list(list/target_list, list/visited, path_accumulator = "list")
if(!visited)
visited = list()
var/list/ret = list()
visited[target_list] = path_accumulator
+=======
+/proc/weakrefify_list(list/target_list, list/visited)
+ if(!visited)
+ visited = list()
+ var/list/ret = list()
+ visited[target_list] = ret
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/i in 1 to target_list.len)
var/key = target_list[i]
var/new_key = key
@@ -1107,13 +1203,20 @@
if(visited.Find(key))
new_key = visited[key]
else
+<<<<<<< HEAD
new_key = weakrefify_list(key, visited, path_accumulator + "\[[i]\]")
var/value
if(istext(key) || islist(key) || ispath(key) || isdatum(key) || key == world)
+=======
+ new_key = weakrefify_list(key, visited)
+ var/value
+ if(!isnull(key) && !isnum(key))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
value = target_list[key]
if(isdatum(value))
value = WEAKREF(value)
else if(islist(value))
+<<<<<<< HEAD
if(visited.Find(value))
value = visited[value]
else
@@ -1163,6 +1266,14 @@
value = encode_text_and_nulls(value, visited)
var/list/to_add = list(new_key)
if(value)
+=======
+ if(visited[value])
+ value = visited[value]
+ else
+ value = weakrefify_list(value, visited)
+ var/list/to_add = list(new_key)
+ if(!isnull(value))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_add[new_key] = value
ret += to_add
if(i < target_list.len)
@@ -1188,3 +1299,158 @@
if("x" in coords)
return locate(coords["x"], coords["y"], coords["z"])
return locate(coords[1], coords[2], coords[3])
+<<<<<<< HEAD
+=======
+
+/**
+ * Given a list and a list of its variant hints, appends variants that aren't explicitly required by dreamluau,
+ * but are required by the lua editor tgui.
+ */
+/proc/add_lua_editor_variants(list/values, list/variants, list/visited, path = "")
+ if(!islist(visited))
+ visited = list()
+ visited[values] = "\[\]"
+ if(!islist(values) || !islist(variants))
+ return
+ if(values.len != variants.len)
+ CRASH("values and variants must be the same length")
+ for(var/i in 1 to variants.len)
+ var/pair = variants[i]
+ var/pair_modified = FALSE
+ if(isnull(pair))
+ pair = list("key", "value")
+ var/key = values[i]
+ if(islist(key))
+ if(visited[key])
+ pair["key"] = list("cycle", visited[key])
+ else
+ var/list/key_variants = pair["key"]
+ var/new_path = path + "\[[i], \"key\"\],"
+ visited[key] = new_path
+ add_lua_editor_variants(key, key_variants, visited, new_path)
+ visited -= key
+ pair["key"] = list("list", key_variants)
+ pair_modified = TRUE
+ else if(isdatum(key) || key == world || ref(key) == "\[0xe000001\]")
+ pair["key"] = list("ref", ref(key))
+ pair_modified = TRUE
+ var/value
+ if(!isnull(key) && !isnum(key))
+ value = values[key]
+ if(islist(value))
+ if(visited[value])
+ pair["value"] = list("cycle", visited[value])
+ else
+ var/list/value_variants = pair["value"]
+ var/new_path = path + "\[[i], \"value\"\],"
+ visited[value] = new_path
+ add_lua_editor_variants(value, value_variants, visited, new_path)
+ visited -= value
+ pair["value"] = list("list", value_variants)
+ pair_modified = TRUE
+ else if(isdatum(value) || value == world || ref(value) == "\[0xe000001\]")
+ pair["value"] = list("ref", ref(value))
+ pair_modified = TRUE
+ if(pair_modified && pair != variants[i])
+ variants[i] = pair
+ if(i < variants.len)
+ CHECK_TICK
+
+/proc/add_lua_return_value_variants(list/values, list/variants)
+ if(!islist(values) || !islist(variants))
+ return
+ if(values.len != variants.len)
+ CRASH("values and variants must be the same length")
+ for(var/i in 1 to values.len)
+ var/value = values[i]
+ if(islist(value))
+ add_lua_editor_variants(value, variants[i])
+ else if(isdatum(value) || value == world || ref(value) == "\[0xe000001\]")
+ variants[i] = list("ref", ref(value))
+
+/proc/deep_copy_without_cycles(list/values, list/visited)
+ if(!islist(visited))
+ visited = list()
+ if(!islist(values))
+ return values
+ var/list/ret = list()
+ var/cycle_count = 0
+ visited[values] = TRUE
+ for(var/i in 1 to values.len)
+ var/key = values[i]
+ var/out_key = key
+ if(islist(key))
+ if(visited[key])
+ do
+ out_key = "\[cyclical reference[cycle_count ? " (i)" : ""]\]"
+ cycle_count++
+ while(values.Find(out_key))
+ else
+ visited[key] = TRUE
+ out_key = deep_copy_without_cycles(key, visited)
+ visited -= key
+ var/value
+ if(!isnull(key) && !isnum(key))
+ value = values[key]
+ var/out_value = value
+ if(islist(value))
+ if(visited[value])
+ out_value = "\[cyclical reference\]"
+ else
+ visited[value] = TRUE
+ out_value = deep_copy_without_cycles(value, visited)
+ visited -= value
+ var/list/to_add = list(out_key)
+ if(!isnull(out_value))
+ to_add[out_key] = out_value
+ ret += to_add
+ if(i < values.len)
+ CHECK_TICK
+ return ret
+
+/**
+ * Given a list and a list of its variant hints, removes any list key/values that are represent lua values that could not be directly converted to DM.
+ */
+/proc/remove_non_dm_variants(list/return_values, list/variants, list/visited)
+ if(!islist(visited))
+ visited = list()
+ if(!islist(return_values) || !islist(variants) || visited[return_values])
+ return
+ visited[return_values] = TRUE
+ if(return_values.len != variants.len)
+ CRASH("return_values and variants must be the same length")
+ for(var/i in 1 to variants.len)
+ var/pair = variants[i]
+ if(!islist(variants))
+ continue
+ var/key = return_values[i]
+ if(pair["key"])
+ if(!islist(pair["key"]))
+ return_values[i] = null
+ continue
+ remove_non_dm_variants(key, pair["key"], visited)
+ if(pair["value"])
+ if(!islist(pair["value"]))
+ return_values[key] = null
+ continue
+ remove_non_dm_variants(return_values[key], pair["value"], visited)
+
+/proc/compare_lua_logs(list/log_1, list/log_2)
+ if(log_1 == log_2)
+ return TRUE
+ for(var/field in list("status", "name", "message", "chunk"))
+ if(log_1[field] != log_2[field])
+ return FALSE
+ switch(log_1["status"])
+ if("finished", "yield")
+ return deep_compare_list(
+ recursive_list_resolve(log_1["return_values"]),
+ recursive_list_resolve(log_2["return_values"])
+ ) && deep_compare_list(log_1["variants"], log_2["variants"])
+ if("runtime")
+ return log_1["file"] == log_2["file"]\
+ && log_1["line"] == log_2["line"]\
+ && deep_compare_list(log_1["stack"], log_2["stack"])
+ else
+ return TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__HELPERS/atmospherics.dm b/code/__HELPERS/atmospherics.dm
index 2a59cf60b40..1e5fcb788a1 100644
--- a/code/__HELPERS/atmospherics.dm
+++ b/code/__HELPERS/atmospherics.dm
@@ -105,13 +105,21 @@ GLOBAL_LIST_EMPTY(gas_handbook)
factor_info["factor_name"] = factor
factor_info["factor_type"] = "misc"
if(factor == "Temperature" || factor == "Pressure")
+<<<<<<< HEAD
factor_info["tooltip"] = "Reaction is influenced by the [LOWER_TEXT(factor)] of the place where the reaction is occuring."
+=======
+ factor_info["tooltip"] = "Reaction is influenced by the [LOWER_TEXT(factor)] of the place where the reaction is occurring."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if(factor == "Energy")
factor_info["tooltip"] = "Energy released by the reaction, may or may not result in linear temperature change depending on a slew of other factors."
else if(factor == "Radiation")
factor_info["tooltip"] = "This reaction emits dangerous radiation! Take precautions."
else if (factor == "Location")
+<<<<<<< HEAD
factor_info["tooltip"] = "This reaction has special behaviour when occuring in specific locations."
+=======
+ factor_info["tooltip"] = "This reaction has special behaviour when occurring in specific locations."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if(factor == "Hot Ice")
factor_info["tooltip"] = "Hot ice are solidified stacks of plasma. Ignition of one will result in a raging fire."
reaction_info["factors"] += list(factor_info)
@@ -138,13 +146,21 @@ GLOBAL_LIST_EMPTY(gas_handbook)
factor_info["factor_name"] = factor
factor_info["factor_type"] = "misc"
if(factor == "Temperature" || factor == "Pressure")
+<<<<<<< HEAD
factor_info["tooltip"] = "Reaction is influenced by the [LOWER_TEXT(factor)] of the place where the reaction is occuring."
+=======
+ factor_info["tooltip"] = "Reaction is influenced by the [LOWER_TEXT(factor)] of the place where the reaction is occurring."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if(factor == "Energy")
factor_info["tooltip"] = "Energy released by the reaction, may or may not result in linear temperature change depending on a slew of other factors."
else if(factor == "Radiation")
factor_info["tooltip"] = "This reaction emits dangerous radiation! Take precautions."
else if (factor == "Location")
+<<<<<<< HEAD
factor_info["tooltip"] = "This reaction has special behaviour when occuring in specific locations."
+=======
+ factor_info["tooltip"] = "This reaction has special behaviour when occurring in specific locations."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
reaction_info["factors"] += list(factor_info)
GLOB.reaction_handbook += list(reaction_info)
qdel(reaction)
diff --git a/code/__HELPERS/atoms.dm b/code/__HELPERS/atoms.dm
index 7106ec81be1..05ab5278e9e 100644
--- a/code/__HELPERS/atoms.dm
+++ b/code/__HELPERS/atoms.dm
@@ -63,6 +63,7 @@
var/turf/target_turf = get_turf(target)
if(get_dist(source, target) > length)
return FALSE
+<<<<<<< HEAD
var/steps = 1
if(current == target_turf)//they are on the same turf, source can see the target
return TRUE
@@ -74,6 +75,19 @@
return FALSE
current = get_step_towards(current, target_turf)
steps++
+=======
+ if(current == target_turf)//they are on the same turf, source can see the target
+ return TRUE
+ var/list/steps = get_steps_to(current, target_turf)
+ if(isnull(steps) || length(steps) > length)
+ return FALSE
+ for(var/direction in steps)
+ current = get_step(current, direction)
+ if(current == target_turf)
+ break
+ if(IS_OPAQUE_TURF(current))
+ return FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
///Get the cardinal direction between two atoms
diff --git a/code/__HELPERS/construction.dm b/code/__HELPERS/construction.dm
index f7b0ece13f8..6d3da7d033c 100644
--- a/code/__HELPERS/construction.dm
+++ b/code/__HELPERS/construction.dm
@@ -61,7 +61,11 @@
. = new target.type(target.drop_location(), amount, FALSE, target.mats_per_unit)
/**
+<<<<<<< HEAD
* divides a list of materials uniformly among all contents of the target_object reccursively
+=======
+ * divides a list of materials uniformly among all contents of the target_object recursively
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Used to set materials of printed items with their design cost by taking into consideration their already existing materials
* e.g. if 12 iron is to be divided uniformly among 2 objects A, B who's current iron contents are 3 & 7
* Then first we normalize those values i.e. find their weights to decide who gets an higher share of iron
@@ -81,7 +85,11 @@
target_object.set_custom_materials(custom_materials, multiplier)
return
+<<<<<<< HEAD
//Step 1: Get reccursive contents of all objects, only filter obj cause that what's material container accepts
+=======
+ //Step 1: Get recursive contents of all objects, only filter obj cause that what's material container accepts
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/reccursive_contents = target_object.get_all_contents_type(/obj/item)
//Step 2: find the sum of each material type per object and record their amounts into an 2D list
diff --git a/code/__HELPERS/dna.dm b/code/__HELPERS/dna.dm
index 17fd7e21b8e..c8af5840069 100644
--- a/code/__HELPERS/dna.dm
+++ b/code/__HELPERS/dna.dm
@@ -15,4 +15,8 @@
///Getter macro used to get the length of a identity block
#define GET_UI_BLOCK_LEN(blocknum) (GLOB.identity_block_lengths["[blocknum]"] || DNA_BLOCK_SIZE)
///Ditto, but for a feature.
+<<<<<<< HEAD
#define GET_UF_BLOCK_LEN(blocknum) (SSaccessories.features_block_lengths["[blocknum]"] || DNA_BLOCK_SIZE) //SKYRAT CHANGE EDIT - Customization ORIGINAL: #define GET_UF_BLOCK_LEN(blocknum) (GLOB.features_block_lengths["[blocknum]"] || DNA_BLOCK_SIZE)
+=======
+#define GET_UF_BLOCK_LEN(blocknum) (GLOB.features_block_lengths["[blocknum]"] || DNA_BLOCK_SIZE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/__HELPERS/duplicating.dm b/code/__HELPERS/duplicating.dm
index 225dca91fb5..f7367a9aa09 100644
--- a/code/__HELPERS/duplicating.dm
+++ b/code/__HELPERS/duplicating.dm
@@ -15,8 +15,11 @@ GLOBAL_LIST_INIT(duplicate_forbidden_vars, list(
"contents",
"cooldowns",
"_datum_components",
+<<<<<<< HEAD
"external_organs",
"external_organs_slot",
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"group",
"hand_bodyparts",
"held_items",
diff --git a/code/__HELPERS/dynamic_human_icon_gen.dm b/code/__HELPERS/dynamic_human_icon_gen.dm
index eb6d53517df..a5755fba51c 100644
--- a/code/__HELPERS/dynamic_human_icon_gen.dm
+++ b/code/__HELPERS/dynamic_human_icon_gen.dm
@@ -17,7 +17,10 @@ GLOBAL_LIST_EMPTY(dynamic_human_appearances)
dummy.underwear = "Nude"
dummy.undershirt = "Nude"
dummy.socks = "Nude"
+<<<<<<< HEAD
dummy.bra = "Nude" // SKYRAT EDIT ADDITION - Underwear and bra split
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(outfit_path)
var/datum/outfit/outfit = new outfit_path()
if(r_hand != NO_REPLACE) //we can still override to be null, no replace means just use outfit's
diff --git a/code/__HELPERS/files.dm b/code/__HELPERS/files.dm
index 1cdf2efa896..e2bced4b7ff 100644
--- a/code/__HELPERS/files.dm
+++ b/code/__HELPERS/files.dm
@@ -33,8 +33,11 @@ GLOBAL_VAR_INIT(fileaccess_timer, 0)
var/confirmation = input(src, "Are you SURE you want to download all the files in this folder? (This will open [length(comp_flist)] prompt[length(comp_flist) == 1 ? "" : "s"])", "Confirmation") in list("Yes", "No")
if(confirmation != "Yes")
continue
+<<<<<<< HEAD
log_admin("[key_name(src)] is downloading [length(comp_flist)] files from [path]") // SKYRAT EDIT -- ADDITION
message_admins("Admin [key_name_admin(src)] is downloading [length(comp_flist)] files from [path]") // SKYRAT EDIT -- ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/file in comp_flist)
src << ftp(path + file)
return
diff --git a/code/__HELPERS/global_lists.dm b/code/__HELPERS/global_lists.dm
index 461adc9bc0a..c0dfc33e113 100644
--- a/code/__HELPERS/global_lists.dm
+++ b/code/__HELPERS/global_lists.dm
@@ -1,3 +1,10 @@
+<<<<<<< HEAD
+=======
+//////////////////////////
+/////Initial Building/////
+//////////////////////////
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Inits GLOB.surgeries
/proc/init_surgeries()
var/surgeries = list()
@@ -10,9 +17,13 @@
/proc/make_datum_reference_lists()
// I tried to eliminate this proc but I couldn't untangle their init-order interdependencies -Dominion/Cyberboss
init_keybindings()
+<<<<<<< HEAD
make_skyrat_datum_references() //SKYRAT EDIT ADDITION - CUSTOMIZATION
GLOB.emote_list = init_emote_list() // WHY DOES THIS NEED TO GO HERE? IT JUST INITS DATUMS
init_skyrat_stack_recipes() //SKYRAT EDIT ADDITION - More sheet recipes
+=======
+ GLOB.emote_list = init_emote_list() // WHY DOES THIS NEED TO GO HERE? IT JUST INITS DATUMS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
init_crafting_recipes()
init_crafting_recipes_atoms()
@@ -22,7 +33,11 @@
if(ispath(path, /datum/crafting_recipe/stack))
continue
var/datum/crafting_recipe/recipe = new path()
+<<<<<<< HEAD
var/is_cooking = ((recipe.category in GLOB.crafting_category_food) || (recipe.category in GLOB.crafting_category_food_skyrat)) // SKYRAT EDIT CHANGE - ORIGINAL: var/is_cooking = (recipe.category in GLOB.crafting_category_food)
+=======
+ var/is_cooking = (recipe.category in GLOB.crafting_category_food)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
recipe.reqs = sort_list(recipe.reqs, GLOBAL_PROC_REF(cmp_crafting_req_priority))
if(recipe.name != "" && recipe.result)
if(is_cooking)
@@ -184,7 +199,10 @@ GLOBAL_LIST_INIT(WALLITEMS_INTERIOR, typecacheof(list(
/obj/machinery/status_display,
/obj/machinery/ticket_machine,
/obj/machinery/turretid,
+<<<<<<< HEAD
/obj/machinery/time_clock, //SKYRAT EDIT TIME CLOCK
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/barsign,
/obj/structure/extinguisher_cabinet,
/obj/structure/fireaxecabinet,
diff --git a/code/__HELPERS/heap.dm b/code/__HELPERS/heap.dm
index eeabfa6a20b..308dc5e2d27 100644
--- a/code/__HELPERS/heap.dm
+++ b/code/__HELPERS/heap.dm
@@ -26,7 +26,11 @@
swim(length(L))
//removes and returns the first element of the heap
+<<<<<<< HEAD
//(i.e the max or the min dependant on the comparison function)
+=======
+//(i.e the max or the min dependent on the comparison function)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/heap/proc/pop()
if(!length(L))
return 0
diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm
index 132a6b26eb5..14b012170bd 100644
--- a/code/__HELPERS/icons.dm
+++ b/code/__HELPERS/icons.dm
@@ -272,7 +272,11 @@ world
Blend(mask_icon, ICON_ADD)
/// Converts an rgb color into a list storing hsva
+<<<<<<< HEAD
/// Exists because it's useful to have a guarenteed alpha value
+=======
+/// Exists because it's useful to have a guaranteed alpha value
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/proc/rgb2hsv(rgb)
var/list/hsv = rgb2num(rgb, COLORSPACE_HSV)
if(length(hsv) < 4)
@@ -766,7 +770,11 @@ GLOBAL_LIST_EMPTY(friendly_animal_types)
if(job)
body.dna.species.pre_equip_species_outfit(job, body, TRUE)
if(outfit)
+<<<<<<< HEAD
body.equip_outfit_and_loadout(outfit, prefs, TRUE) //SKYRAT EDIT CHANGE
+=======
+ body.equipOutfit(outfit, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/icon/out_icon = icon('icons/effects/effects.dmi', "nothing")
for(var/direction in showDirs)
@@ -815,11 +823,19 @@ GLOBAL_LIST_EMPTY(friendly_animal_types)
/// generates a filename for a given asset.
/// like generate_asset_name(), except returns the rsc reference and the rsc file hash as well as the asset name (sans extension)
+<<<<<<< HEAD
/// used so that certain asset files dont have to be hashed twice
/proc/generate_and_hash_rsc_file(file, dmi_file_path)
var/rsc_ref = fcopy_rsc(file)
var/hash
//if we have a valid dmi file path we can trust md5'ing the rsc file because we know it doesnt have the bug described in http://www.byond.com/forum/post/2611357
+=======
+/// used so that certain asset files don't have to be hashed twice
+/proc/generate_and_hash_rsc_file(file, dmi_file_path)
+ var/rsc_ref = fcopy_rsc(file)
+ var/hash
+ //if we have a valid dmi file path we can trust md5'ing the rsc file because we know it doesn't have the bug described in http://www.byond.com/forum/post/2611357
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(dmi_file_path)
hash = md5(rsc_ref)
else //otherwise, we need to do the expensive fcopy() workaround
@@ -845,7 +861,11 @@ GLOBAL_LIST_EMPTY(friendly_animal_types)
fdel(savefile_path)
return new /savefile(savefile_path)
catch(var/exception/error)
+<<<<<<< HEAD
// if we failed to create a dummy once, try again; maybe someone slept somewhere they shouldnt have
+=======
+ // if we failed to create a dummy once, try again; maybe someone slept somewhere they shouldn't have
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(from_failure) // this *is* the retry, something fucked up
CRASH("get_dummy_savefile failed to create a dummy savefile: '[error]'")
return get_dummy_savefile(from_failure = TRUE)
@@ -890,18 +910,30 @@ GLOBAL_LIST_EMPTY(friendly_animal_types)
var/atom/atom_icon = icon
icon = atom_icon.icon
//atom icons compiled in from 'icons/path/to/dmi_file.dmi' are weird and not really icon objects that you generate with icon().
+<<<<<<< HEAD
//if theyre unchanged dmi's then they're stringifiable to "icons/path/to/dmi_file.dmi"
if(isicon(icon) && isfile(icon))
//icons compiled in from 'icons/path/to/dmi_file.dmi' at compile time are weird and arent really /icon objects,
///but they pass both isicon() and isfile() checks. theyre the easiest case since stringifying them gives us the path we want
+=======
+ //if they're unchanged dmi's then they're stringifiable to "icons/path/to/dmi_file.dmi"
+
+ if(isicon(icon) && isfile(icon))
+ //icons compiled in from 'icons/path/to/dmi_file.dmi' at compile time are weird and aren't really /icon objects,
+ ///but they pass both isicon() and isfile() checks. they're the easiest case since stringifying them gives us the path we want
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/icon_ref = text_ref(icon)
var/locate_icon_string = "[locate(icon_ref)]"
icon_path = locate_icon_string
else if(isicon(icon) && "[icon]" == "/icon")
+<<<<<<< HEAD
// icon objects generated from icon() at runtime are icons, but they ARENT files themselves, they represent icon files.
+=======
+ // icon objects generated from icon() at runtime are icons, but they AREN'T files themselves, they represent icon files.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// if the files they represent are compile time dmi files in the rsc, then
// the rsc reference returned by fcopy_rsc() will be stringifiable to "icons/path/to/dmi_file.dmi"
var/rsc_ref = fcopy_rsc(icon)
@@ -960,7 +992,11 @@ GLOBAL_LIST_EMPTY(friendly_animal_types)
if(!length(targets))
return
+<<<<<<< HEAD
//check if the given object is associated with a dmi file in the icons folder. if it is then we dont need to do a lot of work
+=======
+ //check if the given object is associated with a dmi file in the icons folder. if it is then we don't need to do a lot of work
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//for asset generation to get around byond limitations
var/icon_path = get_icon_dmi_path(thing)
@@ -1004,7 +1040,11 @@ GLOBAL_LIST_EMPTY(friendly_animal_types)
var/list/name_and_ref = generate_and_hash_rsc_file(icon2collapse, icon_path)//pretend that tuples exist
+<<<<<<< HEAD
var/rsc_ref = name_and_ref[1] //weird object thats not even readable to the debugger, represents a reference to the icons rsc entry
+=======
+ var/rsc_ref = name_and_ref[1] //weird object that's not even readable to the debugger, represents a reference to the icons rsc entry
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/file_hash = name_and_ref[2]
key = "[name_and_ref[3]].png"
diff --git a/code/__HELPERS/levels.dm b/code/__HELPERS/levels.dm
index 096655ad748..6e1aaa336e7 100644
--- a/code/__HELPERS/levels.dm
+++ b/code/__HELPERS/levels.dm
@@ -56,5 +56,9 @@
// Syndicate recon outpost is on some moon or something
return TRUE
+<<<<<<< HEAD
// Finally, more specific checks are ran for edge cases, such as lazyily loaded map templates or away missions. Not perfect.
+=======
+ // Finally, more specific checks are ran for edge cases, such as lazily loaded map templates or away missions. Not perfect.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return istype(what_turf) && what_turf.planetary_atmos && what_turf.has_gravity()
diff --git a/code/__HELPERS/logging/_logging.dm b/code/__HELPERS/logging/_logging.dm
index 12487a5c240..b3abc019531 100644
--- a/code/__HELPERS/logging/_logging.dm
+++ b/code/__HELPERS/logging/_logging.dm
@@ -99,6 +99,7 @@ GLOBAL_LIST_INIT(testing_global_profiler, list("_PROFILE_NAME" = "Global"))
if(!log_globally)
return
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
#ifndef SPACEMAN_DMM
if(CONFIG_GET(flag/sql_game_log) && CONFIG_GET(flag/sql_enabled))
@@ -117,6 +118,8 @@ GLOBAL_LIST_INIT(testing_global_profiler, list("_PROFILE_NAME" = "Global"))
return
#endif
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/log_text = "[key_name_and_tag(src)] [message] [loc_name(src)]"
switch(message_type)
/// ship both attack logs and victim logs to the end of round attack.log just to ensure we don't lose information
@@ -128,12 +131,15 @@ GLOBAL_LIST_INIT(testing_global_profiler, list("_PROFILE_NAME" = "Global"))
log_whisper(log_text, data)
if(LOG_EMOTE)
log_emote(log_text, data)
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
if(LOG_SUBTLE)
log_subtle(log_text, data)
if(LOG_SUBTLER)
log_subtler(log_text, data)
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(LOG_RADIO_EMOTE)
log_radio_emote(log_text, data)
if(LOG_DSAY)
diff --git a/code/__HELPERS/logging/mob.dm b/code/__HELPERS/logging/mob.dm
index 9b8f3c0a831..b2377623e22 100644
--- a/code/__HELPERS/logging/mob.dm
+++ b/code/__HELPERS/logging/mob.dm
@@ -1,5 +1,9 @@
/**
+<<<<<<< HEAD
* Logs a mesage to the mob_tags log, including the mobs tag
+=======
+ * Logs a message to the mob_tags log, including the mobs tag
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Arguments:
* * text - text to log.
*/
@@ -44,12 +48,15 @@
colored_message = "(ASAY) [colored_message]"
if(LOG_EMOTE)
colored_message = "(EMOTE) [colored_message]"
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
if(LOG_SUBTLE)
colored_message = "(EMOTE) (SUBTLE) [colored_message]"
if(LOG_SUBTLER)
colored_message = "(EMOTE) (SUBTLER) [colored_message]"
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(LOG_RADIO_EMOTE)
colored_message = "(RADIOEMOTE) [colored_message]"
diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm
index 95af398d416..b2bec972ddc 100644
--- a/code/__HELPERS/mobs.dm
+++ b/code/__HELPERS/mobs.dm
@@ -72,6 +72,7 @@
/proc/random_backpack()
return pick(GLOB.backpacklist)
+<<<<<<< HEAD
// SKYRAT EDIT REMOVAL - CUSTOMIZATION (moved to modular)
/*
/proc/random_features()
@@ -130,6 +131,8 @@
*/
//SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/proc/random_hairstyle(gender)
switch(gender)
if(MALE)
@@ -592,8 +595,13 @@ GLOBAL_LIST_INIT(skin_tone_names, list(
* When passed the difference between two temperatures returns the amount of change to temperature to apply.
* The change rate should be kept at a low value tween 0.16 and 0.02 for optimal results.
* vars:
+<<<<<<< HEAD
* * temp_diff (required) The differance between two temperatures
* * change_rate (optional)(Default: 0.06) The rate of range multiplyer
+=======
+ * * temp_diff (required) The difference between two temperatures
+ * * change_rate (optional)(Default: 0.06) The rate of range multiplier
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*/
/proc/get_temp_change_amount(temp_diff, change_rate = 0.06)
if(temp_diff < 0)
@@ -637,11 +645,16 @@ GLOBAL_LIST_INIT(skin_tone_names, list(
// We've already added slimes.
if(isslime(mob_to_sort))
continue
+<<<<<<< HEAD
// SKYRAT EDIT START - SOULCATCHERS
for(var/mob/living/soulcatcher_soul/mob_to_sort in sortmob)
moblist += mob_to_sort
// SKYRAT EDIT END - SOULCATCHERS
return moblist
+=======
+ return moblist
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///returns a mob type controlled by a specified ckey
/proc/get_mob_by_ckey(key)
if(!key)
@@ -746,6 +759,11 @@ GLOBAL_LIST_INIT(skin_tone_names, list(
slot_strings += "dextrous storage"
if(slot_flags & ITEM_SLOT_BACKPACK)
slot_strings += "backpack"
+<<<<<<< HEAD
+=======
+ if(slot_flags & ITEM_SLOT_BELTPACK)
+ slot_strings += "belt" // ?
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return slot_strings
///Returns the direction that the initiator and the target are facing
diff --git a/code/__HELPERS/paths/path.dm b/code/__HELPERS/paths/path.dm
index 189120b76c3..863bafa4f0a 100644
--- a/code/__HELPERS/paths/path.dm
+++ b/code/__HELPERS/paths/path.dm
@@ -16,7 +16,11 @@
*/
/proc/get_path_to(atom/movable/caller, atom/end, max_distance = 30, mintargetdist, access=list(), simulated_only = TRUE, turf/exclude, skip_first=TRUE, diagonal_handling=DIAGONAL_REMOVE_CLUNKY)
var/list/hand_around = list()
+<<<<<<< HEAD
// We're guarenteed that list will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+=======
+ // We're guaranteed that list will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/callback/await = list(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(pathfinding_finished), hand_around))
if(!SSpathfinder.pathfind(caller, end, max_distance, mintargetdist, access, simulated_only, exclude, skip_first, diagonal_handling, await))
return list()
@@ -49,7 +53,11 @@
*/
/proc/get_swarm_path_to(atom/movable/caller, atom/end, max_distance = 30, mintargetdist, age = MAP_REUSE_INSTANT, access = list(), simulated_only = TRUE, turf/exclude, skip_first=TRUE)
var/list/hand_around = list()
+<<<<<<< HEAD
// We're guarenteed that list will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+=======
+ // We're guaranteed that list will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/callback/await = list(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(pathfinding_finished), hand_around))
if(!SSpathfinder.swarmed_pathfind(caller, end, max_distance, mintargetdist, age, access, simulated_only, exclude, skip_first, await))
return list()
@@ -62,7 +70,11 @@
/proc/get_sssp(atom/movable/caller, max_distance = 30, access = list(), simulated_only = TRUE, turf/exclude)
var/list/hand_around = list()
+<<<<<<< HEAD
// We're guarenteed that list will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+=======
+ // We're guaranteed that list will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/callback/await = list(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(pathfinding_finished), hand_around))
if(!SSpathfinder.build_map(caller, get_turf(caller), max_distance, access, simulated_only, exclude, await))
return null
@@ -335,7 +347,11 @@
src.has_gravity = construct_from.has_gravity()
if(ismob(construct_from))
var/mob/living/mob_construct = construct_from
+<<<<<<< HEAD
src.incapacitated = mob_construct.incapacitated()
+=======
+ src.incapacitated = mob_construct.incapacitated
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(mob_construct.buckled)
src.buckled_info = new(mob_construct.buckled, access, no_id, call_depth + 1)
if(isobserver(construct_from))
diff --git a/code/__HELPERS/paths/sssp.dm b/code/__HELPERS/paths/sssp.dm
index f735c664694..752138264a9 100644
--- a/code/__HELPERS/paths/sssp.dm
+++ b/code/__HELPERS/paths/sssp.dm
@@ -130,7 +130,11 @@
/// Returns a new /datum/pathfind/sssp based off our settings
/// Will have an invalid source mob, no max distance, and no ending callback
/datum/path_map/proc/settings_to_path()
+<<<<<<< HEAD
// Default creation to not set any vars incidentially
+=======
+ // Default creation to not set any vars incidentally
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/static/mob/jeremy = new()
var/datum/pathfind/sssp/based_on_what = new()
based_on_what.setup(pass_info, null, INFINITY, pass_space, avoid)
@@ -155,7 +159,11 @@
working_index -= 1
var/list/hand_around = list()
+<<<<<<< HEAD
// We're guarenteed that hand_around will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+=======
+ // We're guaranteed that hand_around will be the first list in pathfinding_finished's argset because of how callback handles the arguments list
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/callback/await = CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(pathfinding_finished), hand_around)
// We're gonna build a pathfind datum from our settings and set it running
diff --git a/code/__HELPERS/priority_announce.dm b/code/__HELPERS/priority_announce.dm
index b9964b9be93..955881c2584 100644
--- a/code/__HELPERS/priority_announce.dm
+++ b/code/__HELPERS/priority_announce.dm
@@ -142,7 +142,11 @@
else
finalized_announcement = CHAT_ALERT_DEFAULT_SPAN(jointext(minor_announcement_strings, ""))
+<<<<<<< HEAD
var/custom_sound = sound_override || (alert ? 'modular_skyrat/modules/alerts/sound/alerts/alert1.ogg' : 'sound/misc/notice2.ogg') // SKYRAT EDIT CHANGE - CUSTOM ANNOUNCEMENTS - Original: 'sound/misc/notice1.ogg'
+=======
+ var/custom_sound = sound_override || (alert ? 'sound/misc/notice1.ogg' : 'sound/misc/notice2.ogg')
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dispatch_announcement_to_players(finalized_announcement, players, custom_sound, should_play_sound)
/// Sends an announcement about the level changing to players. Uses the passed in datum and the subsystem's previous security level to generate the message.
@@ -186,9 +190,12 @@
/// Proc that just dispatches the announcement to our applicable audience. Only the announcement is a mandatory arg.
/proc/dispatch_announcement_to_players(announcement, list/players = GLOB.player_list, sound_override = null, should_play_sound = TRUE)
+<<<<<<< HEAD
// SKYRAT EDIT CHANGE BEGIN - CUSTOM ANNOUNCEMENTS
/* Original:
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/sound_to_play = !isnull(sound_override) ? sound_override : 'sound/misc/notice2.ogg'
for(var/mob/target in players)
@@ -201,6 +208,7 @@
if(target.client?.prefs.read_preference(/datum/preference/toggle/sound_announcements))
SEND_SOUND(target, sound(sound_to_play))
+<<<<<<< HEAD
*/
if(!sound_override)
sound_override = SSstation.announcer.get_rand_alert_sound()
@@ -220,6 +228,8 @@
to_chat(target, announcement)
// SKYRAT EDIT CHANGE END - CUSTOM ANNOUNCEMENTS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#undef MAJOR_ANNOUNCEMENT_TITLE
#undef MAJOR_ANNOUNCEMENT_TEXT
diff --git a/code/__HELPERS/reagents.dm b/code/__HELPERS/reagents.dm
index cb87e21cefa..a3f460fd098 100644
--- a/code/__HELPERS/reagents.dm
+++ b/code/__HELPERS/reagents.dm
@@ -180,6 +180,7 @@
else
return null
+<<<<<<< HEAD
///Returns a random reagent object minus blacklisted reagents
/proc/get_random_reagent_id()
var/static/list/random_reagents = list()
@@ -188,6 +189,25 @@
if(initial(reagent_path.chemical_flags) & REAGENT_CAN_BE_SYNTHESIZED)
random_reagents += reagent_path
var/picked_reagent = pick(random_reagents)
+=======
+///Returns a random reagent object, with the option to blacklist reagents.
+/proc/get_random_reagent_id(list/blacklist)
+ var/static/list/reagent_static_list = list() //This is static, and will be used by default if a blacklist is not passed.
+ var/list/reagent_list_to_process
+ if(blacklist) //If we do have a blacklist, we recompile a new list with the excluded reagents not present and pick from there.
+ reagent_list_to_process = list()
+ else
+ reagent_list_to_process = reagent_static_list
+
+ if(!reagent_list_to_process.len)
+ for(var/datum/reagent/reagent_path as anything in subtypesof(/datum/reagent))
+ if(is_path_in_list(reagent_path, blacklist))
+ continue
+ if(initial(reagent_path.chemical_flags) & REAGENT_CAN_BE_SYNTHESIZED)
+ reagent_list_to_process += reagent_path
+
+ var/picked_reagent = pick(reagent_list_to_process)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return picked_reagent
///Returns a random reagent consumable ethanol object minus blacklisted reagents
diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm
index 1d607e7d7a3..bfb2bb47e18 100644
--- a/code/__HELPERS/roundend.dm
+++ b/code/__HELPERS/roundend.dm
@@ -192,7 +192,11 @@ GLOBAL_LIST_INIT(achievements_unlocked, list())
if(human_mob.mind && (length(human_mob.mind.antag_datums) > 0))
for(var/datum/antagonist/antag_datums as anything in human_mob.mind.antag_datums)
+<<<<<<< HEAD
if(!antag_datums.hardcore_random_bonus) //dont give bonusses to dumb stuff like revs or hypnos
+=======
+ if(!antag_datums.hardcore_random_bonus) //don't give bonuses to dumb stuff like revs or hypnos
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
continue
if(initial(antag_datums.can_assign_self_objectives) && !antag_datums.can_assign_self_objectives)
continue // You don't get a prize if you picked your own objective, you can't fail those
@@ -471,7 +475,11 @@ GLOBAL_LIST_INIT(achievements_unlocked, list())
var/mob/living/silicon/ai/aiPlayer = i
var/datum/mind/aiMind = aiPlayer.deployed_shell?.mind || aiPlayer.mind
if(aiMind)
+<<<<<<< HEAD
parts += "[aiPlayer.name] 's laws [aiPlayer.stat != DEAD ? "at the end of the round" : "when it was [span_redtext("deactivated")]"] were:" //SKYRAT EDIT CHANGE
+=======
+ parts += "[aiPlayer.name] (Played by: [aiMind.key] )'s laws [aiPlayer.stat != DEAD ? "at the end of the round" : "when it was [span_redtext("deactivated")]"] were:"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
parts += aiPlayer.laws.get_law_list(include_zeroth=TRUE)
parts += "Total law changes: [aiPlayer.law_change_counter] "
@@ -482,19 +490,27 @@ GLOBAL_LIST_INIT(achievements_unlocked, list())
for(var/mob/living/silicon/robot/robo in aiPlayer.connected_robots)
borg_num--
if(robo.mind)
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE BEGIN - ROUNDEND
//parts += "[robo.name] (Played by: [robo.mind.key] )[robo.stat == DEAD ? " [span_redtext("(Deactivated)")]" : ""][borg_num ?", ":""]" - SKYRAT EDIT - ORIGINAL
parts += "[robo.name] [robo.stat == DEAD ? " [span_redtext("(Deactivated)")]" : ""][borg_num ?", ":""]"
//SKYRAT EDIT CHANGE END
+=======
+ parts += "[robo.name] (Played by: [robo.mind.key] )[robo.stat == DEAD ? " [span_redtext("(Deactivated)")]" : ""][borg_num ?", ":""]"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!borg_spacer)
borg_spacer = TRUE
for (var/mob/living/silicon/robot/robo in GLOB.silicon_mobs)
if (!robo.connected_ai && robo.mind)
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE BEGIN - ROUNDEND
//parts += "[borg_spacer?" ":""][robo.name] (Played by: [robo.mind.key] ) [(robo.stat != DEAD)? "[span_greentext("survived")] as an AI-less borg!" : "was [span_redtext("unable to survive")] the rigors of being a cyborg without an AI."] Its laws were:"
parts += "[borg_spacer?" ":""][robo.name] [(robo.stat != DEAD)? "[span_greentext("survived")] as an AI-less borg!" : "was [span_redtext("unable to survive")] the rigors of being a cyborg without an AI."] Its laws were:"
//SKYRAT EDIT CHANGE END
+=======
+ parts += "[borg_spacer?" ":""][robo.name] (Played by: [robo.mind.key] ) [(robo.stat != DEAD)? "[span_greentext("survived")] as an AI-less borg!" : "was [span_redtext("unable to survive")] the rigors of being a cyborg without an AI."] Its laws were:"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(robo) //How the hell do we lose robo between here and the world messages directly above this?
parts += robo.laws.get_law_list(include_zeroth=TRUE)
@@ -703,10 +719,14 @@ GLOBAL_LIST_INIT(achievements_unlocked, list())
var/jobtext = ""
if(!is_unassigned_job(ply.assigned_role))
jobtext = " the [ply.assigned_role.title] "
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE BEGIN - ROUNDEND
//var/text = "[ply.key] was [ply.name] [jobtext] and" - SKYRAT EDIT - ORIGINAL
var/text = "[ply.name] [jobtext]"
//SKYRAT EDIT CHANGE END
+=======
+ var/text = "[ply.key] was [ply.name] [jobtext] and"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(ply.current)
if(ply.current.stat == DEAD)
text += " [span_redtext("died")]"
@@ -750,7 +770,11 @@ GLOBAL_LIST_INIT(achievements_unlocked, list())
parts += "Total Achievements Earned: [length(GLOB.achievements_unlocked)]! "
parts += ""
for(var/datum/achievement_report/cheevo_report in GLOB.achievements_unlocked)
+<<<<<<< HEAD
parts += "[cheevo_report.winner] earned the [span_greentext("'[cheevo_report.cheevo]'")] achievement at [cheevo_report.award_location]! " // SKYRAT EDIT - No ckeys in the round end report - ORIGINAL: parts += " [cheevo_report.winner_key] was [cheevo_report.winner] , who earned the [span_greentext("'[cheevo_report.cheevo]'")] achievement at [cheevo_report.award_location]! "
+=======
+ parts += " [cheevo_report.winner_key] was [cheevo_report.winner] , who earned the [span_greentext("'[cheevo_report.cheevo]'")] achievement at [cheevo_report.award_location]! "
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
parts += " "
return ""
diff --git a/code/__HELPERS/sorts/sort_instance.dm b/code/__HELPERS/sorts/sort_instance.dm
index bd1bbe0582a..eaae55c18d3 100644
--- a/code/__HELPERS/sorts/sort_instance.dm
+++ b/code/__HELPERS/sorts/sort_instance.dm
@@ -392,7 +392,7 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sort_instance, new())
var/count1 = 0 //# of times in a row that first run won
var/count2 = 0 // " " " " " " second run won
- //do the straightfoward thin until one run starts winning consistently
+ //do the straightforward thin until one run starts winning consistently
do
//ASSERT(len1 > 1 && len2 > 0)
@@ -417,7 +417,7 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sort_instance, new())
while((count1 | count2) < minGallop)
- //one run is winning consistently so galloping may provide huge benifits
+ //one run is winning consistently so galloping may provide huge benefits
//so try galloping, until such time as the run is no longer consistently winning
do
//ASSERT(len1 > 1 && len2 > 0)
@@ -493,7 +493,7 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sort_instance, new())
var/count1 = 0 //# of times in a row that first run won
var/count2 = 0 // " " " " " " second run won
- //do the straightfoward thing until one run starts winning consistently
+ //do the straightforward thing until one run starts winning consistently
do
//ASSERT(len1 > 0 && len2 > 1)
if(call(cmp)(fetchElement(L,cursor2), fetchElement(L,cursor1)) < 0)
@@ -516,7 +516,7 @@ GLOBAL_DATUM_INIT(sortInstance, /datum/sort_instance, new())
break outer
while((count1 | count2) < minGallop)
- //one run is winning consistently so galloping may provide huge benifits
+ //one run is winning consistently so galloping may provide huge benefits
//so try galloping, until such time as the run is no longer consistently winning
do
//ASSERT(len1 > 0 && len2 > 1)
diff --git a/code/__HELPERS/spatial_info.dm b/code/__HELPERS/spatial_info.dm
index 529532f50cf..5a94cef45e6 100644
--- a/code/__HELPERS/spatial_info.dm
+++ b/code/__HELPERS/spatial_info.dm
@@ -195,8 +195,17 @@
var/turf/inbetween_turf = center_turf
//this is the lowest overhead way of doing a loop in dm other than a goto. distance is guaranteed to be >= steps taken to target by this algorithm
+<<<<<<< HEAD
for(var/step_counter in 1 to distance)
inbetween_turf = get_step_towards(inbetween_turf, target_turf)
+=======
+ var/list/steps = get_steps_to(inbetween_turf, target_turf)
+ if(isnull(steps))
+ return
+ steps.Cut(distance + 1)
+ for(var/direction in steps)
+ inbetween_turf = get_step(inbetween_turf, direction)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(inbetween_turf == target_turf)//we've gotten to target's turf without returning due to turf opacity, so we must be able to see target
break
diff --git a/code/__HELPERS/text.dm b/code/__HELPERS/text.dm
index 460dd99a894..ca46638c8ea 100644
--- a/code/__HELPERS/text.dm
+++ b/code/__HELPERS/text.dm
@@ -157,7 +157,11 @@
* * allow_numbers - allows numbers and common special characters - used for silicon/other weird things names
* * cap_after_symbols - words like Bob's will be capitalized to Bob'S by default. False is good for titles.
*/
+<<<<<<< HEAD
/proc/reject_bad_name(t_in, allow_numbers = TRUE, max_length = MAX_NAME_LEN, ascii_only = TRUE, strict = FALSE, cap_after_symbols = TRUE) // SKYRAT EDIT CHANGE - allow_numbers to TRUE
+=======
+/proc/reject_bad_name(t_in, allow_numbers = FALSE, max_length = MAX_NAME_LEN, ascii_only = TRUE, strict = FALSE, cap_after_symbols = TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!t_in)
return //Rejects the input if it is null
@@ -1228,6 +1232,16 @@ GLOBAL_LIST_INIT(binary, list("0","1"))
var/input_length = LAZYLEN(ending)
return !!findtext(input_text, ending, -input_length)
+<<<<<<< HEAD
+=======
+/// Returns TRUE if the input_text starts with any of the beginnings
+/proc/starts_with_any(input_text, list/beginnings)
+ for(var/beginning in beginnings)
+ if(!!findtext(input_text, beginning, 1, LAZYLEN(beginning)+1))
+ return TRUE
+ return FALSE
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Generate a grawlix string of length of the text argument.
/proc/grawlix(text)
var/grawlix = ""
diff --git a/code/__HELPERS/turfs.dm b/code/__HELPERS/turfs.dm
index 93da26ef292..a2a44309664 100644
--- a/code/__HELPERS/turfs.dm
+++ b/code/__HELPERS/turfs.dm
@@ -76,7 +76,11 @@ Turf and target are separate in case you want to teleport some distance from a t
//destination_list = new()
/*This will draw a block around the target turf, given what the error is.
Specifying the values above will basically draw a different sort of block.
+<<<<<<< HEAD
If the values are the same, it will be a square. If they are different, it will be a rectengle.
+=======
+ If the values are the same, it will be a square. If they are different, it will be a rectangle.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
In either case, it will center based on offset. Offset is position from center.
Offset always calculates in relation to direction faced. In other words, depending on the direction of the teleport,
the offset should remain positioned in relation to destination.*/
@@ -206,7 +210,11 @@ Turf and target are separate in case you want to teleport some distance from a t
* NOTE: if your atom has non-standard bounds then this proc
* will handle it, but:
* if the bounds are even, then there are an even amount of "middle" turfs, the one to the EAST, NORTH, or BOTH is picked
+<<<<<<< HEAD
* this may seem bad, but you're atleast as close to the center of the atom as possible, better than byond's default loc being all the way off)
+=======
+ * this may seem bad, but you're at least as close to the center of the atom as possible, better than byond's default loc being all the way off)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* if the bounds are odd, the true middle turf of the atom is returned
**/
/proc/get_turf_pixel(atom/checked_atom)
diff --git a/code/__HELPERS/type2type.dm b/code/__HELPERS/type2type.dm
index 7cdecfe41ed..03d308e34d6 100644
--- a/code/__HELPERS/type2type.dm
+++ b/code/__HELPERS/type2type.dm
@@ -36,8 +36,8 @@
return "northwest"
if(SOUTHWEST)
return "southwest"
- else
- return
+
+ return NONE
//Turns text into proper directions
/proc/text2dir(direction)
@@ -58,8 +58,8 @@
return SOUTHEAST
if("SOUTHWEST")
return SOUTHWEST
- else
- return
+
+ return NONE
//Converts an angle (degrees) into a ss13 direction
GLOBAL_LIST_INIT(modulo_angle_to_dir, list(NORTH,NORTHEAST,EAST,SOUTHEAST,SOUTH,SOUTHWEST,WEST,NORTHWEST))
diff --git a/code/_compile_options.dm b/code/_compile_options.dm
index 5ab05258b99..35f1156170f 100644
--- a/code/_compile_options.dm
+++ b/code/_compile_options.dm
@@ -19,7 +19,11 @@
/// We'll use another define to convert uses of the proc over. That'll be all
// #define APPEARANCE_SUCCESS_TRACKING
+<<<<<<< HEAD
///Used to find the sources of harddels, quite laggy, don't be surpised if it freezes your client for a good while
+=======
+///Used to find the sources of harddels, quite laggy, don't be surprised if it freezes your client for a good while
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//#define REFERENCE_TRACKING
#ifdef REFERENCE_TRACKING
@@ -131,7 +135,11 @@
#warn compiling in TESTING mode. testing() debug messages will be visible.
#endif
+<<<<<<< HEAD
#ifdef CIBUILDING
+=======
+#if defined(CIBUILDING) && !defined(OPENDREAM)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define UNIT_TESTS
#endif
@@ -156,10 +164,24 @@
#define CBT
#endif
+<<<<<<< HEAD
#if !defined(CBT) && !defined(SPACEMAN_DMM)
#warn Building with Dream Maker is no longer supported and will result in errors.
#warn In order to build, run BUILD.bat in the root directory.
#warn Consider switching to VSCode editor instead, where you can press Ctrl+Shift+B to build.
+=======
+#if defined(OPENDREAM)
+ #if !defined(CIBUILDING)
+ #warn You are building with OpenDream. Remember to build TGUI manually.
+ #warn You can do this by running tgui-build.cmd from the bin directory.
+ #endif
+#else
+ #if !defined(CBT) && !defined(SPACEMAN_DMM)
+ #warn Building with Dream Maker is no longer supported and will result in errors.
+ #warn In order to build, run BUILD.cmd in the root directory.
+ #warn Consider switching to VSCode editor instead, where you can press Ctrl+Shift+B to build.
+ #endif
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#endif
/// Runs the game in "map test mode"
diff --git a/code/_globalvars/admin.dm b/code/_globalvars/admin.dm
index 96f07e3cca8..23635891313 100644
--- a/code/_globalvars/admin.dm
+++ b/code/_globalvars/admin.dm
@@ -76,6 +76,10 @@ GLOBAL_LIST_INIT(spanname_to_formatting, list(
"Drone Radio" = "drone",
"Engineering Radio" = "engradio",
"Extremely Big" = "extremelybig",
+<<<<<<< HEAD
+=======
+ "Entertainment Radio" = "enteradio",
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Game Say" = "game say",
"Ghost Alert" = "ghostalert",
"Green" = "green",
diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm
index fd934e922bb..819fff7e5a4 100644
--- a/code/_globalvars/bitfields.dm
+++ b/code/_globalvars/bitfields.dm
@@ -205,10 +205,13 @@ DEFINE_BITFIELD(flags_inv, list(
"HIDESHOES" = HIDESHOES,
"HIDESNOUT" = HIDESNOUT,
"HIDESUITSTORAGE" = HIDESUITSTORAGE,
+<<<<<<< HEAD
"SHOWSPRITEEARS" = SHOWSPRITEEARS, // SKYRAT EDIT ADDITION START
"HIDETAIL" = HIDETAIL,
"HIDESPINE" = HIDESPINE,
"HIDESEXTOY" = HIDESEXTOY, // SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(machine_stat, list(
@@ -413,12 +416,15 @@ DEFINE_BITFIELD(bodyshape, list(
"BODYSHAPE_MONKEY" = BODYSHAPE_MONKEY,
"BODYSHAPE_DIGITIGRADE" = BODYSHAPE_DIGITIGRADE,
"BODYSHAPE_SNOUTED" = BODYSHAPE_SNOUTED,
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION - customization
"BODYSHAPE__CUSTOM" = BODYSHAPE_CUSTOM,
"BODYSHAPE__TAUR" = BODYSHAPE_TAUR,
"BODYSHAPE__HIDE_SHOES" = BODYSHAPE_HIDE_SHOES,
"BODYSHAPE__ALT_FACEWEAR_LAYER" = BODYSHAPE_ALT_FACEWEAR_LAYER,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(acceptable_bodyshape, list(
@@ -426,12 +432,15 @@ DEFINE_BITFIELD(acceptable_bodyshape, list(
"BODYSHAPE_MONKEY" = BODYSHAPE_MONKEY,
"BODYSHAPE_DIGITIGRADE" = BODYSHAPE_DIGITIGRADE,
"BODYSHAPE_SNOUTED" = BODYSHAPE_SNOUTED,
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION - customization
"BODYSHAPE__CUSTOM" = BODYSHAPE_CUSTOM,
"BODYSHAPE__TAUR" = BODYSHAPE_TAUR,
"BODYSHAPE__HIDE_SHOES" = BODYSHAPE_HIDE_SHOES,
"BODYSHAPE__ALT_FACEWEAR_LAYER" = BODYSHAPE_ALT_FACEWEAR_LAYER,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(bodypart_flags, list(
@@ -458,10 +467,14 @@ DEFINE_BITFIELD(supports_variations_flags, list(
"CLOTHING_NO_VARIATION" = CLOTHING_NO_VARIATION,
"CLOTHING_DIGITIGRADE_VARIATION" = CLOTHING_DIGITIGRADE_VARIATION,
"CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON" = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON,
+<<<<<<< HEAD
"CLOTHING_SNOUTED_VARIATION" = CLOTHING_SNOUTED_VARIATION,
"CLOTHING_SNOUTED_VARIATION_NO_NEW_ICON" = CLOTHING_SNOUTED_VARIATION_NO_NEW_ICON,
"CLOTHING_SNOUTED_VOX_VARIATION" = CLOTHING_SNOUTED_VOX_VARIATION,
"CLOTHING_SNOUTED_VOX_VARIATION_NO_NEW_ICON" = CLOTHING_SNOUTED_VOX_VARIATION_NO_NEW_ICON, // SKYRAT EDIT END
+=======
+ "CLOTHING_DIGITIGRADE_MASK" = CLOTHING_DIGITIGRADE_MASK,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(flora_flags, list(
@@ -518,7 +531,10 @@ DEFINE_BITFIELD(liked_foodtypes, list(
"BUGS" = BUGS,
"GORE" = GORE,
"STONE" = STONE,
+<<<<<<< HEAD
"BLOODY" = BLOODY, // SKYRAT EDIT - Hemophage Food
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(disliked_foodtypes, list(
@@ -543,7 +559,10 @@ DEFINE_BITFIELD(disliked_foodtypes, list(
"BUGS" = BUGS,
"GORE" = GORE,
"STONE" = STONE,
+<<<<<<< HEAD
"BLOODY" = BLOODY, // SKYRAT EDIT - Hemophage Food
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(toxic_foodtypes, list(
@@ -568,7 +587,10 @@ DEFINE_BITFIELD(toxic_foodtypes, list(
"BUGS" = BUGS,
"GORE" = GORE,
"STONE" = STONE,
+<<<<<<< HEAD
"BLOODY" = BLOODY, // SKYRAT EDIT - Hemophage Food
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
DEFINE_BITFIELD(sharpness, list(
diff --git a/code/_globalvars/lists/achievements.dm b/code/_globalvars/lists/achievements.dm
old mode 100755
new mode 100644
diff --git a/code/_globalvars/lists/ambience.dm b/code/_globalvars/lists/ambience.dm
index 3a9ab81dde4..d1ba50f5053 100644
--- a/code/_globalvars/lists/ambience.dm
+++ b/code/_globalvars/lists/ambience.dm
@@ -1,4 +1,7 @@
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL BEGIN
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOBAL_LIST_INIT(generic_ambience,list(
'sound/ambience/ambigen1.ogg',
'sound/ambience/ambigen2.ogg',
@@ -14,7 +17,10 @@ GLOBAL_LIST_INIT(generic_ambience,list(
'sound/ambience/ambigen13.ogg',
'sound/ambience/ambigen14.ogg',
))
+<<<<<<< HEAD
*/ //SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOBAL_LIST_INIT(holy_ambience,list(
'sound/ambience/ambicha1.ogg',
@@ -111,7 +117,10 @@ GLOBAL_LIST_INIT(spooky_ambience,list(
))
GLOBAL_LIST_INIT(space_ambience,list(
+<<<<<<< HEAD
'modular_skyrat/master_files/sound/ambience/starlight.ogg', //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
'sound/ambience/ambiatmos.ogg',
'sound/ambience/ambispace.ogg',
'sound/ambience/ambispace2.ogg',
diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm
index 03dd87ad456..21b20b95d76 100644
--- a/code/_globalvars/lists/flavor_misc.dm
+++ b/code/_globalvars/lists/flavor_misc.dm
@@ -254,12 +254,17 @@ GLOBAL_LIST_INIT(status_display_approved_pictures, list(
"lockdown",
"greenalert",
"bluealert",
+<<<<<<< HEAD
"violetalert", // SKYRAT EDIT ADD - Alert Levels
"orangealert", // SKYRAT EDIT ADD - Alert Levels
"amberalert", // SKYRAT EDIT ADD - Alert Levels
"redalert",
"deltaalert",
"gammaalert", // SKYRAT EDIT ADD - Alert Levels
+=======
+ "redalert",
+ "deltaalert",
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"radiation",
"currentalert", //For automatic set of status display on current level
))
diff --git a/code/_globalvars/lists/maintenance_loot.dm b/code/_globalvars/lists/maintenance_loot.dm
index 4ccca8fae56..5b74ee059f4 100644
--- a/code/_globalvars/lists/maintenance_loot.dm
+++ b/code/_globalvars/lists/maintenance_loot.dm
@@ -257,12 +257,20 @@ GLOBAL_LIST_INIT(uncommon_loot, list(//uncommon: useful items
list(//computer disks
/obj/item/computer_disk/maintenance/scanner = 1,
+<<<<<<< HEAD
///obj/item/computer_disk/maintenance/camera = 1, //SKYRAT EDIT REMOVAL - Available To Crew Now
+=======
+ /obj/item/computer_disk/maintenance/camera = 1,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/computer_disk/maintenance/modsuit_control = 1,
/obj/item/computer_disk/maintenance/spectre_meter = 1,
/obj/item/computer_disk/maintenance/arcade = 1,
/obj/item/computer_disk/maintenance/theme = 3,
+<<<<<<< HEAD
) = 3, //SKYRAT EDIT CHANGE - Original : 4
+=======
+ ) = 4,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
list(//modsuits
/obj/effect/spawner/random/mod/maint = 3,
diff --git a/code/_globalvars/lists/poll_ignore.dm b/code/_globalvars/lists/poll_ignore.dm
index 9dcdf05db73..3e01fbc8015 100644
--- a/code/_globalvars/lists/poll_ignore.dm
+++ b/code/_globalvars/lists/poll_ignore.dm
@@ -1,7 +1,10 @@
//Each lists stores ckeys for "Never for this round" option category
#define POLL_IGNORE_ACADEMY_WIZARD "academy_wizard"
+<<<<<<< HEAD
#define POLL_IGNORE_CORTICAL_BORER "cortical_borer" // SKYRAT EDIT - Cortical Borer
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define POLL_IGNORE_ALIEN_LARVA "alien_larva"
#define POLL_IGNORE_ASH_SPIRIT "ash_spirit"
#define POLL_IGNORE_ASHWALKER "ashwalker"
@@ -40,7 +43,10 @@
GLOBAL_LIST_INIT(poll_ignore_desc, list(
POLL_IGNORE_ACADEMY_WIZARD = "Academy Wizard Defender",
+<<<<<<< HEAD
POLL_IGNORE_CORTICAL_BORER = "Cortical Borer", // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
POLL_IGNORE_ALIEN_LARVA = "Xenomorph larva",
POLL_IGNORE_ASH_SPIRIT = "Ash Spirit",
POLL_IGNORE_ASHWALKER = "Ashwalker eggs",
diff --git a/code/_globalvars/lists/quirks.dm b/code/_globalvars/lists/quirks.dm
index 0f7bd890888..2afc1f65586 100644
--- a/code/_globalvars/lists/quirks.dm
+++ b/code/_globalvars/lists/quirks.dm
@@ -8,8 +8,11 @@ GLOBAL_LIST_INIT(nearsighted_glasses, list(
"Thin" = /obj/item/clothing/glasses/regular/thin,
"Jamjar" = /obj/item/clothing/glasses/regular/jamjar,
"Binoclard" = /obj/item/clothing/glasses/regular/kim,
+<<<<<<< HEAD
"Modern" = /obj/item/clothing/glasses/regular/betterunshit, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
///Options for the prosthetic limb quirk to choose from
diff --git a/code/_globalvars/lists/reagents.dm b/code/_globalvars/lists/reagents.dm
index 44ac6d574cd..cd532b321cc 100644
--- a/code/_globalvars/lists/reagents.dm
+++ b/code/_globalvars/lists/reagents.dm
@@ -35,6 +35,7 @@ GLOBAL_LIST_INIT(reagent_containers, list(
CAT_PATCHES = typecacheof(list(
/obj/item/reagent_containers/pill/patch/style
)),
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
CAT_HYPOS = typecacheof(list(
/obj/item/reagent_containers/cup/vial/small/style,
@@ -44,6 +45,8 @@ GLOBAL_LIST_INIT(reagent_containers, list(
/obj/item/reagent_containers/syringe/smartdart
)),
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/// list of all /datum/chemical_reaction datums indexed by their typepath. Use this for general lookup stuff
@@ -58,7 +61,11 @@ GLOBAL_LIST_INIT(chemical_reagents_list, init_chemical_reagent_list())
GLOBAL_LIST(chemical_reactions_results_lookup_list)
/// list of all reagents that are parent types used to define a bunch of children - but aren't used themselves as anything.
GLOBAL_LIST(fake_reagent_blacklist)
+<<<<<<< HEAD
/// Turfs metalgen cant touch
+=======
+/// Turfs metalgen can't touch
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOBAL_LIST_INIT(blacklisted_metalgen_types, typecacheof(list(
/turf/closed/indestructible, //indestructible turfs should be indestructible, metalgen transmutation to plasma allows them to be destroyed
/turf/open/indestructible
@@ -185,7 +192,11 @@ GLOBAL_LIST_INIT(name2reagent, build_name2reagentlist())
/proc/build_name2reagentlist()
. = list()
+<<<<<<< HEAD
//build map with keys stored seperatly
+=======
+ //build map with keys stored separately
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/name_to_reagent = list()
var/list/only_names = list()
for (var/datum/reagent/reagent as anything in GLOB.chemical_reagents_list)
diff --git a/code/_globalvars/lists/typecache.dm b/code/_globalvars/lists/typecache.dm
index 805cea677a0..b1460165564 100644
--- a/code/_globalvars/lists/typecache.dm
+++ b/code/_globalvars/lists/typecache.dm
@@ -1,5 +1,5 @@
//please store common type caches here.
-//type caches should only be stored here if used in mutiple places or likely to be used in mutiple places.
+//type caches should only be stored here if used in multiple places or likely to be used in multiple places.
//Note: typecache can only replace istype if you know for sure the thing is at least a datum.
diff --git a/code/_globalvars/logging.dm b/code/_globalvars/logging.dm
index 2f05cedf316..89b38ee7fe0 100644
--- a/code/_globalvars/logging.dm
+++ b/code/_globalvars/logging.dm
@@ -41,6 +41,10 @@ DECLARE_LOG_NAMED(harddel_log, "harddels", START_LOG)
DECLARE_LOG_NAMED(test_log, "tests", START_LOG)
#endif
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Picture logging
GLOBAL_VAR(picture_log_directory)
GLOBAL_PROTECT(picture_log_directory)
diff --git a/code/_globalvars/tgui.dm b/code/_globalvars/tgui.dm
index a81078420f5..df34a04efe6 100644
--- a/code/_globalvars/tgui.dm
+++ b/code/_globalvars/tgui.dm
@@ -1,4 +1,7 @@
GLOBAL_DATUM(crew_manifest_tgui, /datum/crew_manifest)
GLOBAL_DATUM(changelog_tgui, /datum/changelog)
GLOBAL_DATUM(hotkeys_tgui, /datum/hotkeys_help)
+<<<<<<< HEAD
GLOBAL_DATUM(record_manifest_tgui, /datum/record_manifest) //SKYRAT EDIT ADDITION -- EXPLOITABLE VERB
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/_globalvars/traits/_traits.dm b/code/_globalvars/traits/_traits.dm
index 00d8be0defd..1d3b2c4d80f 100644
--- a/code/_globalvars/traits/_traits.dm
+++ b/code/_globalvars/traits/_traits.dm
@@ -19,15 +19,26 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_DRYABLE" = TRAIT_DRYABLE,
"TRAIT_FOOD_CHEF_MADE" = TRAIT_FOOD_CHEF_MADE,
"TRAIT_FOOD_FRIED" = TRAIT_FOOD_FRIED,
+<<<<<<< HEAD
"TRAIT_FOOD_SILVER" = TRAIT_FOOD_SILVER,
"TRAIT_KEEP_TOGETHER" = TRAIT_KEEP_TOGETHER,
"TRAIT_LIGHTING_DEBUGGED" = TRAIT_LIGHTING_DEBUGGED,
+=======
+ "TRAIT_QUALITY_FOOD_INGREDIENT" = TRAIT_QUALITY_FOOD_INGREDIENT,
+ "TRAIT_FOOD_SILVER" = TRAIT_FOOD_SILVER,
+ "TRAIT_KEEP_TOGETHER" = TRAIT_KEEP_TOGETHER,
+ "TRAIT_LIGHTING_DEBUGGED" = TRAIT_LIGHTING_DEBUGGED,
+ "TRAIT_MESSAGE_IN_A_BOTTLE_LOCATION" = TRAIT_MESSAGE_IN_A_BOTTLE_LOCATION,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_RECENTLY_COINED" = TRAIT_RECENTLY_COINED,
"TRAIT_RUSTY" = TRAIT_RUSTY,
"TRAIT_SPINNING" = TRAIT_SPINNING,
"TRAIT_STICKERED" = TRAIT_STICKERED,
"TRAIT_UNHITTABLE_BY_PROJECTILES" = TRAIT_UNHITTABLE_BY_PROJECTILES,
+<<<<<<< HEAD
"TRAIT_COMMISSIONED" = TRAIT_COMMISSIONED,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
),
/atom/movable = list(
"TRAIT_ACTIVE_STORAGE" = TRAIT_ACTIVE_STORAGE,
@@ -112,18 +123,30 @@ GLOBAL_LIST_INIT(traits_by_type, list(
/datum/wound = list(
"TRAIT_WOUND_SCANNED" = TRAIT_WOUND_SCANNED,
),
+<<<<<<< HEAD
// SKYRAT EDIT ADDITON BEGIN - Synthetic wounds
/datum/wound/electrical_damage = list(
"TRAIT_ELECTRICAL_DAMAGE_REPAIRING" = TRAIT_ELECTRICAL_DAMAGE_REPAIRING,
),
// SKYRAT EDIT ADDITON END - Synthetic wounds
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj = list(
"TRAIT_WALLMOUNTED" = TRAIT_WALLMOUNTED,
"TRAIT_CONTRABAND" = TRAIT_CONTRABAND,
),
/mob = list(
+<<<<<<< HEAD
"TRAIT_ABDUCTOR_SCIENTIST_TRAINING" = TRAIT_ABDUCTOR_SCIENTIST_TRAINING,
"TRAIT_ABDUCTOR_TRAINING" = TRAIT_ABDUCTOR_TRAINING,
+=======
+ "TRAIT_AI_ACCESS" = TRAIT_AI_ACCESS,
+ "TRAIT_ABDUCTOR_SCIENTIST_TRAINING" = TRAIT_ABDUCTOR_SCIENTIST_TRAINING,
+ "TRAIT_ABDUCTOR_TRAINING" = TRAIT_ABDUCTOR_TRAINING,
+ "TRAIT_ACT_AS_CULTIST" = TRAIT_ACT_AS_CULTIST,
+ "TRAIT_ACT_AS_HERETIC" = TRAIT_ACT_AS_HERETIC,
+ "TRAIT_ACTIVELY_FISHING" = TRAIT_ACTIVELY_FISHING,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_ADAMANTINE_EXTRACT_ARMOR" = TRAIT_ADAMANTINE_EXTRACT_ARMOR,
"TRAIT_ADVANCEDTOOLUSER" = TRAIT_ADVANCEDTOOLUSER,
"TRAIT_AGENDER" = TRAIT_AGENDER,
@@ -153,6 +176,10 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_BIRTHDAY_BOY" = TRAIT_BIRTHDAY_BOY,
"TRAIT_BLOB_ALLY" = TRAIT_BLOB_ALLY,
"TRAIT_BLOCK_SHUTTLE_MOVEMENT" = TRAIT_BLOCK_SHUTTLE_MOVEMENT,
+<<<<<<< HEAD
+=======
+ "TRAIT_BLOCKING_PROJECTILES" = TRAIT_BLOCKING_PROJECTILES,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_BLOOD_CLANS" = TRAIT_BLOOD_CLANS,
"TRAIT_BLOODSHOT_EYES" = TRAIT_BLOODSHOT_EYES,
"TRAIT_BLOODY_MESS" = TRAIT_BLOODY_MESS,
@@ -450,11 +477,18 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_SHOCKIMMUNE" = TRAIT_SHOCKIMMUNE,
"TRAIT_SIGN_LANG" = TRAIT_SIGN_LANG,
"TRAIT_SILENT_FOOTSTEPS" = TRAIT_SILENT_FOOTSTEPS,
+<<<<<<< HEAD
+=======
+ "TRAIT_SILICON_ACCESS" = TRAIT_SILICON_ACCESS,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_SILICON_EMOTES_ALLOWED" = TRAIT_SILICON_EMOTES_ALLOWED,
"TRAIT_SIXTHSENSE" = TRAIT_SIXTHSENSE,
"TRAIT_SKITTISH" = TRAIT_SKITTISH,
"TRAIT_SLEEPIMMUNE" = TRAIT_SLEEPIMMUNE,
+<<<<<<< HEAD
"TRAIT_SLOW_FLIP" = TRAIT_SLOW_FLIP,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_SMOKER" = TRAIT_SMOKER,
"TRAIT_SNEAK" = TRAIT_SNEAK,
"TRAIT_SNOB" = TRAIT_SNOB,
@@ -543,6 +577,11 @@ GLOBAL_LIST_INIT(traits_by_type, list(
),
/obj/item = list(
"TRAIT_APC_SHOCKING" = TRAIT_APC_SHOCKING,
+<<<<<<< HEAD
+=======
+ "TRAIT_BAIT_ALLOW_FISHING_DUD" = TRAIT_BAIT_ALLOW_FISHING_DUD,
+ "TRAIT_BAIT_IGNORE_ENVIRONMENT" = TRAIT_BAIT_IGNORE_ENVIRONMENT,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_BAIT_UNCONSUMABLE" = TRAIT_BAIT_UNCONSUMABLE,
"TRAIT_BAKEABLE" = TRAIT_BAKEABLE,
"TRAIT_BASIC_QUALITY_BAIT" = TRAIT_BASIC_QUALITY_BAIT,
@@ -568,6 +607,10 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_NODROP" = TRAIT_NODROP,
"TRAIT_OMNI_BAIT" = TRAIT_OMNI_BAIT,
"TRAIT_PLANT_WILDMUTATE" = TRAIT_PLANT_WILDMUTATE,
+<<<<<<< HEAD
+=======
+ "TRAIT_POISONOUS_BAIT" = TRAIT_POISONOUS_BAIT,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_T_RAY_VISIBLE" = TRAIT_T_RAY_VISIBLE,
"TRAIT_TRANSFORM_ACTIVE" = TRAIT_TRANSFORM_ACTIVE,
"TRAIT_UNCATCHABLE" = TRAIT_UNCATCHABLE,
@@ -598,6 +641,7 @@ GLOBAL_LIST_INIT(traits_by_type, list(
/obj/item/fish = list(
"TRAIT_FISH_AMPHIBIOUS" = TRAIT_FISH_AMPHIBIOUS,
"TRAIT_FISH_CROSSBREEDER" = TRAIT_FISH_CROSSBREEDER,
+<<<<<<< HEAD
"TRAIT_FISH_FED_LUBE" = TRAIT_FISH_FED_LUBE,
"TRAIT_FISH_FLOPPING" = TRAIT_FISH_FLOPPING,
"TRAIT_FISH_FROM_CASE" = TRAIT_FISH_FROM_CASE,
@@ -610,6 +654,27 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_RESIST_EMULSIFY" = TRAIT_RESIST_EMULSIFY,
"TRAIT_YUCKY_FISH" = TRAIT_YUCKY_FISH,
),
+=======
+ "TRAIT_FISH_ELECTROGENESIS" = TRAIT_FISH_ELECTROGENESIS,
+ "TRAIT_FISH_FED_LUBE" = TRAIT_FISH_FED_LUBE,
+ "TRAIT_FISH_FLOPPING" = TRAIT_FISH_FLOPPING,
+ "TRAIT_FISH_FROM_CASE" = TRAIT_FISH_FROM_CASE,
+ "TRAIT_FISH_INK_ON_COOLDOWN" = TRAIT_FISH_INK_ON_COOLDOWN,
+ "TRAIT_FISH_NO_HUNGER" = TRAIT_FISH_NO_HUNGER,
+ "TRAIT_FISH_NO_MATING" = TRAIT_FISH_NO_MATING,
+ "TRAIT_FISH_RECESSIVE" = TRAIT_FISH_RECESSIVE,
+ "TRAIT_FISH_SELF_REPRODUCE" = TRAIT_FISH_SELF_REPRODUCE,
+ "TRAIT_FISH_SHOULD_TWOHANDED" = TRAIT_FISH_SHOULD_TWOHANDED,
+ "TRAIT_FISH_STASIS" = TRAIT_FISH_STASIS,
+ "TRAIT_FISH_STINGER" = TRAIT_FISH_STINGER,
+ "TRAIT_FISH_TOXIN_IMMUNE" = TRAIT_FISH_TOXIN_IMMUNE,
+ "TRAIT_RESIST_EMULSIFY" = TRAIT_RESIST_EMULSIFY,
+ "TRAIT_YUCKY_FISH" = TRAIT_YUCKY_FISH,
+ ),
+ /obj/item/fishing_rod = list(
+ "TRAIT_ROD_REMOVE_FISHING_DUD" = TRAIT_ROD_REMOVE_FISHING_DUD,
+ ),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/integrated_circuit = list(
"TRAIT_CIRCUIT_UI_OPEN" = TRAIT_CIRCUIT_UI_OPEN,
"TRAIT_CIRCUIT_UNDUPABLE" = TRAIT_CIRCUIT_UNDUPABLE,
@@ -643,9 +708,12 @@ GLOBAL_LIST_INIT(traits_by_type, list(
/obj/machinery/modular_computer = list(
"TRAIT_MODPC_INTERACTING_WITH_FRAME" = TRAIT_MODPC_INTERACTING_WITH_FRAME,
),
+<<<<<<< HEAD
/obj/projectile = list(
"TRAIT_ALWAYS_HIT_ZONE" = TRAIT_ALWAYS_HIT_ZONE,
),
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure = list(
"TRAIT_RADSTORM_IMMUNE" = TRAIT_RADSTORM_IMMUNE,
),
@@ -669,6 +737,7 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_TURF_IGNORE_SLIPPERY" = TRAIT_TURF_IGNORE_SLIPPERY,
"TRAIT_TURF_IGNORE_SLOWDOWN" = TRAIT_TURF_IGNORE_SLOWDOWN,
),
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - SKYRAT TRAITS
/obj/item/toy/plush/skyrat = list(
"TRAIT_AFFECTION_AVERSION" = TRAIT_AFFECTION_AVERSION,
@@ -746,6 +815,8 @@ GLOBAL_LIST_INIT(traits_by_type, list(
"TRAIT_CLOTHES_DAMAGED_BY_PIERCING" = TRAIT_CLOTHES_DAMAGED_BY_PIERCING,
),
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/// value -> trait name, list of ALL traits that exist in the game, used for any type of accessing.
diff --git a/code/_globalvars/traits/admin_tooling.dm b/code/_globalvars/traits/admin_tooling.dm
index 84f65ae5868..69e6c78c810 100644
--- a/code/_globalvars/traits/admin_tooling.dm
+++ b/code/_globalvars/traits/admin_tooling.dm
@@ -26,6 +26,11 @@ GLOBAL_LIST_INIT(admin_visible_traits, list(
/mob = list(
"TRAIT_ABDUCTOR_SCIENTIST_TRAINING" = TRAIT_ABDUCTOR_SCIENTIST_TRAINING,
"TRAIT_ABDUCTOR_TRAINING" = TRAIT_ABDUCTOR_TRAINING,
+<<<<<<< HEAD
+=======
+ "TRAIT_ACT_AS_CULTIST" = TRAIT_ACT_AS_CULTIST,
+ "TRAIT_ACT_AS_HERETIC" = TRAIT_ACT_AS_HERETIC,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_ADVANCEDTOOLUSER" = TRAIT_ADVANCEDTOOLUSER,
"TRAIT_AGENDER" = TRAIT_AGENDER,
"TRAIT_AGEUSIA" = TRAIT_AGEUSIA,
@@ -258,7 +263,10 @@ GLOBAL_LIST_INIT(admin_visible_traits, list(
"TRAIT_SIXTHSENSE" = TRAIT_SIXTHSENSE,
"TRAIT_SKITTISH" = TRAIT_SKITTISH,
"TRAIT_SLEEPIMMUNE" = TRAIT_SLEEPIMMUNE,
+<<<<<<< HEAD
"TRAIT_SLOW_FLIP" = TRAIT_SLOW_FLIP,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"TRAIT_SMOKER" = TRAIT_SMOKER,
"TRAIT_SNOB" = TRAIT_SNOB,
"TRAIT_SOFTSPOKEN" = TRAIT_SOFTSPOKEN,
@@ -333,6 +341,7 @@ GLOBAL_LIST_INIT(admin_visible_traits, list(
"TRAIT_MAGNETIC_ID_CARD" = TRAIT_MAGNETIC_ID_CARD,
),
/obj/item/fish = list(
+<<<<<<< HEAD
"TRAIT_FISH_CROSSBREEDER" = TRAIT_FISH_CROSSBREEDER,
"TRAIT_FISH_FED_LUBE" = TRAIT_FISH_FED_LUBE,
"TRAIT_FISH_NO_HUNGER" = TRAIT_FISH_NO_HUNGER,
@@ -343,6 +352,28 @@ GLOBAL_LIST_INIT(admin_visible_traits, list(
"TRAIT_RESIST_EMULSIFY" = TRAIT_RESIST_EMULSIFY,
"TRAIT_YUCKY_FISH" = TRAIT_YUCKY_FISH,
),
+=======
+ "TRAIT_FISH_AMPHIBIOUS" = TRAIT_FISH_AMPHIBIOUS,
+ "TRAIT_FISH_CROSSBREEDER" = TRAIT_FISH_CROSSBREEDER,
+ "TRAIT_FISH_ELECTROGENESIS" = TRAIT_FISH_ELECTROGENESIS,
+ "TRAIT_FISH_FED_LUBE" = TRAIT_FISH_FED_LUBE,
+ "TRAIT_FISH_FROM_CASE" = TRAIT_FISH_FROM_CASE,
+ "TRAIT_FISH_INK_ON_COOLDOWN" = TRAIT_FISH_INK_ON_COOLDOWN,
+ "TRAIT_FISH_NO_HUNGER" = TRAIT_FISH_NO_HUNGER,
+ "TRAIT_FISH_NO_MATING" = TRAIT_FISH_NO_MATING,
+ "TRAIT_FISH_RECESSIVE" = TRAIT_FISH_RECESSIVE,
+ "TRAIT_FISH_SELF_REPRODUCE" = TRAIT_FISH_SELF_REPRODUCE,
+ "TRAIT_FISH_SHOULD_TWOHANDED" = TRAIT_FISH_SHOULD_TWOHANDED,
+ "TRAIT_FISH_STASIS" = TRAIT_FISH_STASIS,
+ "TRAIT_FISH_STINGER" = TRAIT_FISH_STINGER,
+ "TRAIT_FISH_TOXIN_IMMUNE" = TRAIT_FISH_TOXIN_IMMUNE,
+ "TRAIT_RESIST_EMULSIFY" = TRAIT_RESIST_EMULSIFY,
+ "TRAIT_YUCKY_FISH" = TRAIT_YUCKY_FISH,
+ ),
+ /obj/item/fishing_rod = list(
+ "TRAIT_ROD_REMOVE_FISHING_DUD" = TRAIT_ROD_REMOVE_FISHING_DUD,
+ ),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/organ/internal/liver = list(
"TRAIT_BALLMER_SCIENTIST" = TRAIT_BALLMER_SCIENTIST,
"TRAIT_COMEDY_METABOLISM" = TRAIT_COMEDY_METABOLISM,
@@ -358,6 +389,7 @@ GLOBAL_LIST_INIT(admin_visible_traits, list(
/obj/item/organ/internal/lungs = list(
"TRAIT_SPACEBREATHING" = TRAIT_SPACEBREATHING,
),
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - SKYRAT TRAITS
/obj/item/toy/plush/skyrat = list(
"TRAIT_AFFECTION_AVERSION" = TRAIT_AFFECTION_AVERSION,
@@ -434,6 +466,8 @@ GLOBAL_LIST_INIT(admin_visible_traits, list(
"TRAIT_CLOTHES_DAMAGED_BY_PIERCING" = TRAIT_CLOTHES_DAMAGED_BY_PIERCING,
),
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/// value -> trait name, generated as needed for adminning.
diff --git a/code/_onclick/ai.dm b/code/_onclick/ai.dm
index e8399b2a8f2..9bc25f034fe 100644
--- a/code/_onclick/ai.dm
+++ b/code/_onclick/ai.dm
@@ -7,7 +7,7 @@
Note that AI have no need for the adjacency proc, and so this proc is a lot cleaner.
*/
/mob/living/silicon/ai/DblClickOn(atom/A, params)
- if(control_disabled || incapacitated())
+ if(control_disabled || incapacitated)
return
if(ismob(A))
@@ -39,7 +39,7 @@
if(check_click_intercept(params,A))
return
- if(control_disabled || incapacitated())
+ if(control_disabled || incapacitated)
return
var/turf/pixel_turf = get_turf_pixel(A)
@@ -111,7 +111,11 @@
for AI shift, ctrl, and alt clicking.
*/
+<<<<<<< HEAD
/mob/living/silicon/ai/CtrlShiftClickOn(atom/target) // Procs overriden in modular_skyrat/modules/Silicon_QoL
+=======
+/mob/living/silicon/ai/CtrlShiftClickOn(atom/target)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
target.AICtrlShiftClick(src)
/mob/living/silicon/ai/ShiftClickOn(atom/target)
@@ -147,6 +151,19 @@
/* Atom Procs */
/atom/proc/AICtrlClick(mob/living/silicon/ai/user)
+<<<<<<< HEAD
+=======
+ return
+
+/atom/proc/ai_click_alt(mob/living/silicon/ai/user)
+ SHOULD_CALL_PARENT(FALSE)
+ return
+
+/atom/proc/AIShiftClick(mob/living/silicon/ai/user)
+ return
+
+/atom/proc/AICtrlShiftClick(mob/living/silicon/ai/user)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
/atom/proc/ai_click_alt(mob/living/silicon/ai/user)
diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm
index 1d7e07f7b99..17fd56856c6 100644
--- a/code/_onclick/click.dm
+++ b/code/_onclick/click.dm
@@ -101,7 +101,11 @@
CtrlClickOn(A)
return
+<<<<<<< HEAD
if(incapacitated(IGNORE_RESTRAINTS|IGNORE_STASIS))
+=======
+ if(INCAPACITATED_IGNORING(src, INCAPABLE_RESTRAINTS|INCAPABLE_STASIS))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
face_atom(A)
@@ -247,7 +251,8 @@
return TRUE
/proc/CheckToolReach(atom/movable/here, atom/movable/there, reach)
- if(!here || !there)
+ . = FALSE
+ if(QDELETED(here) || QDELETED(there))
return
switch(reach)
if(0)
@@ -258,14 +263,23 @@
var/obj/dummy = new(get_turf(here))
dummy.pass_flags |= PASSTABLE
dummy.SetInvisibility(INVISIBILITY_ABSTRACT)
+<<<<<<< HEAD
for(var/i in 1 to reach) //Limit it to that many tries
var/turf/T = get_step(dummy, get_dir(dummy, there))
+=======
+ var/list/steps = get_steps_to(dummy, there)
+ if(isnull(steps) || length(steps) > reach) // If the path is further than the reach, no way we can reach it anyways.
+ qdel(dummy)
+ return FALSE
+ for(var/direction in steps)
+ var/turf/next_step = get_step(dummy, direction)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(dummy.CanReach(there))
qdel(dummy)
return TRUE
- if(!dummy.Move(T)) //we're blocked!
+ if(!dummy.Move(next_step)) // We're blocked, nope.
qdel(dummy)
- return
+ return FALSE
qdel(dummy)
/// Default behavior: ignore double clicks (the second click that makes the doubleclick call already calls for a normal click)
diff --git a/code/_onclick/cyborg.dm b/code/_onclick/cyborg.dm
index 3da6f338250..0e30fb12c37 100644
--- a/code/_onclick/cyborg.dm
+++ b/code/_onclick/cyborg.dm
@@ -58,7 +58,11 @@
return
if(W)
+<<<<<<< HEAD
if(incapacitated())
+=======
+ if(incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
//while buckled, you can still connect to and control things like doors, but you can't use your modules
@@ -91,7 +95,11 @@
//Give cyborgs hotkey clicks without breaking existing uses of hotkey clicks
// for non-doors/apcs
+<<<<<<< HEAD
/mob/living/silicon/robot/CtrlShiftClickOn(atom/target) // Procs overriden in modular_skyrat/modules/Silicon_QoL
+=======
+/mob/living/silicon/robot/CtrlShiftClickOn(atom/target)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
target.BorgCtrlShiftClick(src)
/mob/living/silicon/robot/ShiftClickOn(atom/target)
@@ -203,7 +211,10 @@
attack_ai(user)
return
+<<<<<<< HEAD
*/ //SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* What happens when the cyborg without active module holds right-click on an item. Returns a SECONDARY_ATTACK_* value.
diff --git a/code/_onclick/hud/ai.dm b/code/_onclick/hud/ai.dm
index 84efaf77c5d..18e0cedaec6 100644
--- a/code/_onclick/hud/ai.dm
+++ b/code/_onclick/hud/ai.dm
@@ -2,7 +2,11 @@
icon = 'icons/hud/screen_ai.dmi'
/atom/movable/screen/ai/Click()
+<<<<<<< HEAD
if(isobserver(usr) || usr.incapacitated())
+=======
+ if(isobserver(usr) || usr.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
/atom/movable/screen/ai/aicore
diff --git a/code/_onclick/hud/hud.dm b/code/_onclick/hud/hud.dm
index c3a94e932db..9fd5cacfdaa 100644
--- a/code/_onclick/hud/hud.dm
+++ b/code/_onclick/hud/hud.dm
@@ -49,6 +49,7 @@ GLOBAL_LIST_INIT(available_erp_ui_styles, list(
var/inventory_shown = FALSE //Equipped item inventory
var/hotkey_ui_hidden = FALSE //This is to hide the buttons that can be used via hotkeys. (hotkeybuttons list of buttons)
+<<<<<<< HEAD
var/atom/movable/screen/ammo_counter //SKYRAT EDIT ADDITION
var/atom/movable/screen/blobpwrdisplay
@@ -58,6 +59,15 @@ GLOBAL_LIST_INIT(available_erp_ui_styles, list(
var/atom/movable/screen/combo/combo_display
+=======
+ var/atom/movable/screen/blobpwrdisplay
+
+ var/atom/movable/screen/alien_plasma_display
+ var/atom/movable/screen/alien_queen_finder
+
+ var/atom/movable/screen/combo/combo_display
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/atom/movable/screen/action_intent
var/atom/movable/screen/zone_select
var/atom/movable/screen/pull_icon
@@ -128,13 +138,21 @@ GLOBAL_LIST_INIT(available_erp_ui_styles, list(
// and avoid needing to make changes to all idk 300 consumers if we want to change the appearance
var/list/asset_refs_for_reuse = list()
+ // List of weakrefs to objects that we add to our screen that we don't expect to DO anything
+ // They typically use * in their render target. They exist solely so we can reuse them,
+ // and avoid needing to make changes to all idk 300 consumers if we want to change the appearance
+ var/list/asset_refs_for_reuse = list()
+
/datum/hud/New(mob/owner)
mymob = owner
if (!ui_style)
// will fall back to the default if any of these are null
ui_style = ui_style2icon(owner.client?.prefs?.read_preference(/datum/preference/choiced/ui_style))
+<<<<<<< HEAD
erp_ui_style = erp_ui_style2icon(owner.client?.prefs?.read_preference(/datum/preference/choiced/ui_style)) //SKYRAT EDIT - ADDITION - ERP ICONS FIX
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
toggle_palette = new()
toggle_palette.set_hud(src)
@@ -270,10 +288,13 @@ GLOBAL_LIST_INIT(available_erp_ui_styles, list(
alien_queen_finder = null
combo_display = null
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION START - SKYRAT HUD
wanted_lvl = null
// SKYRAT EDIT ADDITION END - SKYRAT HUD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
QDEL_LIST_ASSOC_VAL(master_groups)
QDEL_LIST_ASSOC_VAL(plane_master_controllers)
QDEL_LIST(always_visible_inventory)
diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm
index 39cb742d672..45fe1886fe0 100644
--- a/code/_onclick/hud/human.dm
+++ b/code/_onclick/hud/human.dm
@@ -295,9 +295,12 @@
combo_display = new /atom/movable/screen/combo(null, src)
infodisplay += combo_display
+<<<<<<< HEAD
ammo_counter = new /atom/movable/screen/ammo_counter(null, src) //SKYRAT EDIT ADDITION
infodisplay += ammo_counter //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/atom/movable/screen/inventory/inv in (static_inventory + toggleable_inventory))
if(inv.slot_id)
inv_slots[TOBITSHIFT(inv.slot_id) + 1] = inv
@@ -373,6 +376,11 @@
screenmob.client.screen -= H.wear_neck
if(H.head)
screenmob.client.screen -= H.head
+<<<<<<< HEAD
+=======
+
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/hud/human/persistent_inventory_update(mob/viewer)
if(!mymob)
diff --git a/code/_onclick/hud/new_player.dm b/code/_onclick/hud/new_player.dm
index 3f6a94bb40a..2bae526986d 100644
--- a/code/_onclick/hud/new_player.dm
+++ b/code/_onclick/hud/new_player.dm
@@ -1,4 +1,7 @@
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL - Custom HTML Lobby Screen
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define SHUTTER_MOVEMENT_DURATION 0.4 SECONDS
#define SHUTTER_WAIT_DURATION 0.2 SECONDS
/// Maximum number of station trait buttons we will display, please think hard before creating scenarios where there are more than this
@@ -111,7 +114,10 @@
return
flick("[base_icon_state]_pressed", src)
update_appearance(UPDATE_ICON)
+<<<<<<< HEAD
SEND_SOUND(hud.mymob, sound('modular_skyrat/master_files/sound/effects/save.ogg')) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
/atom/movable/screen/lobby/button/MouseEntered(location,control,params)
@@ -210,6 +216,7 @@
if(!.)
return
var/mob/dead/new_player/new_player = hud.mymob
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN
if(!is_admin(new_player.client) && length_char(new_player.client?.prefs?.read_preference(/datum/preference/text/flavor_text)) < FLAVOR_TEXT_CHAR_REQUIREMENT)
@@ -217,6 +224,8 @@
return
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ready = !ready
if(ready)
new_player.ready = PLAYER_READY_TO_PLAY
@@ -280,18 +289,25 @@
to_chat(new_player, span_notice("You have been added to the queue to join the game. Your position in queue is [SSticker.queued_players.len]."))
return
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN
if(length_char(new_player.client.prefs.read_preference(/datum/preference/text/flavor_text)) <= FLAVOR_TEXT_CHAR_REQUIREMENT)
to_chat(new_player, span_notice("You need at least [FLAVOR_TEXT_CHAR_REQUIREMENT] characters of flavor text to join the round. You have [length_char(new_player.client.prefs.read_preference(/datum/preference/text/flavor_text))] characters."))
return
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!LAZYACCESS(params2list(params), CTRL_CLICK))
GLOB.latejoin_menu.ui_interact(new_player)
else
to_chat(new_player, span_warning("Opening emergency fallback late join menu! If THIS doesn't show, ahelp immediately!"))
GLOB.latejoin_menu.fallback_ui(new_player)
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/atom/movable/screen/lobby/button/join/proc/show_join_button()
SIGNAL_HANDLER
set_button_status(TRUE)
@@ -585,4 +601,7 @@
#undef SHUTTER_MOVEMENT_DURATION
#undef SHUTTER_WAIT_DURATION
#undef MAX_STATION_TRAIT_BUTTONS_VERTICAL
+<<<<<<< HEAD
*/ // SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/_onclick/hud/parallax/parallax.dm b/code/_onclick/hud/parallax/parallax.dm
index 0a3732e134f..91055ec565b 100755
--- a/code/_onclick/hud/parallax/parallax.dm
+++ b/code/_onclick/hud/parallax/parallax.dm
@@ -273,7 +273,11 @@ INITIALIZE_IMMEDIATE(/atom/movable/screen/parallax_layer)
/atom/movable/screen/parallax_layer/Initialize(mapload, datum/hud/hud_owner, template = FALSE)
. = ..()
+<<<<<<< HEAD
// Parallax layers are independant of hud, they care about client
+=======
+ // Parallax layers are independent of hud, they care about client
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Not doing this will just create a bunch of hard deletes
set_new_hud(hud_owner = null)
@@ -335,7 +339,11 @@ INITIALIZE_IMMEDIATE(/atom/movable/screen/parallax_layer)
/atom/movable/screen/parallax_layer/planet
icon_state = "planet"
blend_mode = BLEND_OVERLAY
+<<<<<<< HEAD
absolute = TRUE //Status of seperation
+=======
+ absolute = TRUE //Status of separation
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
speed = 3
layer = 30
diff --git a/code/_onclick/hud/radial.dm b/code/_onclick/hud/radial.dm
index 6ee994cf79c..b608ced23d4 100644
--- a/code/_onclick/hud/radial.dm
+++ b/code/_onclick/hud/radial.dm
@@ -119,6 +119,9 @@ GLOBAL_LIST_EMPTY(radial_menus)
///A replacement icon state for the generic radial slice bg icon. Doesn't affect the next page nor the center buttons
var/radial_slice_icon
+ ///A replacement icon state for the generic radial slice bg icon. Doesn't affect the next page nor the center buttons
+ var/radial_slice_icon
+
//If we swap to vis_contens inventory these will need a redo
/datum/radial_menu/proc/check_screen_border(mob/user)
var/atom/movable/AM = anchor
@@ -162,7 +165,10 @@ GLOBAL_LIST_EMPTY(radial_menus)
var/elements_to_add = max_elements - elements.len
for(var/i in 1 to elements_to_add) //Create all elements
var/atom/movable/screen/radial/slice/new_element = new /atom/movable/screen/radial/slice
+<<<<<<< HEAD
new_element.icon = icon_path //SKYRAT EDIT ADDITION - GUNPOINT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new_element.tooltips = use_tooltips
new_element.set_parent(src)
elements += new_element
diff --git a/code/_onclick/hud/rendering/_render_readme.md b/code/_onclick/hud/rendering/_render_readme.md
index 2c5e9875801..1d21b610415 100644
--- a/code/_onclick/hud/rendering/_render_readme.md
+++ b/code/_onclick/hud/rendering/_render_readme.md
@@ -8,11 +8,19 @@
## Byond internal functionality
This part of the guide will assume that you have read the byond reference entry for rendering at www.byond.com/docs/ref//#/{notes}/renderer
+<<<<<<< HEAD
When you create an atom, this will always create an internal byond structure called an "appearance". This appearance you will likely be familiar with, as it is exposed through the /atom/var/appearance var. This appearance var holds data on how to render the object, ie what icon/icon_state/color etc it is using. Note that appearance vars will always copy, and do not hold a reference. When you update a var, for example lets pretend we add a filter, the appearance will be updated to include the filter. Note that, however, vis_contents objets are uniquely excluded from appearances. Then, when the filter is updated, the appearance will be recreated, and the atom marked as "dirty". After it has been updated, the SendMaps() function (sometimes also called maptick), which is a internal byond function that iterates over all objects in a clients view and in the clients.mob.contents, checks for "dirty" atoms, then resends any "dirty" appearances to clients as needed and unmarks them as dirty. This function is notoriosly slow, but we can see its tick usage through the world.map_cpu var. We can also avoid more complex checks checking whether an object is visible on a clients screen by using the TILE_BOUND appearance flag.
Finally, we arrive at clientside behavior, where we have two main clientside functions: GetMapIcons, and Render. GetMapIcons is repsonsible for actual rendering calculations on the clientside, such as "Group Icons and Set bounds", which performs clientside calculations for transform matrixes. Note that particles here are handled in a separate thread and are not diplayed in the clientside profiler. Render handles the actual drawing of the screen.
For debugging rendering issues its reccomended you do two things:
+=======
+When you create an atom, this will always create an internal byond structure called an "appearance". This appearance you will likely be familiar with, as it is exposed through the /atom/var/appearance var. This appearance var holds data on how to render the object, ie what icon/icon_state/color etc it is using. Note that appearance vars will always copy, and do not hold a reference. When you update a var, for example lets pretend we add a filter, the appearance will be updated to include the filter. Note that, however, vis_contents objets are uniquely excluded from appearances. Then, when the filter is updated, the appearance will be recreated, and the atom marked as "dirty". After it has been updated, the SendMaps() function (sometimes also called maptick), which is a internal byond function that iterates over all objects in a clients view and in the clients.mob.contents, checks for "dirty" atoms, then resends any "dirty" appearances to clients as needed and unmarks them as dirty. This function is notoriously slow, but we can see its tick usage through the world.map_cpu var. We can also avoid more complex checks checking whether an object is visible on a clients screen by using the TILE_BOUND appearance flag.
+
+Finally, we arrive at clientside behavior, where we have two main clientside functions: GetMapIcons, and Render. GetMapIcons is responsible for actual rendering calculations on the clientside, such as "Group Icons and Set bounds", which performs clientside calculations for transform matrixes. Note that particles here are handled in a separate thread and are not displayed in the clientside profiler. Render handles the actual drawing of the screen.
+
+For debugging rendering issues its recommended you do two things:
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
A) Talk to someone who has inside knowledge(like lummox) about it, most of this is undocumented and bugs often
B) Use the undocumented debug printer which reads of data on icons rendering, this is very dense but can be useful in some cases. To use: Right click top tab -> Options & Messages -> Client -> Command -> Enter ".debug profile mapicons" and press Enter -> go to your Byond directory and find BYOND/cfg/mapicons.json . Yes this is one giant one-line json.
@@ -22,9 +30,15 @@ The following is an incomplete list of pitfalls that come from byond snowflake t
1. Transforms are very slow on clientside. This is not usually noticable, but if you start using large amounts of them it will grind you to a halt quickly, regardless of whether its on overlays or objs
2. The darkness plane. This is unused, as it doesn't work with our rendering format, so this section is purely academic. The darkness plane has specific variables it needs to render correctly, and these can be found in the plane masters file. it is composed internally of two parts, a black mask over the clients screen, and a non rendering mask that blocks all luminosity=0 turfs and their contents from rendering if the SEE_BLACKNESS flag is set properly. The blocker will always block rendering but the mask can be layered under other objects.
3. render_target/source. Render_target/source will only copy certain rendering instructions, and these are only defined as "etc." in the byond reference. Known non copied appearance vars include: blend_mode, plane, layer, vis_contents, mouse_opacity...
+<<<<<<< HEAD
4. Large icons on the screen that peek over the edge will instead of only rendering partly like you would expect will instead stretch the screen while not adgusting the render buffer, which means that you can actively see as tiles and map objects are rendered. You can use this for an easy "offscreen" UI.
5. Numerically large filters on objects of any size will torpedo performance, even though large objects with small filters will perform massively better. (ie blur(size=20) BAD)
6. Texture Atlas: the texture atlas byond uses to render icons is very susceptible to corruption and can regularily replace icons with other icons or just not render at all. This can be exasperated by alt tabbing or pausing the dreamseeker process.
+=======
+4. Large icons on the screen that peek over the edge will instead of only rendering partly like you would expect will instead stretch the screen while not adjusting the render buffer, which means that you can actively see as tiles and map objects are rendered. You can use this for an easy "offscreen" UI.
+5. Numerically large filters on objects of any size will torpedo performance, even though large objects with small filters will perform massively better. (ie blur(size=20) BAD)
+6. Texture Atlas: the texture atlas byond uses to render icons is very susceptible to corruption and can regularly replace icons with other icons or just not render at all. This can be exasperated by alt tabbing or pausing the dreamseeker process.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
7. The renderer is awful code and lummox said he will try changing a large part of it for 515 so keep an eye on that
8. Byond uses DirectX 9 (Lummox said he wants to update to DirectX 11)
9. Particles are just fancy overlays and are not independent of their owner
@@ -32,7 +46,11 @@ The following is an incomplete list of pitfalls that come from byond snowflake t
11. Displacement filter: The byond "displacement filter" does not, as the name would make you expect, use displacement maps, but instead uses normal maps.
## The rendering solution
+<<<<<<< HEAD
One of the main issues with making pretty effects is how objects can only render to one plane, and how filters can only be applied to single objects. Quite simply it means we cant apply effects to multiple planes at once, and an effect to one plane only by treating it as a single unit:
+=======
+One of the main issues with making pretty effects is how objects can only render to one plane, and how filters can only be applied to single objects. Quite simply it means we can't apply effects to multiple planes at once, and an effect to one plane only by treating it as a single unit:
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3

@@ -50,8 +68,15 @@ Through these this allows us to treat planes as single objects, and lets us dist
## Render plates
+<<<<<<< HEAD
The rendering system uses two objects to unify planes: render_relay and render_plates. Render relays use render_target/source and the relay_render_to_plane proc to replicate the plane master on the render relay. This render relay is then rendered onto a render_plate, which is a plane master that renders the render_relays onto itself. This plate can then be hierachically rendered with the same process until it reaches the master render_plate, which is the plate that will actually render to the player. These plates naturally in the byond style have quirks. For example, rendering to two plates will double any effects such as color or filters, and as such you need to carefully manage how you render them. Keep in mind as well that when sorting the layers for rendering on a plane that they should not be negative, this is handled automatically in relay_render_to_plane. When debugging note that mouse_opacity can act bizzarly with this method, such as only allowing you to click things that are layered over objects on a certain plane but auomatically setting the mouse_opacity should be handling this. Note that if you decide to manipulate a plane with internal byond objects that you will have to manually extrapolate the vars that are set if you want to render them to another plane (See blackness plane for example), and that this is not documented anywhere.
Goodluck and godspeed with coding
+=======
+The rendering system uses two objects to unify planes: render_relay and render_plates. Render relays use render_target/source and the relay_render_to_plane proc to replicate the plane master on the render relay. This render relay is then rendered onto a render_plate, which is a plane master that renders the render_relays onto itself. This plate can then be hierarchically rendered with the same process until it reaches the master render_plate, which is the plate that will actually render to the player. These plates naturally in the byond style have quirks. For example, rendering to two plates will double any effects such as color or filters, and as such you need to carefully manage how you render them. Keep in mind as well that when sorting the layers for rendering on a plane that they should not be negative, this is handled automatically in relay_render_to_plane. When debugging note that mouse_opacity can act bizarrely with this method, such as only allowing you to click things that are layered over objects on a certain plane but automatically setting the mouse_opacity should be handling this. Note that if you decide to manipulate a plane with internal byond objects that you will have to manually extrapolate the vars that are set if you want to render them to another plane (See blackness plane for example), and that this is not documented anywhere.
+
+
+Good luck and godspeed with coding
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
- Just another contributor
diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index 58333406c20..b7ea5a7719b 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -110,7 +110,7 @@
if(world.time <= usr.next_move)
return 1
- if(usr.incapacitated())
+ if(usr.incapacitated)
return 1
if(ismob(usr))
@@ -143,7 +143,11 @@
screen_loc = ui_building
/atom/movable/screen/area_creator/Click()
+<<<<<<< HEAD
if(usr.incapacitated() || (isobserver(usr) && !isAdminGhostAI(usr)))
+=======
+ if(usr.incapacitated || (isobserver(usr) && !isAdminGhostAI(usr)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
var/area/A = get_area(usr)
if(!A.outdoors)
@@ -204,7 +208,11 @@
if(world.time <= usr.next_move)
return TRUE
+<<<<<<< HEAD
if(usr.incapacitated(IGNORE_STASIS))
+=======
+ if(INCAPACITATED_IGNORING(usr, INCAPABLE_STASIS))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
if(ismecha(usr.loc)) // stops inventory actions in a mech
return TRUE
@@ -294,7 +302,7 @@
return TRUE
if(world.time <= user.next_move)
return TRUE
- if(user.incapacitated())
+ if(user.incapacitated)
return TRUE
if (ismecha(user.loc)) // stops inventory actions in a mech
return TRUE
@@ -471,7 +479,7 @@
if(world.time <= usr.next_move)
return TRUE
- if(usr.incapacitated())
+ if(usr.incapacitated)
return TRUE
if(ismecha(usr.loc)) // stops inventory actions in a mech
return TRUE
@@ -736,7 +744,11 @@
var/client/holder
INITIALIZE_IMMEDIATE(/atom/movable/screen/splash)
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/atom/movable/screen/splash/Initialize(mapload, datum/hud/hud_owner, client/C, visible, use_previous_title)
. = ..()
if(!istype(C))
@@ -756,7 +768,11 @@ INITIALIZE_IMMEDIATE(/atom/movable/screen/splash)
icon = SStitle.previous_icon
holder.screen += src
+<<<<<<< HEAD
*/ // SKYRAT EDIT END
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/atom/movable/screen/splash/proc/Fade(out, qdel_after = TRUE)
if(QDELETED(src))
return
diff --git a/code/_onclick/item_attack.dm b/code/_onclick/item_attack.dm
index 33de24c3361..dab3c844084 100644
--- a/code/_onclick/item_attack.dm
+++ b/code/_onclick/item_attack.dm
@@ -32,7 +32,11 @@
if (SECONDARY_ATTACK_CANCEL_ATTACK_CHAIN)
return TRUE
if (SECONDARY_ATTACK_CONTINUE_CHAIN)
+<<<<<<< HEAD
// Normal behavior
+=======
+ EMPTY_BLOCK_GUARD // Normal behavior
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
CRASH("pre_attack_secondary must return an SECONDARY_ATTACK_* define, please consult code/__DEFINES/combat.dm")
else
@@ -51,7 +55,11 @@
if (SECONDARY_ATTACK_CANCEL_ATTACK_CHAIN)
return TRUE
if (SECONDARY_ATTACK_CONTINUE_CHAIN)
+<<<<<<< HEAD
// Normal behavior
+=======
+ EMPTY_BLOCK_GUARD // Normal behavior
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
CRASH("attackby_secondary must return an SECONDARY_ATTACK_* define, please consult code/__DEFINES/combat.dm")
else
@@ -409,7 +417,11 @@
// rev deconversion through blunt trauma.
// this can be signalized to the rev datum
+<<<<<<< HEAD
if(mind && stat == CONSCIOUS && src != attacker && prob(damage_done + ((maxHealth - health) * 0.5))) // SKYRAT EDIT CHANGE - ORIGINAL : if(mind && stat == CONSCIOUS && src != attacker && prob(damage_done + ((100 - health) * 0.5)))
+=======
+ if(mind && stat == CONSCIOUS && src != attacker && prob(damage_done + ((100 - health) * 0.5)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/antagonist/rev/rev = mind.has_antag_datum(/datum/antagonist/rev)
rev?.remove_revolutionary(attacker)
diff --git a/code/_onclick/other_mobs.dm b/code/_onclick/other_mobs.dm
index 2f1465ac4ff..d2dbc398538 100644
--- a/code/_onclick/other_mobs.dm
+++ b/code/_onclick/other_mobs.dm
@@ -109,11 +109,19 @@
if(!(interaction_flags_atom & INTERACT_ATOM_IGNORE_INCAPACITATED))
var/ignore_flags = NONE
if(interaction_flags_atom & INTERACT_ATOM_IGNORE_RESTRAINED)
+<<<<<<< HEAD
ignore_flags |= IGNORE_RESTRAINTS
if(!(interaction_flags_atom & INTERACT_ATOM_CHECK_GRAB))
ignore_flags |= IGNORE_GRAB
if(user.incapacitated(ignore_flags))
+=======
+ ignore_flags |= INCAPABLE_RESTRAINTS
+ if(!(interaction_flags_atom & INTERACT_ATOM_CHECK_GRAB))
+ ignore_flags |= INCAPABLE_GRAB
+
+ if(INCAPACITATED_IGNORING(user, ignore_flags))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/controllers/configuration/configuration.dm b/code/controllers/configuration/configuration.dm
index 5af3f7b8422..b1eb683a5d4 100644
--- a/code/controllers/configuration/configuration.dm
+++ b/code/controllers/configuration/configuration.dm
@@ -104,11 +104,14 @@
if(CONFIG_GET(flag/usewhitelist))
load_whitelist()
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
populate_interaction_instances()
remove_erp_things()
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
loaded = TRUE
if (Master)
diff --git a/code/controllers/configuration/entries/general.dm b/code/controllers/configuration/entries/general.dm
index 22b22c54417..42f761c9152 100644
--- a/code/controllers/configuration/entries/general.dm
+++ b/code/controllers/configuration/entries/general.dm
@@ -115,10 +115,13 @@
/// log attack messages
/datum/config_entry/flag/log_attack
+<<<<<<< HEAD
/datum/config_entry/flag/log_subtler // log subtler emotes //SKYRAT EDIT ADDITION
/datum/config_entry/flag/log_econ // log economy actions
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// log emotes
/datum/config_entry/flag/log_emote
@@ -317,7 +320,11 @@
/datum/config_entry/string/banappeals
/datum/config_entry/string/wikiurl
+<<<<<<< HEAD
default = "https://wiki.skyrat13.space/index.php" //SKYRAT EDIT - Original: "http://www.tgstation13.org/wiki"
+=======
+ default = "http://www.tgstation13.org/wiki"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/config_entry/string/forumurl
default = "http://tgstation13.org/phpBB/index.php"
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index 337bb5d3f85..3a2e18458a6 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -324,7 +324,11 @@ ADMIN_VERB(cmd_controller_view_ui, R_SERVER|R_DEBUG, "Controller Overview", "Vie
init_stage_completed = 0
var/mc_started = FALSE
+<<<<<<< HEAD
add_startup_message("Initializing subsystems...") //SKYRAT EDIT CHANGE - Custom HTML Lobby Screen
+=======
+ to_chat(world, span_boldannounce("Initializing subsystems..."))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/stage_sorted_subsystems = new(INITSTAGE_MAX)
for (var/i in 1 to INITSTAGE_MAX)
@@ -358,8 +362,11 @@ ADMIN_VERB(cmd_controller_view_ui, R_SERVER|R_DEBUG, "Controller Overview", "Vie
SetRunLevel(1) // Intentionally not using the defines here because the MC doesn't care about them
// Loop.
Master.StartProcessing(0)
+<<<<<<< HEAD
add_startup_message("Clearing clutter...") //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/time = (REALTIMEOFDAY - start_timeofday) / 10
@@ -457,12 +464,19 @@ ADMIN_VERB(cmd_controller_view_ui, R_SERVER|R_DEBUG, "Controller Overview", "Vie
chat_warning = TRUE
var/message = "[message_prefix] [seconds] second[seconds == 1 ? "" : "s"]!"
+<<<<<<< HEAD
// SKYRAT EDIT REMOVAL BEGIN -- chat_message not used anymore due to change below
// var/chat_message = chat_warning ? span_boldwarning(message) : span_boldannounce(message)
// SKYRAT EDIT REMOVAL END
if(result != SS_INIT_NO_MESSAGE)
add_startup_message(message, chat_warning) //SKYRAT EDIT CHANGE - ORIGINAL: to_chat(world, chat_message)
+=======
+ var/chat_message = chat_warning ? span_boldwarning(message) : span_boldannounce(message)
+
+ if(result != SS_INIT_NO_MESSAGE)
+ to_chat(world, chat_message)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
log_world(message)
/datum/controller/master/proc/SetRunLevel(new_runlevel)
@@ -579,7 +593,11 @@ ADMIN_VERB(cmd_controller_view_ui, R_SERVER|R_DEBUG, "Controller Overview", "Vie
//Anti-tick-contention heuristics:
if (init_stage == INITSTAGE_MAX)
+<<<<<<< HEAD
//if there are mutiple sleeping procs running before us hogging the cpu, we have to run later.
+=======
+ //if there are multiple sleeping procs running before us hogging the cpu, we have to run later.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// (because sleeps are processed in the order received, longer sleeps are more likely to run first)
if (starting_tick_usage > TICK_LIMIT_MC) //if there isn't enough time to bother doing anything this tick, sleep a bit.
sleep_delta *= 2
diff --git a/code/controllers/subsystem.dm b/code/controllers/subsystem.dm
index 63bee7bb22e..33b793596d0 100644
--- a/code/controllers/subsystem.dm
+++ b/code/controllers/subsystem.dm
@@ -19,7 +19,7 @@
/// Time to wait (in deciseconds) between each call to fire(). Must be a positive integer.
var/wait = 20
- /// Priority Weight: When mutiple subsystems need to run in the same tick, higher priority subsystems will be given a higher share of the tick before MC_TICK_CHECK triggers a sleep, higher priority subsystems also run before lower priority subsystems
+ /// Priority Weight: When multiple subsystems need to run in the same tick, higher priority subsystems will be given a higher share of the tick before MC_TICK_CHECK triggers a sleep, higher priority subsystems also run before lower priority subsystems
var/priority = FIRE_PRIORITY_DEFAULT
/// [Subsystem Flags][SS_NO_INIT] to control binary behavior. Flags must be set at compile time or before preinit finishes to take full effect. (You can also restart the mc to force them to process again)
@@ -272,7 +272,11 @@
/datum/controller/subsystem/proc/OnConfigLoad()
/**
+<<<<<<< HEAD
* Used to initialize the subsystem. This is expected to be overriden by subtypes.
+=======
+ * Used to initialize the subsystem. This is expected to be overridden by subtypes.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*/
/datum/controller/subsystem/Initialize()
return SS_INIT_NONE
diff --git a/code/controllers/subsystem/ai_controllers.dm b/code/controllers/subsystem/ai_controllers.dm
index 087aa828165..4d74fd66898 100644
--- a/code/controllers/subsystem/ai_controllers.dm
+++ b/code/controllers/subsystem/ai_controllers.dm
@@ -9,11 +9,14 @@ SUBSYSTEM_DEF(ai_controllers)
///type of status we are interested in running
var/planning_status = AI_STATUS_ON
/// The tick cost of all active AI, calculated on fire.
+<<<<<<< HEAD
var/cost_on
/// The tick cost of all idle AI, calculated on fire.
var/cost_idle
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/our_cost
/datum/controller/subsystem/ai_controllers/Initialize()
diff --git a/code/controllers/subsystem/atoms.dm b/code/controllers/subsystem/atoms.dm
index 71eaed14ea2..457c44ac2ca 100644
--- a/code/controllers/subsystem/atoms.dm
+++ b/code/controllers/subsystem/atoms.dm
@@ -75,7 +75,11 @@ SUBSYSTEM_DEF(atoms)
rustg_file_write(json_encode(mapload_init_times), "[GLOB.log_directory]/init_times.json")
#endif
+<<<<<<< HEAD
/// Actually creates the list of atoms. Exists soley so a runtime in the creation logic doesn't cause initalized to totally break
+=======
+/// Actually creates the list of atoms. Exists solely so a runtime in the creation logic doesn't cause initialized to totally break
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/atoms/proc/CreateAtoms(list/atoms, list/atoms_to_return = null, mapload_source = null)
if (atoms_to_return)
LAZYINITLIST(created_atoms)
@@ -137,8 +141,13 @@ SUBSYSTEM_DEF(atoms)
return null
return initialized_state[state_length][1]
+<<<<<<< HEAD
/// Use this to set initialized to prevent error states where the old initialized is overriden, and we end up losing all context
/// Accepts a state and a source, the most recent state is used, sources exist to prevent overriding old values accidentially
+=======
+/// Use this to set initialized to prevent error states where the old initialized is overridden, and we end up losing all context
+/// Accepts a state and a source, the most recent state is used, sources exist to prevent overriding old values accidentally
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/atoms/proc/set_tracked_initalized(state, source)
if(!length(initialized_state))
base_initialized = initialized
diff --git a/code/controllers/subsystem/blackbox.dm b/code/controllers/subsystem/blackbox.dm
index 13180adbad7..900f78efcb0 100644
--- a/code/controllers/subsystem/blackbox.dm
+++ b/code/controllers/subsystem/blackbox.dm
@@ -47,6 +47,7 @@ SUBSYSTEM_DEF(blackbox)
/* // SKYRAT EDIT CHANGE - MULTISERVER - ORIGINAL:
var/datum/db_query/query_record_playercount = SSdbcore.NewQuery({"
INSERT INTO [format_table_name("legacy_population")] (playercount, admincount, time, server_ip, server_port, round_id)
+<<<<<<< HEAD
VALUES (:playercount, :admincount, NOW(), INET_ATON(:server_ip), :server_port, :round_id)
*/
var/datum/db_query/query_record_playercount = SSdbcore.NewQuery({"
@@ -56,6 +57,12 @@ SUBSYSTEM_DEF(blackbox)
"playercount" = playercount,
"admincount" = admincount,
"server_name" = CONFIG_GET(string/serversqlname), // SKYRAT EDIT ADDITION - MULTISERVER
+=======
+ VALUES (:playercount, :admincount, NOW(), INET_ATON(:server_ip), :server_port, :round_id)
+ "}, list(
+ "playercount" = playercount,
+ "admincount" = admincount,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"server_ip" = world.internet_address || "0",
"server_port" = "[world.port]",
"round_id" = GLOB.round_id,
@@ -158,6 +165,8 @@ SUBSYSTEM_DEF(blackbox)
record_feedback("tally", "radio_usage", 1, "centcom")
if(FREQ_AI_PRIVATE)
record_feedback("tally", "radio_usage", 1, "ai private")
+ if(FREQ_ENTERTAINMENT)
+ record_feedback("tally", "radio_usage", 1, "entertainment")
if(FREQ_CTF_RED)
record_feedback("tally", "radio_usage", 1, "CTF red team")
if(FREQ_CTF_BLUE)
@@ -343,10 +352,13 @@ Versioning
var/datum/db_query/query_report_death = SSdbcore.NewQuery({"
INSERT INTO [format_table_name("death")] (pod, x_coord, y_coord, z_coord, mapname, server_ip, server_port, round_id, tod, job, special, name, byondkey, laname, lakey, bruteloss, fireloss, brainloss, oxyloss, toxloss, staminaloss, last_words, suicide)
VALUES (:pod, :x_coord, :y_coord, :z_coord, :map, INET_ATON(:internet_address), :port, :round_id, NOW(), :job, :special, :name, :key, :laname, :lakey, :brute, :fire, :brain, :oxy, :tox, :stamina, :last_words, :suicide)
+<<<<<<< HEAD
*/
var/datum/db_query/query_report_death = SSdbcore.NewQuery({"
INSERT INTO [format_table_name("death")] (pod, x_coord, y_coord, z_coord, mapname, server_name, server_ip, server_port, round_id, tod, job, special, name, byondkey, laname, lakey, bruteloss, fireloss, brainloss, oxyloss, toxloss, staminaloss, last_words, suicide)
VALUES (:pod, :x_coord, :y_coord, :z_coord, :map, :server_name, INET_ATON(:internet_address), :port, :round_id, NOW(), :job, :special, :name, :key, :laname, :lakey, :brute, :fire, :brain, :oxy, :tox, :clone, :stamina, :last_words, :suicide)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"}, list(
"name" = L.real_name,
"key" = L.ckey,
diff --git a/code/controllers/subsystem/dbcore.dm b/code/controllers/subsystem/dbcore.dm
index 0e8e3dfd90b..7dcab6daf7e 100644
--- a/code/controllers/subsystem/dbcore.dm
+++ b/code/controllers/subsystem/dbcore.dm
@@ -189,12 +189,17 @@ SUBSYSTEM_DEF(dbcore)
//Take over control of all active queries
var/queries_to_check = queries_active.Copy()
queries_active.Cut()
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Start all waiting queries
for(var/datum/db_query/query in queries_standby)
run_query(query)
queries_to_check += query
queries_standby -= query
+<<<<<<< HEAD
//wait for them all to finish
for(var/datum/db_query/query in queries_to_check)
@@ -205,6 +210,13 @@ SUBSYSTEM_DEF(dbcore)
MassInsert(table, rows = queued_log_entries_by_table[table], duplicate_key = FALSE, ignore_errors = FALSE, warn = FALSE, async = TRUE, special_columns = null)
// SKYRAT EDIT END
+=======
+
+ //wait for them all to finish
+ for(var/datum/db_query/query in queries_to_check)
+ UNTIL(query.process() || REALTIMEOFDAY > endtime)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//log shutdown to the db
var/datum/db_query/query_round_shutdown = SSdbcore.NewQuery(
"UPDATE [format_table_name("round")] SET shutdown_datetime = Now(), end_state = :end_state WHERE id = :round_id",
@@ -252,7 +264,12 @@ SUBSYSTEM_DEF(dbcore)
/datum/controller/subsystem/dbcore/proc/Connect()
if(IsConnected())
return TRUE
+
+ if(connection)
+ Disconnect() //clear the current connection handle so isconnected() calls stop invoking rustg
+ connection = null //make sure its cleared even if runtimes happened
+<<<<<<< HEAD
if(connection)
Disconnect() //clear the current connection handle so isconnected() calls stop invoking rustg
connection = null //make sure its cleared even if runtimes happened
@@ -261,6 +278,12 @@ SUBSYSTEM_DEF(dbcore)
failed_connections = 0
failed_connection_timeout = 0
+=======
+ if(failed_connection_timeout <= world.time) //it's been long enough since we failed to connect, reset the counter
+ failed_connections = 0
+ failed_connection_timeout = 0
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(failed_connection_timeout > 0)
return FALSE
@@ -298,7 +321,11 @@ SUBSYSTEM_DEF(dbcore)
log_sql("Connect() failed | [last_error]")
++failed_connections
//If it failed to establish a connection more than 5 times in a row, don't bother attempting to connect for a time.
+<<<<<<< HEAD
if(failed_connections > max_connection_failures)
+=======
+ if(failed_connections > max_connection_failures)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
failed_connection_timeout_count++
//basic exponential backoff algorithm
failed_connection_timeout = world.time + ((2 ** failed_connection_timeout_count) SECONDS)
diff --git a/code/controllers/subsystem/dynamic/dynamic.dm b/code/controllers/subsystem/dynamic/dynamic.dm
index e81260cf306..da654339b69 100644
--- a/code/controllers/subsystem/dynamic/dynamic.dm
+++ b/code/controllers/subsystem/dynamic/dynamic.dm
@@ -140,10 +140,17 @@ SUBSYSTEM_DEF(dynamic)
/// The maximum amount of time for antag random events to be hijacked.
var/random_event_hijack_maximum = 18 MINUTES
+<<<<<<< HEAD
/// What is the lower bound of when the roundstart annoucement is sent out?
var/waittime_l = 600
/// What is the higher bound of when the roundstart annoucement is sent out?
+=======
+ /// What is the lower bound of when the roundstart announcement is sent out?
+ var/waittime_l = 600
+
+ /// What is the higher bound of when the roundstart announcement is sent out?
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/waittime_h = 1800
/// A number between 0 and 100. The maximum amount of threat allowed to generate.
@@ -571,10 +578,14 @@ SUBSYSTEM_DEF(dynamic)
if (!CONFIG_GET(flag/no_intercept_report))
addtimer(CALLBACK(src, PROC_REF(send_intercept)), rand(waittime_l, waittime_h))
+<<<<<<< HEAD
//SKYRAT EDIT START - DIVERGENCY/GOALS REPORT
else
addtimer(CALLBACK(src, PROC_REF(send_trait_report)), rand(waittime_l, waittime_h))
//SKYRAT EDIT END
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
addtimer(CALLBACK(src, PROC_REF(display_roundstart_logout_report)), ROUNDSTART_LOGOUT_REPORT_TIME)
if(CONFIG_GET(flag/reopen_roundstart_suicide_roles))
@@ -946,6 +957,7 @@ SUBSYSTEM_DEF(dynamic)
ruleset.restricted_roles |= ruleset.protected_roles
if(CONFIG_GET(flag/protect_assistant_from_antagonist))
ruleset.restricted_roles |= JOB_ASSISTANT
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
for(var/datum/job/iterating_job as anything in subtypesof(/datum/job))
if(!initial(iterating_job.antagonist_restricted))
@@ -958,6 +970,8 @@ SUBSYSTEM_DEF(dynamic)
else
ruleset.restricted_roles |= initial(iterating_job.title)
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!(ruleset.ruleset_category & GLOB.dynamic_ruleset_categories))
ruleset.requirements = list(101,101,101,101,101,101,101,101,101,101)
diff --git a/code/controllers/subsystem/dynamic/dynamic_rulesets.dm b/code/controllers/subsystem/dynamic/dynamic_rulesets.dm
index 8460307009e..f5ef98805ab 100644
--- a/code/controllers/subsystem/dynamic/dynamic_rulesets.dm
+++ b/code/controllers/subsystem/dynamic/dynamic_rulesets.dm
@@ -262,6 +262,7 @@
candidates.Remove(candidate_player)
continue
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(!candidate_client.prefs?.read_preference(/datum/preference/toggle/be_antag))
candidates.Remove(candidate_player)
@@ -272,6 +273,8 @@
continue
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(candidate_client.get_remaining_days(minimum_required_age) > 0)
candidates.Remove(candidate_player)
continue
diff --git a/code/controllers/subsystem/dynamic/dynamic_rulesets_latejoin.dm b/code/controllers/subsystem/dynamic/dynamic_rulesets_latejoin.dm
index afc3bca78d0..9fd2217bb66 100644
--- a/code/controllers/subsystem/dynamic/dynamic_rulesets_latejoin.dm
+++ b/code/controllers/subsystem/dynamic/dynamic_rulesets_latejoin.dm
@@ -16,6 +16,7 @@
candidates.Remove(P)
else if (!((antag_preference || antag_flag) in P.client.prefs.be_special) || is_banned_from(P.ckey, list(antag_flag_override || antag_flag, ROLE_SYNDICATE)))
candidates.Remove(P)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION - PROTECTED JOBS
else if(P.client?.prefs && !P.client.prefs.read_preference(/datum/preference/toggle/be_antag))
candidates.Remove(P)
@@ -24,6 +25,8 @@
candidates.Remove(P)
continue
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/dynamic_ruleset/latejoin/ready(forced = 0)
if (forced)
diff --git a/code/controllers/subsystem/dynamic/dynamic_rulesets_midround.dm b/code/controllers/subsystem/dynamic/dynamic_rulesets_midround.dm
index fb7b7db9bb9..69b6066216c 100644
--- a/code/controllers/subsystem/dynamic/dynamic_rulesets_midround.dm
+++ b/code/controllers/subsystem/dynamic/dynamic_rulesets_midround.dm
@@ -63,6 +63,7 @@
if (isnull(creature.client)) // Are they connected?
trimmed_list.Remove(creature)
continue
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(is_banned_from(creature.client.ckey, BAN_ANTAGONIST))
trimmed_list.Remove(creature)
@@ -71,6 +72,8 @@
trimmed_list.Remove(creature)
continue
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(creature.client.get_remaining_days(minimum_required_age) > 0)
trimmed_list.Remove(creature)
continue
diff --git a/code/controllers/subsystem/dynamic/ruleset_picking.dm b/code/controllers/subsystem/dynamic/ruleset_picking.dm
index 4373fe76da0..a8bdf6bc683 100644
--- a/code/controllers/subsystem/dynamic/ruleset_picking.dm
+++ b/code/controllers/subsystem/dynamic/ruleset_picking.dm
@@ -1,4 +1,8 @@
+<<<<<<< HEAD
#define ADMIN_CANCEL_MIDROUND_TIME (180 SECONDS) //SKYRAT EDIT - ORIGINAL 10 SECONDS
+=======
+#define ADMIN_CANCEL_MIDROUND_TIME (10 SECONDS)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///
///
@@ -66,14 +70,19 @@
ADMIN_CANCEL_MIDROUND_TIME, \
TIMER_STOPPABLE, \
)
+<<<<<<< HEAD
// SKYRAT EDIT REMOVAL BEGIN - Event notification
/**
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
log_dynamic("[rule] ruleset executing...")
message_admins("DYNAMIC: Executing midround ruleset [rule] in [DisplayTimeText(ADMIN_CANCEL_MIDROUND_TIME)]. \
CANCEL | \
SOMETHING ELSE ")
return rule
+<<<<<<< HEAD
*/
// SKYRAT EDIT REMOVAL END - Event notification
@@ -93,6 +102,8 @@
return rule
// SKYRAT EDIT ADDITION END - Event notification
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Fired after admins do not cancel a midround injection.
/datum/controller/subsystem/dynamic/proc/execute_midround_rule(datum/dynamic_ruleset/rule)
diff --git a/code/controllers/subsystem/events.dm b/code/controllers/subsystem/events.dm
index f4b8c8138b8..1d601bb6769 100644
--- a/code/controllers/subsystem/events.dm
+++ b/code/controllers/subsystem/events.dm
@@ -17,8 +17,11 @@ SUBSYSTEM_DEF(events)
///Will wizard events be included in the event pool?
var/wizardmode = FALSE
+<<<<<<< HEAD
var/list/previously_run = list() //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/events/Initialize()
for(var/type in typesof(/datum/round_event_control))
var/datum/round_event_control/event = new type()
diff --git a/code/controllers/subsystem/explosions.dm b/code/controllers/subsystem/explosions.dm
index 31de67361bf..e547a324891 100644
--- a/code/controllers/subsystem/explosions.dm
+++ b/code/controllers/subsystem/explosions.dm
@@ -454,11 +454,14 @@ ADMIN_VERB(check_bomb_impacts, R_DEBUG, "Check Bomb Impact", "See what the effec
if(EXPLODE_LIGHT)
SSexplosions.lowturf += explode
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
for(var/obj/machinery/light/iterating_light in explode)
iterating_light.start_flickering()
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(prob(40) && dist < flame_range && !isspaceturf(explode) && !explode.density)
flameturf += explode
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index 706b4e51d69..980b86a425b 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -346,6 +346,10 @@ SUBSYSTEM_DEF(garbage)
/// Datums passed to this will be given a chance to clean up references to allow the GC to collect them.
/proc/qdel(datum/to_delete, force = FALSE)
if(!istype(to_delete))
+<<<<<<< HEAD
+=======
+ DREAMLUAU_CLEAR_REF_USERDATA(to_delete)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
del(to_delete)
return
diff --git a/code/controllers/subsystem/id_access.dm b/code/controllers/subsystem/id_access.dm
index 6c5df16d7e7..fe0c46c8d6d 100644
--- a/code/controllers/subsystem/id_access.dm
+++ b/code/controllers/subsystem/id_access.dm
@@ -330,7 +330,10 @@ SUBSYSTEM_DEF(id_access)
desc_by_access["[ACCESS_CENT_CAPTAIN]"] = "Code Gold"
desc_by_access["[ACCESS_CENT_BAR]"] = "Code Scotch"
desc_by_access["[ACCESS_BIT_DEN]"] = "Bitrunner Den"
+<<<<<<< HEAD
desc_by_access["[ACCESS_BARBER]"] = "Barber" // SKYRAT EDIT ADD - BARBER UPDATE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* Returns the access bitflags associated with any given access level.
@@ -399,6 +402,11 @@ SUBSYSTEM_DEF(id_access)
id_card.clear_access()
id_card.trim = trim
+<<<<<<< HEAD
+=======
+ id_card.big_pointer = trim.big_pointer
+ id_card.pointer_color = trim.pointer_color
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(copy_access)
id_card.access = trim.access.Copy()
@@ -442,6 +450,11 @@ SUBSYSTEM_DEF(id_access)
id_card.department_color_override = trim.department_color
id_card.department_state_override = trim.department_state
id_card.subdepartment_color_override = trim.subdepartment_color
+<<<<<<< HEAD
+=======
+ id_card.big_pointer = trim.big_pointer
+ id_card.pointer_color = trim.pointer_color
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!check_forged || !id_card.forged)
id_card.assignment = trim.assignment
@@ -462,6 +475,11 @@ SUBSYSTEM_DEF(id_access)
id_card.department_color_override = null
id_card.department_state_override = null
id_card.subdepartment_color_override = null
+<<<<<<< HEAD
+=======
+ id_card.big_pointer = id_card.trim.big_pointer
+ id_card.pointer_color = id_card.trim.pointer_color
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* Adds the accesses associated with a trim to an ID card.
diff --git a/code/controllers/subsystem/job.dm b/code/controllers/subsystem/job.dm
index e1409c12f89..4b54eb4ac5e 100644
--- a/code/controllers/subsystem/job.dm
+++ b/code/controllers/subsystem/job.dm
@@ -294,12 +294,15 @@ SUBSYSTEM_DEF(job)
JobDebug("GRJ skipping command role, Player: [player], Job: [job]")
continue
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(job.departments_bitflags & DEPARTMENT_BITFLAG_CENTRAL_COMMAND) //If you want a CC position, select it!
JobDebug("GRJ skipping Central Command role, Player: [player], Job: [job]")
continue
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// This check handles its own output to JobDebug.
if(check_job_eligibility(player, job, "GRJ", add_job_to_log = TRUE) != JOB_AVAILABLE)
continue
@@ -559,6 +562,7 @@ SUBSYSTEM_DEF(job)
//Gives the player the stuff he should have with his rank
/datum/controller/subsystem/job/proc/EquipRank(mob/living/equipping, datum/job/job, client/player_client)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - ALTERNATIVE_JOB_TITLES
// The alt job title, if user picked one, or the default
var/alt_title = player_client?.prefs.alt_job_titles[job.title]
@@ -572,13 +576,26 @@ SUBSYSTEM_DEF(job)
equipping.on_job_equipping(job, player_client) // SKYRAT EDIT CHANGE - ALTERNATIVE_JOB_TITLES - ORIGINAL: equipping.on_job_equipping(job)
job.announce_job(equipping, alt_title) // SKYRAT EDIT CHANGE - ALTERNATIVE_JOB_TITLES - ORIGINAL: job.announce_job(equipping)
+=======
+ equipping.job = job.title
+
+ SEND_SIGNAL(equipping, COMSIG_JOB_RECEIVED, job)
+
+ equipping.mind?.set_assigned_role_with_greeting(job, player_client)
+ equipping.on_job_equipping(job, player_client)
+ job.announce_job(equipping)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(player_client?.holder)
if(CONFIG_GET(flag/auto_deadmin_players) || (player_client.prefs?.toggles & DEADMIN_ALWAYS))
player_client.holder.auto_deadmin()
else
handle_auto_deadmin_roles(player_client, job.title)
+<<<<<<< HEAD
setup_alt_job_items(equipping, job, player_client) // SKYRAT EDIT ADDITION - ALTERNATIVE_JOB_TITLES
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
job.after_spawn(equipping, player_client)
/datum/controller/subsystem/job/proc/handle_auto_deadmin_roles(client/C, rank)
@@ -685,7 +702,10 @@ SUBSYSTEM_DEF(job)
if(!run_divide_occupation_pure)
to_chat(player, "You have failed to qualify for any job you desired. ")
player.ready = PLAYER_NOT_READY
+<<<<<<< HEAD
player.client << output(player.ready, "lobby_browser:imgsrc") //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/job/Recover()
@@ -914,6 +934,7 @@ SUBSYSTEM_DEF(job)
JobDebug("[debug_prefix] Error: [get_job_unavailable_error_message(JOB_UNAVAILABLE_AGE)], Player: [player][add_job_to_log ? ", Job: [possible_job]" : ""]")
return JOB_UNAVAILABLE_AGE
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - CUSTOMIZATION
if(!CONFIG_GET(flag/bypass_veteran_system) && possible_job.veteran_only && !SSplayer_ranks.is_veteran(player.client))
JobDebug("[debug_prefix] Error: [get_job_unavailable_error_message(JOB_NOT_VETERAN)], Player: [player][add_job_to_log ? ", Job: [possible_job]" : ""]")
@@ -945,6 +966,8 @@ SUBSYSTEM_DEF(job)
// Run this check after is_banned_from since it can query the DB which may sleep.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Need to recheck the player exists after is_banned_from since it can query the DB which may sleep.
if(QDELETED(player))
JobDebug("[debug_prefix] player is qdeleted, Player: [player][add_job_to_log ? ", Job: [possible_job]" : ""]")
diff --git a/code/controllers/subsystem/lag_switch.dm b/code/controllers/subsystem/lag_switch.dm
index fdd9a9287e5..d66bfc1c78f 100644
--- a/code/controllers/subsystem/lag_switch.dm
+++ b/code/controllers/subsystem/lag_switch.dm
@@ -124,6 +124,7 @@ SUBSYSTEM_DEF(lag_switch)
to_chat(world, span_boldannounce("Footstep sounds have been disabled for performance concerns."))
else
to_chat(world, span_boldannounce("Footstep sounds have been re-enabled."))
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
if (DISABLE_CREATOR)
if (state)
@@ -131,6 +132,8 @@ SUBSYSTEM_DEF(lag_switch)
else
to_chat(world, span_boldannounce("The character creator has been re-enabled."))
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
diff --git a/code/controllers/subsystem/lua.dm b/code/controllers/subsystem/lua.dm
index 1ab88a01746..0645ea81f2b 100644
--- a/code/controllers/subsystem/lua.dm
+++ b/code/controllers/subsystem/lua.dm
@@ -2,7 +2,10 @@ SUBSYSTEM_DEF(lua)
name = "Lua Scripting"
runlevels = RUNLEVEL_LOBBY | RUNLEVELS_DEFAULT
wait = 0.1 SECONDS
+<<<<<<< HEAD
flags = SS_OK_TO_FAIL_INIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// A list of all lua states
var/list/datum/lua_state/states = list()
@@ -18,6 +21,7 @@ SUBSYSTEM_DEF(lua)
var/list/current_run = list()
var/list/current_states_run = list()
+<<<<<<< HEAD
/// Protects return values from getting GCed before getting converted to lua values
/// Gets cleared every tick.
var/list/gc_guard = list()
@@ -43,6 +47,21 @@ SUBSYSTEM_DEF(lua)
initialization_failure_message = crash_message
warning(crash_message)
return SS_INIT_FAILURE
+=======
+ var/list/needs_gc_cycle = list()
+
+/datum/controller/subsystem/lua/Initialize()
+ DREAMLUAU_SET_EXECUTION_LIMIT_SECS(5)
+ // Set wrappers to ensure that lua scripts are subject to the same safety restrictions as other admin tooling
+ DREAMLUAU_SET_NEW_WRAPPER("/proc/_new")
+ DREAMLUAU_SET_VAR_GET_WRAPPER("/proc/wrap_lua_get_var")
+ DREAMLUAU_SET_VAR_SET_WRAPPER("/proc/wrap_lua_set_var")
+ DREAMLUAU_SET_OBJECT_CALL_WRAPPER("/proc/wrap_lua_datum_proc_call")
+ DREAMLUAU_SET_GLOBAL_CALL_WRAPPER("/proc/wrap_lua_global_proc_call")
+ // Set the print wrapper, as otherwise, the print function is meaningless
+ DREAMLUAU_SET_PRINT_WRAPPER("/proc/wrap_lua_print")
+ return SS_INIT_SUCCESS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/lua/OnConfigLoad()
// Read the paths from the config file
@@ -52,9 +71,12 @@ SUBSYSTEM_DEF(lua)
lua_path += path
world.SetConfig("env", "LUAU_PATH", jointext(lua_path, ";"))
+<<<<<<< HEAD
/datum/controller/subsystem/lua/Shutdown()
AUXTOOLS_FULL_SHUTDOWN(AUXLUA)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/lua/proc/queue_resume(datum/lua_state/state, index, arguments)
if(!initialized)
return
@@ -64,6 +86,7 @@ SUBSYSTEM_DEF(lua)
arguments = list()
else if(!islist(arguments))
arguments = list(arguments)
+<<<<<<< HEAD
resumes += list(list("state" = state, "index" = index, "arguments" = arguments))
/datum/controller/subsystem/lua/proc/kill_task(datum/lua_state/state, list/task_info)
@@ -94,6 +117,35 @@ SUBSYSTEM_DEF(lua)
resumes.Cut(i, i+1)
break
state.kill_task(task_info)
+=======
+ else
+ var/list/args_list = arguments
+ arguments = args_list.Copy()
+ resumes += list(list("state" = state, "index" = index, "arguments" = arguments))
+
+/datum/controller/subsystem/lua/proc/kill_task(datum/lua_state/state, is_sleep, index)
+ if(!istype(state))
+ return
+ if(is_sleep)
+ var/state_index = 1
+
+ // Get the nth sleep in the sleep list corresponding to the target state
+ for(var/i in 1 to length(sleeps))
+ var/datum/lua_state/sleeping_state = sleeps[i]
+ if(sleeping_state == state)
+ if(state_index == index)
+ sleeps.Cut(i, i+1)
+ break
+ state_index++
+ else
+ // Remove the resumt from the resumt list
+ for(var/i in 1 to length(resumes))
+ var/resume = resumes[i]
+ if(resume["state"] == state && resume["index"] == index)
+ resumes.Cut(i, i+1)
+ break
+ state.kill_task(is_sleep, index)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/lua/fire(resumed)
// Each fire of SSlua awakens every sleeping task in the order they slept,
@@ -104,7 +156,10 @@ SUBSYSTEM_DEF(lua)
sleeps.Cut()
resumes.Cut()
+<<<<<<< HEAD
gc_guard.Cut()
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/current_sleeps = current_run["sleeps"]
var/list/affected_states = list()
while(length(current_sleeps))
@@ -147,6 +202,38 @@ SUBSYSTEM_DEF(lua)
if(MC_TICK_CHECK)
break
+<<<<<<< HEAD
// Update every lua editor TGUI open for each state that had a task awakened or resumed
for(var/datum/lua_state/state in affected_states)
INVOKE_ASYNC(state, TYPE_PROC_REF(/datum/lua_state, update_editors))
+=======
+ while(length(needs_gc_cycle))
+ var/datum/lua_state/state = needs_gc_cycle[needs_gc_cycle.len]
+ needs_gc_cycle.len--
+ state.collect_garbage()
+
+ // Update every lua editor TGUI open for each state that had a task awakened or resumed
+ for(var/datum/lua_state/state in affected_states)
+ INVOKE_ASYNC(state, TYPE_PROC_REF(/datum/lua_state, update_editors))
+
+/datum/controller/subsystem/lua/proc/log_involved_runtime(exception/runtime, list/desclines, list/lua_stacks)
+ var/list/json_data = list("status" = "runtime", "file" = runtime.file, "line" = runtime.line, "message" = runtime.name, "stack" = list())
+ var/level = 1
+ for(var/line in desclines)
+ line = copytext(line, 3)
+ if(starts_with_any(line, list(
+ "/datum/lua_state (/datum/lua_state): load script",
+ "/datum/lua_state (/datum/lua_state): call function",
+ "/datum/lua_state (/datum/lua_state): awaken",
+ "/datum/lua_state (/datum/lua_state): resume"
+ )))
+ json_data["stack"] += lua_stacks[level]
+ level++
+ json_data["stack"] += line
+ for(var/datum/weakref/state_ref as anything in GLOB.lua_state_stack)
+ var/datum/lua_state/state = state_ref.resolve()
+ if(!state)
+ continue
+ state.log_result(json_data)
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index a723015b80f..60f118b17d3 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -416,7 +416,10 @@ Used by the AI doomsday and the self-destruct nuke.
// load the maps
for (var/P in parsed_maps)
var/datum/parsed_map/pm = P
+<<<<<<< HEAD
pm.turf_blacklist = turf_blacklist // SKYRAT EDIT ADDITION - apply blacklist
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/bounds = pm.bounds
var/x_offset = bounds ? round(world.maxx / 2 - bounds[MAP_MAXX] / 2) + 1 : 1
var/y_offset = bounds ? round(world.maxy / 2 - bounds[MAP_MAXY] / 2) + 1 : 1
@@ -931,6 +934,11 @@ ADMIN_VERB(load_away_mission, R_FUN, "Load Away Mission", "Load a specific away
/datum/controller/subsystem/mapping/proc/lazy_load_template(template_key, force = FALSE)
RETURN_TYPE(/datum/turf_reservation)
+<<<<<<< HEAD
+=======
+
+ UNTIL(initialized)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/static/lazy_loading = FALSE
UNTIL(!lazy_loading)
diff --git a/code/controllers/subsystem/materials.dm b/code/controllers/subsystem/materials.dm
index 3a704d01a82..7cc537ff789 100644
--- a/code/controllers/subsystem/materials.dm
+++ b/code/controllers/subsystem/materials.dm
@@ -26,6 +26,13 @@ SUBSYSTEM_DEF(materials)
new /datum/stack_recipe("Sink Frame", /obj/structure/sinkframe, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND | CRAFT_APPLIES_MATS, category = CAT_FURNITURE),
new /datum/stack_recipe("Material floor tile", /obj/item/stack/tile/material, 1, 4, 20, crafting_flags = CRAFT_APPLIES_MATS, category = CAT_TILES),
new /datum/stack_recipe("Material airlock assembly", /obj/structure/door_assembly/door_assembly_material, 4, time = 5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND | CRAFT_APPLIES_MATS, category = CAT_DOORS),
+<<<<<<< HEAD
+=======
+ )
+ ///List of stackcrafting recipes for materials using rigid recipes
+ var/list/rigid_stack_recipes = list(
+ new /datum/stack_recipe("Carving block", /obj/structure/carving_block, 5, time = 3 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND | CRAFT_APPLIES_MATS, category = CAT_STRUCTURE),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
///List of stackcrafting recipes for materials using rigid recipes
var/list/rigid_stack_recipes = list(
@@ -35,7 +42,10 @@ SUBSYSTEM_DEF(materials)
///A list of dimensional themes used by the dimensional anomaly and other things, most of which require materials to function.
var/list/datum/dimension_theme/dimensional_themes
-///Ran on initialize, populated the materials and materials_by_category dictionaries with their appropiate vars (See these variables for more info)
+ ///A list of dimensional themes used by the dimensional anomaly and other things, most of which require materials to function.
+ var/list/datum/dimension_theme/dimensional_themes
+
+///Ran on initialize, populated the materials and materials_by_category dictionaries with their appropriate vars (See these variables for more info)
/datum/controller/subsystem/materials/proc/InitializeMaterials()
materials = list()
materials_by_type = list()
@@ -53,7 +63,11 @@ SUBSYSTEM_DEF(materials)
/** Creates and caches a material datum.
*
+<<<<<<< HEAD
* Arugments:
+=======
+ * Arguments:
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* - [arguments][/list]: The arguments to use to create the material datum
* - The first element is the type of material to initialize.
*/
@@ -134,7 +148,11 @@ SUBSYSTEM_DEF(materials)
value = arguments[key]
if(!(istext(key) || isnum(key)))
key = REF(key)
+<<<<<<< HEAD
key = "[key]" // Key is stringified so numbers dont break things
+=======
+ key = "[key]" // Key is stringified so numbers don't break things
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!isnull(value))
if(!(istext(value) || isnum(value)))
value = REF(value)
diff --git a/code/controllers/subsystem/minor_mapping.dm b/code/controllers/subsystem/minor_mapping.dm
index 9dbc3cd2a05..6bdb93ccd30 100644
--- a/code/controllers/subsystem/minor_mapping.dm
+++ b/code/controllers/subsystem/minor_mapping.dm
@@ -13,7 +13,11 @@ SUBSYSTEM_DEF(minor_mapping)
return SS_INIT_NO_NEED
#else
trigger_migration(CONFIG_GET(number/mice_roundstart))
+<<<<<<< HEAD
place_satchels(satchel_amount = 10) //SKYRAT EDIT CHANGE - ORIGINAL : place_satchels(satchel_amount = 2)
+=======
+ place_satchels(satchel_amount = 2)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return SS_INIT_SUCCESS
#endif
diff --git a/code/controllers/subsystem/overlays.dm b/code/controllers/subsystem/overlays.dm
index db94c291a18..ea3258c0971 100644
--- a/code/controllers/subsystem/overlays.dm
+++ b/code/controllers/subsystem/overlays.dm
@@ -17,7 +17,11 @@ SUBSYSTEM_DEF(overlays)
/// Don't have access to that type tho, so this is the best you're gonna get
/proc/overlays2text(list/overlays)
var/list/unique_overlays = list()
+<<<<<<< HEAD
// As anything because we're basically doing type coerrsion, rather then actually filtering for mutable apperances
+=======
+ // As anything because we're basically doing type coercion, rather then actually filtering for mutable appearances
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/mutable_appearance/overlay as anything in overlays)
var/key = "[overlay.icon]-[overlay.icon_state]-[overlay.dir]"
unique_overlays[key] += 1
diff --git a/code/controllers/subsystem/pathfinder.dm b/code/controllers/subsystem/pathfinder.dm
index fa1a7af5c85..938aebc20a4 100644
--- a/code/controllers/subsystem/pathfinder.dm
+++ b/code/controllers/subsystem/pathfinder.dm
@@ -158,7 +158,11 @@ SUBSYSTEM_DEF(pathfinder)
/// Takes a set of pathfind info, returns the first valid pathmap that would work if one exists
/// Optionally takes a max age to accept (defaults to 0 seconds) and a minimum acceptable range
+<<<<<<< HEAD
/// If include_building is true and we can only find a building path, ew'll use that instead. tho we will wait for it to finish first
+=======
+/// If include_building is true and we can only find a building path, we'll use that instead. tho we will wait for it to finish first
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/pathfinder/proc/get_valid_map(datum/can_pass_info/pass_info, turf/target, simulated_only = TRUE, turf/exclude, age = MAP_REUSE_INSTANT, min_range = -INFINITY, include_building = FALSE)
// Walk all the maps that match our caller's turf OR our target's
// Then hold onto em. If their cache time is short we can reuse/expand them, if not we'll have to make a new one
diff --git a/code/controllers/subsystem/persistence/_persistence.dm b/code/controllers/subsystem/persistence/_persistence.dm
index b98a2feb56d..fdc2f22a456 100644
--- a/code/controllers/subsystem/persistence/_persistence.dm
+++ b/code/controllers/subsystem/persistence/_persistence.dm
@@ -48,6 +48,20 @@ SUBSYSTEM_DEF(persistence)
var/tram_hits_this_round = 0
var/tram_hits_last_round = 0
+<<<<<<< HEAD
+=======
+ /// A json database to data/message_bottles.json
+ var/datum/json_database/message_bottles_database
+ /// An index used to create unique ids for the message bottles database
+ var/message_bottles_index = 0
+ /**
+ * A list of non-maploaded photos or papers that met the 0.2% chance to be saved in the message bottles database
+ * because I don't want the database to feel empty unless there's someone constantly throwing bottles in the
+ * sea or beach/ocean fishing portals.
+ */
+ var/list/queued_message_bottles
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/persistence/Initialize()
load_poly()
load_wall_engravings()
@@ -58,7 +72,10 @@ SUBSYSTEM_DEF(persistence)
load_randomized_recipes()
load_custom_outfits()
load_delamination_counter()
+<<<<<<< HEAD
load_panic_bunker() //SKYRAT EDIT ADDITION - PANICBUNKER
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
load_tram_counter()
load_adventures()
return SS_INIT_SUCCESS
@@ -72,13 +89,22 @@ SUBSYSTEM_DEF(persistence)
save_randomized_recipes()
save_scars()
save_custom_outfits()
+<<<<<<< HEAD
save_modular_persistence() // SKYRAT EDIT ADDITION - MODULAR_PERSISTENCE
save_delamination_counter()
+=======
+ save_delamination_counter()
+ save_queued_message_bottles()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(SStransport.can_fire)
for(var/datum/transport_controller/linear/tram/transport as anything in SStransport.transports_by_type[TRANSPORT_TYPE_TRAM])
save_tram_history(transport.specific_transport_id)
save_tram_counter()
+<<<<<<< HEAD
save_panic_bunker() //SKYRAT EDIT ADDITION - PANICBUNKER
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Loads up Poly's speech buffer.
/datum/controller/subsystem/persistence/proc/load_poly()
diff --git a/code/controllers/subsystem/persistence/engravings.dm b/code/controllers/subsystem/persistence/engravings.dm
index f47fc7fbba1..b56a8093aa2 100644
--- a/code/controllers/subsystem/persistence/engravings.dm
+++ b/code/controllers/subsystem/persistence/engravings.dm
@@ -27,7 +27,11 @@
var/successfully_loaded_engravings = 0
+<<<<<<< HEAD
for(var/iteration in 1 to rand(MIN_PERSISTENT_ENGRAVINGS, MAX_PERSISTENT_ENGRAVINGS))
+=======
+ for(var/iteration in 1 to min(rand(MIN_PERSISTENT_ENGRAVINGS, MAX_PERSISTENT_ENGRAVINGS), saved_engravings.len))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/engraving = pick_n_take(saved_engravings)
if(!islist(engraving))
stack_trace("something's wrong with the engraving data! one of the saved engravings wasn't a list!")
diff --git a/code/controllers/subsystem/persistence/message_bottles.dm b/code/controllers/subsystem/persistence/message_bottles.dm
new file mode 100644
index 00000000000..ce1efe5e59c
--- /dev/null
+++ b/code/controllers/subsystem/persistence/message_bottles.dm
@@ -0,0 +1,54 @@
+///This proc is used to save photos, papers and cash stored inside a bottle when tossed into the ocean.
+/datum/controller/subsystem/persistence/proc/save_message_bottle(obj/item/message, bottle_type = /obj/item/reagent_containers/cup/glass/bottle)
+ if(isnull(message_bottles_database))
+ message_bottles_database = new("data/message_bottles.json")
+
+ var/list/data = list()
+ data["bottle_type"] = text2path(bottle_type)
+ if(istype(message, /obj/item/paper))
+ var/obj/item/paper/paper = message
+ if(!length(paper.raw_text_inputs) && !length(paper.raw_stamp_data) && !length(paper.raw_field_input_data))
+ return
+ data["paper"] = paper.convert_to_data()
+ else if(istype(message, /obj/item/photo))
+ var/obj/item/photo/photo = message
+ if(!photo.picture?.id)
+ return
+ data["photo_id"] = photo.picture.id
+ else if(istype(message, /obj/item/stack/spacecash))
+ var/obj/item/stack/spacecash/cash = message
+ data["cash"] = text2path(cash.type)
+ data["amount"] = cash.amount
+ message_bottles_index++
+ message_bottles_database.set_key("message-[GLOB.round_id]-[message_bottles_index]", data)
+
+/datum/controller/subsystem/persistence/proc/load_message_bottle(atom/loc)
+ if(isnull(message_bottles_database))
+ message_bottles_database = new("data/message_bottles.json")
+
+ var/list/data = message_bottles_database.pick_and_take_key()
+ if(!data)
+ var/obj/item/reagent_containers/cup/glass/bottle/bottle = new(loc)
+ return bottle
+
+ var/bottle_type = text2path(data["bottle_type"]) || /obj/item/reagent_containers/cup/glass/bottle
+ var/obj/item/reagent_containers/cup/glass/bottle/bottle = new bottle_type(loc)
+ bottle.reagents.remove_all(bottle.reagents.maximum_volume)
+ if(data["photo_id"])
+ var/obj/item/photo/old/photo = load_photo_from_disk(data["photo_id"], bottle)
+ bottle.message_in_a_bottle = photo
+ else if(data["cash"])
+ var/cash_type = text2path(data["cash"]) || /obj/item/stack/spacecash/c10
+ var/obj/item/stack/spacecash/cash = new cash_type(bottle, data["amount"])
+ bottle.message_in_a_bottle = cash
+ else if(data["paper"])
+ var/obj/item/paper/paper = new(bottle)
+ paper.write_from_data(data["paper"])
+ bottle.message_in_a_bottle = paper
+
+ bottle.update_icon(UPDATE_OVERLAYS)
+
+/datum/controller/subsystem/persistence/proc/save_queued_message_bottles()
+ for(var/item in queued_message_bottles)
+ save_message_bottle(item)
+ queued_message_bottles = null
diff --git a/code/controllers/subsystem/polling.dm b/code/controllers/subsystem/polling.dm
index aba0cbbcfea..d9903ef430a 100644
--- a/code/controllers/subsystem/polling.dm
+++ b/code/controllers/subsystem/polling.dm
@@ -281,12 +281,15 @@ SUBSYSTEM_DEF(polling)
if(is_banned_from(potential_candidate.ckey, list(check_jobban, ROLE_SYNDICATE)))
return FALSE
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
if(is_banned_from(potential_candidate.ckey, BAN_GHOST_TAKEOVER) || is_banned_from(potential_candidate.ckey, BAN_ANTAGONIST))
to_chat(potential_candidate, "There was a ghost prompt for: [role], unfortunately you are banned from ghost takeovers.")
return FALSE
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
/datum/controller/subsystem/polling/proc/polling_finished(datum/candidate_poll/finishing_poll)
diff --git a/code/controllers/subsystem/processing/fishing.dm b/code/controllers/subsystem/processing/fishing.dm
index da10d3d631a..d38a4826907 100644
--- a/code/controllers/subsystem/processing/fishing.dm
+++ b/code/controllers/subsystem/processing/fishing.dm
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
/**
* So far, only used by the fishing minigame. Feel free to rename it to something like veryfastprocess
* if you need one that fires 10 times a second
@@ -5,3 +6,38 @@
PROCESSING_SUBSYSTEM_DEF(fishing)
name = "Fishing"
wait = 0.1 SECONDS
+=======
+/// subsystem for the fishing minigame processing.
+PROCESSING_SUBSYSTEM_DEF(fishing)
+ name = "Fishing"
+ flags = SS_BACKGROUND|SS_POST_FIRE_TIMING
+ wait = 0.05 SECONDS // If you raise it to 0.1 SECONDS, you better also modify [datum/fish_movement/move_fish()]
+ ///Cached fish properties so we don't have to initalize fish every time
+ var/list/fish_properties
+ ///A cache of fish that can be caught by each type of fishing lure
+ var/list/lure_catchables
+
+/datum/controller/subsystem/processing/fishing/Initialize()
+ ///init the properties
+ fish_properties = list()
+ for(var/fish_type in subtypesof(/obj/item/fish))
+ var/obj/item/fish/fish = new fish_type(null, FALSE)
+ fish_properties[fish_type] = list()
+ fish_properties[fish_type][FISH_PROPERTIES_FAV_BAIT] = fish.favorite_bait.Copy()
+ fish_properties[fish_type][FISH_PROPERTIES_BAD_BAIT] = fish.disliked_bait.Copy()
+ fish_properties[fish_type][FISH_PROPERTIES_TRAITS] = fish.fish_traits.Copy()
+ qdel(fish)
+
+ ///init the list of things lures can catch
+ lure_catchables = list()
+ var/list/fish_types = subtypesof(/obj/item/fish)
+ for(var/lure_type in typesof(/obj/item/fishing_lure))
+ var/obj/item/fishing_lure/lure = new lure_type
+ lure_catchables[lure_type] = list()
+ for(var/obj/item/fish/fish_type as anything in fish_types)
+ if(lure.is_catchable_fish(fish_type, fish_properties[fish_type]))
+ lure_catchables[lure_type] += fish_type
+ qdel(lure)
+
+ return SS_INIT_SUCCESS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/controllers/subsystem/processing/quirks.dm b/code/controllers/subsystem/processing/quirks.dm
index 6a0b2bd05c0..72aaad287db 100644
--- a/code/controllers/subsystem/processing/quirks.dm
+++ b/code/controllers/subsystem/processing/quirks.dm
@@ -17,7 +17,11 @@ GLOBAL_LIST_INIT_TYPED(quirk_blacklist, /list/datum/quirk, list(
list(/datum/quirk/transhumanist, /datum/quirk/body_purist),
list(/datum/quirk/prosthetic_organ, /datum/quirk/tin_man, /datum/quirk/body_purist),
list(/datum/quirk/quadruple_amputee, /datum/quirk/paraplegic, /datum/quirk/hemiplegic),
+<<<<<<< HEAD
//list(/datum/quirk/quadruple_amputee, /datum/quirk/frail), // SKYRAT EDIT REMOVAL- Since we have synth wounds now, frail has a large downside for prosthetics and such
+=======
+ list(/datum/quirk/quadruple_amputee, /datum/quirk/frail),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
list(/datum/quirk/social_anxiety, /datum/quirk/mute),
list(/datum/quirk/mute, /datum/quirk/softspoken),
list(/datum/quirk/poor_aim, /datum/quirk/bighands),
@@ -26,6 +30,7 @@ GLOBAL_LIST_INIT_TYPED(quirk_blacklist, /list/datum/quirk, list(
list(/datum/quirk/photophobia, /datum/quirk/nyctophobia),
list(/datum/quirk/item_quirk/settler, /datum/quirk/freerunning),
list(/datum/quirk/numb, /datum/quirk/selfaware),
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
list(/datum/quirk/equipping/nerve_staple, /datum/quirk/nonviolent),
list(/datum/quirk/equipping/nerve_staple, /datum/quirk/item_quirk/nearsighted),
@@ -39,6 +44,8 @@ GLOBAL_LIST_INIT_TYPED(quirk_blacklist, /list/datum/quirk, list(
list(/datum/quirk/oversized, /datum/quirk/item_quirk/settler),
list(/datum/quirk/echolocation, /datum/quirk/item_quirk/blindness, /datum/quirk/item_quirk/nearsighted, /datum/quirk/item_quirk/deafness),
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
GLOBAL_LIST_INIT(quirk_string_blacklist, generate_quirk_string_blacklist())
@@ -89,6 +96,7 @@ PROCESSING_SUBSYSTEM_DEF(quirks)
if(initial(quirk_type.abstract_parent_type) == type)
continue
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
if(initial(quirk_type.erp_quirk) && CONFIG_GET(flag/disable_erp_preferences))
continue
@@ -97,6 +105,8 @@ PROCESSING_SUBSYSTEM_DEF(quirks)
continue
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
quirks[initial(quirk_type.name)] = quirk_type
quirk_points[initial(quirk_type.name)] = initial(quirk_type.value)
@@ -193,7 +203,11 @@ PROCESSING_SUBSYSTEM_DEF(quirks)
/// be valid.
/// If no changes need to be made, will return the same list.
/// Expects all quirk names to be unique, but makes no other expectations.
+<<<<<<< HEAD
/datum/controller/subsystem/processing/quirks/proc/filter_invalid_quirks(list/quirks, list/augments) // SKYRAT EDIT - AUGMENTS+
+=======
+/datum/controller/subsystem/processing/quirks/proc/filter_invalid_quirks(list/quirks)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/new_quirks = list()
var/list/positive_quirks = list()
var/points_enabled = !CONFIG_GET(flag/disable_quirk_points)
@@ -202,11 +216,14 @@ PROCESSING_SUBSYSTEM_DEF(quirks)
var/list/all_quirks = get_quirks()
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN - AUGMENTS+
for(var/key in augments)
var/datum/augment_item/aug = GLOB.augment_items[augments[key]]
balance += aug.cost
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for (var/quirk_name in quirks)
var/datum/quirk/quirk = all_quirks[quirk_name]
if (isnull(quirk))
diff --git a/code/controllers/subsystem/processing/reagents.dm b/code/controllers/subsystem/processing/reagents.dm
index c4b86a23efc..18533e9c0cb 100644
--- a/code/controllers/subsystem/processing/reagents.dm
+++ b/code/controllers/subsystem/processing/reagents.dm
@@ -17,6 +17,7 @@ PROCESSING_SUBSYSTEM_DEF(reagents)
GLOB.fake_reagent_blacklist = list(/datum/reagent/medicine/c2, /datum/reagent/medicine, /datum/reagent/reaction_agent)
//Build GLOB lists - see holder.dm
build_chemical_reactions_lists()
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
if(CONFIG_GET(flag/disable_erp_preferences))
@@ -30,6 +31,8 @@ PROCESSING_SUBSYSTEM_DEF(reagents)
if(reaction_list)
reaction_list -= reaction_datum
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return SS_INIT_SUCCESS
/datum/controller/subsystem/processing/reagents/fire(resumed = FALSE)
diff --git a/code/controllers/subsystem/processing/station.dm b/code/controllers/subsystem/processing/station.dm
index 064f1446bf9..afcd008346a 100644
--- a/code/controllers/subsystem/processing/station.dm
+++ b/code/controllers/subsystem/processing/station.dm
@@ -24,7 +24,11 @@ PROCESSING_SUBSYSTEM_DEF(station)
// Autowiki also wants consistent outputs, for example making sure the vending machine page always reports the normal products
#if !defined(UNIT_TESTS) && !defined(AUTOWIKI)
SetupTraits()
+<<<<<<< HEAD
//display_lobby_traits() SKYRAT EDIT REMOVAL
+=======
+ display_lobby_traits()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#endif
announcer = new announcer() //Initialize the station's announcer datum
@@ -173,7 +177,10 @@ PROCESSING_SUBSYSTEM_DEF(station)
var/datum/station_trait/trait_to_remove = i
selectable_traits_by_types[initial(trait_to_remove.trait_type)] -= trait_to_remove
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Update station trait lobby buttons for clients who joined before we initialised this subsystem
/datum/controller/subsystem/processing/station/proc/display_lobby_traits()
for (var/mob/dead/new_player/player as anything in GLOB.new_player_list)
@@ -182,4 +189,7 @@ PROCESSING_SUBSYSTEM_DEF(station)
continue
observer_hud.add_station_trait_buttons()
observer_hud.show_hud(observer_hud.hud_version)
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/controllers/subsystem/research.dm b/code/controllers/subsystem/research.dm
index fe8a002d9c4..704b3bc12a4 100644
--- a/code/controllers/subsystem/research.dm
+++ b/code/controllers/subsystem/research.dm
@@ -78,8 +78,11 @@ SUBSYSTEM_DEF(research)
new /datum/techweb/science
new /datum/techweb/admin
new /datum/techweb/oldstation
+<<<<<<< HEAD
new /datum/techweb/tarkon //Skyrat Edit
new /datum/techweb/interdyne //Skyrat Edit
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
autosort_categories()
error_design = new
error_node = new
diff --git a/code/controllers/subsystem/shuttle.dm b/code/controllers/subsystem/shuttle.dm
index de9de30a87b..ebf7ee70eb5 100644
--- a/code/controllers/subsystem/shuttle.dm
+++ b/code/controllers/subsystem/shuttle.dm
@@ -147,6 +147,7 @@ SUBSYSTEM_DEF(shuttle)
while(length(pack_processing))
var/datum/supply_pack/pack = pack_processing[length(pack_processing)]
pack_processing.len--
+<<<<<<< HEAD
//SKYRAT EDIT START
if(pack == /datum/supply_pack/armament)
continue
@@ -159,6 +160,16 @@ SUBSYSTEM_DEF(shuttle)
pack_processing += generated_packs
continue
+=======
+ if(ispath(pack, /datum/supply_pack))
+ pack = new pack
+
+ var/list/generated_packs = pack.generate_supply_packs()
+ if(generated_packs)
+ pack_processing += generated_packs
+ continue
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//we have to create the pack before checking if it has 'contains' because generate_supply_packs manually sets it, therefore we cant check initial.
if(!pack.contains)
continue
@@ -279,7 +290,11 @@ SUBSYSTEM_DEF(shuttle)
priority_announce(
text = "Emergency shuttle uplink interference detected, shuttle call disabled while the system reinitializes. Estimated restore in [DisplayTimeText(lockout_timer, round_seconds_to = 60)].",
title = "Uplink Interference",
+<<<<<<< HEAD
sound = ANNOUNCER_SHUTTLE, // SKYRAT EDIT CHANGE - Announcer Sounds - ORIGINAL: sound = 'sound/misc/announce_dig.ogg',
+=======
+ sound = 'sound/misc/announce_dig.ogg',
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sender_override = "Emergency Shuttle Uplink Alert",
color_override = "grey",
)
@@ -293,7 +308,11 @@ SUBSYSTEM_DEF(shuttle)
priority_announce(
text= "Emergency shuttle uplink services are now back online.",
title = "Uplink Restored",
+<<<<<<< HEAD
sound = ANNOUNCER_SHUTTLE, // SKYRAT EDIT CHANGE - Announcer Sounds - ORIGINAL: sound = 'sound/misc/announce_dig.ogg',
+=======
+ sound = 'sound/misc/announce_dig.ogg',
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sender_override = "Emergency Shuttle Uplink Alert",
color_override = "green",
)
@@ -446,8 +465,12 @@ SUBSYSTEM_DEF(shuttle)
if(emergency.timeLeft(1) < emergency_call_time)
return
if(SEC_LEVEL_BLUE)
+<<<<<<< HEAD
//if(emergency.timeLeft(1) < emergency_call_time * 0.5) ORIGINAL
if(emergency.timeLeft(1) < emergency_call_time * 0.6) //SKYRAT EDIT CHANGE - ALERTS
+=======
+ if(emergency.timeLeft(1) < emergency_call_time * 0.5)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
//SKYRAT EDIT ADDITION BEGIN - ALERTS
if(SEC_LEVEL_ORANGE)
@@ -1052,7 +1075,11 @@ SUBSYSTEM_DEF(shuttle)
return data
+<<<<<<< HEAD
/datum/controller/subsystem/shuttle/ui_act(action, params)
+=======
+/datum/controller/subsystem/shuttle/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/controllers/subsystem/sprite_accessories.dm b/code/controllers/subsystem/sprite_accessories.dm
index 9bb0e286ca5..85449d07cd4 100644
--- a/code/controllers/subsystem/sprite_accessories.dm
+++ b/code/controllers/subsystem/sprite_accessories.dm
@@ -31,6 +31,7 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
var/list/undershirt_m //! stores only undershirt name
var/list/undershirt_f //! stores only undershirt name
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Underwear/bra split
var/list/bra_list
var/list/bra_m
@@ -41,13 +42,21 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
var/list/socks_list //! stores /datum/sprite_accessory/socks indexed by name
/* SKYRAT EDIT REMOVAL START - Customization - Moved to sprite_accessories var
+=======
+ //Socks
+ var/list/socks_list //! stores /datum/sprite_accessory/socks indexed by name
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Lizard Bits (all datum lists indexed by name)
var/list/lizard_markings_list
var/list/snouts_list
var/list/horns_list
var/list/frills_list
var/list/spines_list
+<<<<<<< HEAD
var/list/legs_list
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/tail_spines_list
//Mutant Human bits
@@ -59,6 +68,7 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
var/list/wings_open_list
var/list/moth_wings_list
var/list/moth_antennae_list
+<<<<<<< HEAD
*/ //SKYRAT EDIT REMOVAL END
var/list/moth_markings_list
var/list/pod_hair_list
@@ -80,11 +90,19 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
var/list/dna_mutant_bodypart_blocks = list()
var/list/features_block_lengths = list()
// SKYRAT EDIT ADDITION END
+=======
+ var/list/moth_markings_list
+ var/list/caps_list
+ var/list/pod_hair_list
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/accessories/PreInit() // this stuff NEEDS to be set up before GLOB for preferences and stuff to work so this must go here. sorry
setup_lists()
init_hair_gradients()
+<<<<<<< HEAD
make_sprite_accessory_references() // SKYRAT EDIT ADDITION - Customization
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Sets up all of the lists for later utilization in the round and building sprites.
/// In an ideal world we could tack everything that just needed `DEFAULT_SPRITE_LIST` into static variables on the top, but due to the initialization order
@@ -111,6 +129,7 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
undershirt_m = undershirt_lists[MALE_SPRITE_LIST]
undershirt_f = undershirt_lists[FEMALE_SPRITE_LIST]
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Underwear/bra split
var/bra_lists = init_sprite_accessory_subtypes(/datum/sprite_accessory/bra)
bra_list = bra_lists[DEFAULT_SPRITE_LIST]
@@ -121,6 +140,10 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
socks_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/socks)[DEFAULT_SPRITE_LIST]
/* // SKYRAT EDIT REMOVAL START - Customization
+=======
+ socks_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/socks)[DEFAULT_SPRITE_LIST]
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
lizard_markings_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/lizard_markings, add_blank = TRUE)[DEFAULT_SPRITE_LIST]
tails_list_human = init_sprite_accessory_subtypes(/datum/sprite_accessory/tails/human, add_blank = TRUE)[DEFAULT_SPRITE_LIST]
tails_list_lizard = init_sprite_accessory_subtypes(/datum/sprite_accessory/tails/lizard)[DEFAULT_SPRITE_LIST]
@@ -133,6 +156,7 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
frills_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/frills, add_blank = TRUE)[DEFAULT_SPRITE_LIST]
spines_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/spines, add_blank = TRUE)[DEFAULT_SPRITE_LIST]
tail_spines_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/tail_spines, add_blank = TRUE)[DEFAULT_SPRITE_LIST]
+<<<<<<< HEAD
legs_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/legs)[DEFAULT_SPRITE_LIST]
caps_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/caps)[DEFAULT_SPRITE_LIST]
moth_wings_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_wings)[DEFAULT_SPRITE_LIST]
@@ -155,6 +179,15 @@ SUBSYSTEM_DEF(accessories) // just 'accessories' for brevity
// SKYRAT EDIT ADDITION END
/// This proc just intializes all /datum/sprite_accessory/hair_gradient into an list indexed by gradient-style name
+=======
+ caps_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/caps)[DEFAULT_SPRITE_LIST]
+ moth_wings_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_wings)[DEFAULT_SPRITE_LIST]
+ moth_antennae_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_antennae)[DEFAULT_SPRITE_LIST]
+ moth_markings_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/moth_markings, add_blank = TRUE)[DEFAULT_SPRITE_LIST]
+ pod_hair_list = init_sprite_accessory_subtypes(/datum/sprite_accessory/pod_hair)[DEFAULT_SPRITE_LIST]
+
+/// This proc just initializes all /datum/sprite_accessory/hair_gradient into an list indexed by gradient-style name
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/accessories/proc/init_hair_gradients()
hair_gradients_list = list()
facial_hair_gradients_list = list()
diff --git a/code/controllers/subsystem/statpanel.dm b/code/controllers/subsystem/statpanel.dm
index 7b1394ada16..65753b8325d 100644
--- a/code/controllers/subsystem/statpanel.dm
+++ b/code/controllers/subsystem/statpanel.dm
@@ -23,7 +23,10 @@ SUBSYSTEM_DEF(statpanels)
if (!resumed)
num_fires++
var/datum/map_config/cached = SSmapping.next_map_config
+<<<<<<< HEAD
/* SKYRAT EDIT CHANGE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
global_data = list(
"Map: [SSmapping.config?.map_name || "Loading..."]",
cached ? "Next Map: [cached.map_name]" : null,
@@ -33,6 +36,7 @@ SUBSYSTEM_DEF(statpanels)
"Station Time: [station_time_timestamp()]",
"Time Dilation: [round(SStime_track.time_dilation_current,1)]% AVG:([round(SStime_track.time_dilation_avg_fast,1)]%, [round(SStime_track.time_dilation_avg,1)]%, [round(SStime_track.time_dilation_avg_slow,1)]%)"
)
+<<<<<<< HEAD
*/
var/round_time = world.time - SSticker.round_start_time
var/real_round_time = world.timeofday - SSticker.real_round_start_time
@@ -54,6 +58,8 @@ SUBSYSTEM_DEF(statpanels)
"Actual Round Timer: [time2text(real_round_time, "hh:mm:ss", 0)]"
)
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(SSshuttle.emergency)
var/ETA = SSshuttle.emergency.getModeStr()
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index aef2b12a285..cf967015a0d 100644
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -67,10 +67,13 @@ SUBSYSTEM_DEF(ticker)
/// Why an emergency shuttle was called
var/emergency_reason
+<<<<<<< HEAD
var/real_round_start_time = 0 //SKYRAT EDIT ADDITION
var/discord_alerted = FALSE //SKYRAT EDIT - DISCORD PING SPAM PREVENTION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/ticker/Initialize()
var/list/byond_sound_formats = list(
"mid" = TRUE,
@@ -161,6 +164,7 @@ SUBSYSTEM_DEF(ticker)
for(var/client/C in GLOB.clients)
window_flash(C, ignorepref = TRUE) //let them know lobby has opened up.
to_chat(world, span_notice("Welcome to [station_name()]! "))
+<<<<<<< HEAD
/* ORIGINAL:
send2chat("New round starting on [SSmapping.config.map_name]!", CONFIG_GET(string/channel_announce_new_game))
*/ // SKYRAT EDIT START - DISCORD SPAM PREVENTION
@@ -173,6 +177,12 @@ SUBSYSTEM_DEF(ticker)
addtimer(CALLBACK(SStitle, TYPE_PROC_REF(/datum/controller/subsystem/title, change_title_screen)), 1 SECONDS) //SKYRAT EDIT ADDITION - Title screen
//Everyone who wants to be an observer is now spawned
SEND_SIGNAL(src, COMSIG_TICKER_ENTER_PREGAME)
+=======
+ send2chat(new /datum/tgs_message_content("New round starting on [SSmapping.config.map_name]!"), CONFIG_GET(string/channel_announce_new_game))
+ current_state = GAME_STATE_PREGAME
+ SEND_SIGNAL(src, COMSIG_TICKER_ENTER_PREGAME)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fire()
if(GAME_STATE_PREGAME)
//lobby stats for statpanels
@@ -290,8 +300,11 @@ SUBSYSTEM_DEF(ticker)
round_start_time = world.time //otherwise round_start_time would be 0 for the signals
SEND_SIGNAL(src, COMSIG_TICKER_ROUND_STARTING, world.time)
+<<<<<<< HEAD
real_round_start_time = REALTIMEOFDAY //SKYRAT EDIT ADDITION
SSautotransfer.new_shift(real_round_start_time) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
log_world("Game start took [(world.timeofday - init_start)/10]s")
INVOKE_ASYNC(SSdbcore, TYPE_PROC_REF(/datum/controller/subsystem/dbcore,SetRoundStart))
@@ -338,7 +351,10 @@ SUBSYSTEM_DEF(ticker)
iter_human.increment_scar_slot()
iter_human.load_persistent_scars()
+<<<<<<< HEAD
SSpersistence.load_modular_persistence(iter_human.get_organ_slot(ORGAN_SLOT_BRAIN)) // SKYRAT EDIT ADDITION - MODULAR_PERSISTENCE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!iter_human.hardcore_survival_score)
continue
@@ -372,6 +388,7 @@ SUBSYSTEM_DEF(ticker)
GLOB.joined_player_list += player.ckey
var/atom/destination = player.mind.assigned_role.get_roundstart_spawn_point()
if(!destination) // Failed to fetch a proper roundstart location, won't be going anywhere.
+<<<<<<< HEAD
player.show_title_screen() //SKYRAT EDIT CHANGE
continue
player.create_character(destination)
@@ -379,6 +396,10 @@ SUBSYSTEM_DEF(ticker)
player.show_title_screen() //SKYRAT EDIT ADDITION
+=======
+ continue
+ player.create_character(destination)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CHECK_TICK
/datum/controller/subsystem/ticker/proc/collect_minds()
@@ -448,7 +469,10 @@ SUBSYSTEM_DEF(ticker)
if(new_player_mob.client?.prefs?.should_be_random_hardcore(player_assigned_role, new_player_living.mind))
new_player_mob.client.prefs.hardcore_random_setup(new_player_living)
SSquirks.AssignQuirks(new_player_living, new_player_mob.client)
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CHECK_TICK
if(captainless)
@@ -588,6 +612,7 @@ SUBSYSTEM_DEF(ticker)
/datum/controller/subsystem/ticker/proc/send_news_report()
var/news_message
var/news_source = "Nanotrasen News Network"
+<<<<<<< HEAD
var/decoded_station_name = html_decode(CONFIG_GET(string/cross_comms_name)) //decode station_name to avoid minor_announce double encode // SKYRAT EDIT: CROSS COMMS CONFIG
switch(news_report)
@@ -697,6 +722,101 @@ SUBSYSTEM_DEF(ticker)
else
return "We regret to inform you that shit be whack, yo. None of our reporters have any idea of what may or may not have gone on."
//SKYRAT EDIT - END
+=======
+ var/decoded_station_name = html_decode(station_name()) //decode station_name to avoid minor_announce double encode
+
+ switch(news_report)
+ // The nuke was detonated on the syndicate recon outpost
+ if(NUKE_SYNDICATE_BASE)
+ news_message = "In a daring raid, the heroic crew of [decoded_station_name] \
+ detonated a nuclear device in the heart of a terrorist base."
+ // The station was destroyed by nuke ops
+ if(STATION_DESTROYED_NUKE)
+ news_message = "We would like to reassure all employees that the reports of a Syndicate \
+ backed nuclear attack on [decoded_station_name] are, in fact, a hoax. Have a secure day!"
+ // The station was evacuated (normal result)
+ if(STATION_EVACUATED)
+ // Had an emergency reason supplied to pass along
+ if(emergency_reason)
+ news_message = "[decoded_station_name] has been evacuated after transmitting \
+ the following distress beacon:\n\n[html_decode(emergency_reason)]"
+ else
+ news_message = "The crew of [decoded_station_name] has been \
+ evacuated amid unconfirmed reports of enemy activity."
+ // A blob won
+ if(BLOB_WIN)
+ news_message = "[decoded_station_name] was overcome by an unknown biological outbreak, killing \
+ all crew on board. Don't let it happen to you! Remember, a clean work station is a safe work station."
+ // A blob was destroyed
+ if(BLOB_DESTROYED)
+ news_message = "[decoded_station_name] is currently undergoing decontamination procedures \
+ after the destruction of a biological hazard. As a reminder, any crew members experiencing \
+ cramps or bloating should report immediately to security for incineration."
+ // A certain percentage of all cultists managed to escape at the end of round
+ if(CULT_ESCAPE)
+ news_message = "Security Alert: A group of religious fanatics have escaped from [decoded_station_name]."
+ // Cult was completely or almost completely wiped out
+ if(CULT_FAILURE)
+ news_message = "Following the dismantling of a restricted cult aboard [decoded_station_name], \
+ we would like to remind all employees that worship outside of the Chapel is strictly prohibited, \
+ and cause for termination."
+ // Cult summoned Nar'sie
+ if(CULT_SUMMON)
+ news_message = "Company officials would like to clarify that [decoded_station_name] was scheduled \
+ to be decommissioned following meteor damage earlier this year. Earlier reports of an \
+ unknowable eldritch horror were made in error."
+ // Nuke detonated, but missed the station entirely
+ if(NUKE_MISS)
+ news_message = "The Syndicate have bungled a terrorist attack [decoded_station_name], \
+ detonating a nuclear weapon in empty space nearby."
+ // All nuke ops got killed
+ if(OPERATIVES_KILLED)
+ news_message = "Repairs to [decoded_station_name] are underway after an elite \
+ Syndicate death squad was wiped out by the crew."
+ // Nuke ops results inconclusive - Crew escaped without the disk, or nukies were left alive, or something
+ if(OPERATIVE_SKIRMISH)
+ news_message = "A skirmish between security forces and Syndicate agents aboard [decoded_station_name] \
+ ended with both sides bloodied but intact."
+ // Revolution victory
+ if(REVS_WIN)
+ news_message = "Company officials have reassured investors that despite a union led revolt \
+ aboard [decoded_station_name] there will be no wage increases for workers."
+ // Revolution defeat
+ if(REVS_LOSE)
+ news_message = "[decoded_station_name] quickly put down a misguided attempt at mutiny. \
+ Remember, unionizing is illegal!"
+ // All wizards (plus apprentices) have been killed
+ if(WIZARD_KILLED)
+ news_message = "Tensions have flared with the Space Wizard Federation following the death \
+ of one of their members aboard [decoded_station_name]."
+ // The station was nuked generically
+ if(STATION_NUKED)
+ // There was a blob on board, guess it was nuked to stop it
+ if(length(GLOB.overminds))
+ for(var/mob/camera/blob/overmind as anything in GLOB.overminds)
+ if(overmind.max_count < overmind.announcement_size)
+ continue
+
+ news_message = "[decoded_station_name] is currently undergoing decontanimation after a controlled \
+ burst of radiation was used to remove a biological ooze. All employees were safely evacuated prior, \
+ and are enjoying a relaxing vacation."
+ break
+ // A self destruct or something else
+ else
+ news_message = "[decoded_station_name] activated its self-destruct device for unknown reasons. \
+ Attempts to clone the Captain for arrest and execution are underway."
+ // The emergency escape shuttle was hijacked
+ if(SHUTTLE_HIJACK)
+ news_message = "During routine evacuation procedures, the emergency shuttle of [decoded_station_name] \
+ had its navigation protocols corrupted and went off course, but was recovered shortly after."
+ // A supermatter cascade triggered
+ if(SUPERMATTER_CASCADE)
+ news_message = "Officials are advising nearby colonies about a newly declared exclusion zone in \
+ the sector surrounding [decoded_station_name]."
+
+ if(news_message)
+ send2otherserver(news_source, news_message, "News_Report")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/controller/subsystem/ticker/proc/GetTimeLeft()
if(isnull(SSticker.timeLeft))
diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm
index 8ecb0c9dc6a..c6ae79bc3a4 100644
--- a/code/controllers/subsystem/timer.dm
+++ b/code/controllers/subsystem/timer.dm
@@ -524,7 +524,11 @@ SUBSYSTEM_DEF(timer)
2 = timeToRun,
3 = wait,
4 = flags,
+<<<<<<< HEAD
5 = callBack, /* Safe to hold this directly becasue it's never del'd */
+=======
+ 5 = callBack, /* Safe to hold this directly because it's never del'd */
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
6 = "[callBack.object]",
7 = text_ref(callBack.object),
8 = getcallingtype(),
@@ -539,7 +543,11 @@ SUBSYSTEM_DEF(timer)
2 = timeToRun,
3 = wait,
4 = flags,
+<<<<<<< HEAD
5 = callBack, /* Safe to hold this directly becasue it's never del'd */
+=======
+ 5 = callBack, /* Safe to hold this directly because it's never del'd */
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
6 = "[callBack.object]",
7 = getcallingtype(),
8 = callBack.delegate,
diff --git a/code/controllers/subsystem/verb_manager.dm b/code/controllers/subsystem/verb_manager.dm
index 337386cff8e..ef73c41c466 100644
--- a/code/controllers/subsystem/verb_manager.dm
+++ b/code/controllers/subsystem/verb_manager.dm
@@ -8,6 +8,7 @@
* plus TICK_BYOND_RESERVE from the tick and uses up to that amount of time (minus the percentage of the tick used by the time it executes subsystems)
* on subsystems running cool things like atmospherics or Life or SSInput or whatever.
*
+<<<<<<< HEAD
* Without this subsystem, verbs are likely to cause overtime if the MC uses all of the time it has alloted for itself in the tick, and SendMaps
* uses as much as its expected to, and an expensive verb ends up executing that tick. This is because the MC is completely blind to the cost of
* verbs, it can't account for it at all. The only chance for verbs to not cause overtime in a tick where the MC used as much of the tick
@@ -17,6 +18,17 @@
*
* With this subsystem, the MC can account for the cost of verbs and thus stop major overruns of ticks. This means that the most important subsystems
* like SSinput can start at the same time they were supposed to, leading to a smoother experience for the player since ticks arent riddled with
+=======
+ * Without this subsystem, verbs are likely to cause overtime if the MC uses all of the time it has allotted for itself in the tick, and SendMaps
+ * uses as much as its expected to, and an expensive verb ends up executing that tick. This is because the MC is completely blind to the cost of
+ * verbs, it can't account for it at all. The only chance for verbs to not cause overtime in a tick where the MC used as much of the tick
+ * as it allotted itself and where SendMaps costed as much as it was expected to is if the verb(s) take less than TICK_BYOND_RESERVE percent of
+ * the tick, which isn't much. Not to mention if SendMaps takes more than 30% of the tick and the MC forces itself to take at least 70% of the
+ * normal tick duration which causes ticks to naturally overrun even in the absence of verbs.
+ *
+ * With this subsystem, the MC can account for the cost of verbs and thus stop major overruns of ticks. This means that the most important subsystems
+ * like SSinput can start at the same time they were supposed to, leading to a smoother experience for the player since ticks aren't riddled with
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* minor hangs over and over again.
*/
SUBSYSTEM_DEF(verb_manager)
@@ -36,17 +48,28 @@ SUBSYSTEM_DEF(verb_manager)
///if TRUE we treat usr's with holders just like usr's without holders. otherwise they always execute immediately
var/can_queue_admin_verbs = FALSE
+<<<<<<< HEAD
///if this is true all verbs immediately execute and dont queue. in case the mc is fucked or something
+=======
+ ///if this is true all verbs immediately execute and don't queue. in case the mc is fucked or something
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/FOR_ADMINS_IF_VERBS_FUCKED_immediately_execute_all_verbs = FALSE
///used for subtypes to determine if they use their own stats for the stat entry
var/use_default_stats = TRUE
///if TRUE this will... message admins every time a verb is queued to this subsystem for the next tick with stats.
+<<<<<<< HEAD
///for obvious reasons dont make this be TRUE on the code level this is for admins to turn on
var/message_admins_on_queue = FALSE
///always queue if possible. overides can_queue_admin_verbs but not FOR_ADMINS_IF_VERBS_FUCKED_immediately_execute_all_verbs
+=======
+ ///for obvious reasons don't make this be TRUE on the code level this is for admins to turn on
+ var/message_admins_on_queue = FALSE
+
+ ///always queue if possible. overrides can_queue_admin_verbs but not FOR_ADMINS_IF_VERBS_FUCKED_immediately_execute_all_verbs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/always_queue = FALSE
/**
@@ -87,7 +110,11 @@ SUBSYSTEM_DEF(verb_manager)
#else
if(QDELETED(usr) || isnull(usr.client))
+<<<<<<< HEAD
stack_trace("_queue_verb() returned false because it wasnt called from player input!")
+=======
+ stack_trace("_queue_verb() returned false because it wasn't called from player input!")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
#endif
diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 1c519e8aff1..beb48171029 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -356,7 +356,11 @@ SUBSYSTEM_DEF(vote)
data["VoteCD"] = CONFIG_GET(number/vote_delay)
return data
+<<<<<<< HEAD
/datum/controller/subsystem/vote/ui_act(action, params)
+=======
+/datum/controller/subsystem/vote/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/datums/actions/items/reload_rebar.dm b/code/datums/actions/items/reload_rebar.dm
new file mode 100644
index 00000000000..a29b02f6b22
--- /dev/null
+++ b/code/datums/actions/items/reload_rebar.dm
@@ -0,0 +1,5 @@
+/datum/action/item_action/reload_rebar
+ name = "Reload Rebar"
+ desc = "Reloads a held crossbow"
+ button_icon = 'icons/mob/actions/actions_items.dmi'
+ button_icon_state = "bolts"
diff --git a/code/datums/actions/items/toggles.dm b/code/datums/actions/items/toggles.dm
index 1ff88f41a73..85d037d1b7f 100644
--- a/code/datums/actions/items/toggles.dm
+++ b/code/datums/actions/items/toggles.dm
@@ -15,8 +15,11 @@
name = "Toggle Hood"
/datum/action/item_action/toggle_firemode
+<<<<<<< HEAD
button_icon = 'modular_skyrat/master_files/icons/mob/actions/actions_items.dmi' //SKYRAT EDIT ADDITION
button_icon_state = "fireselect_no" //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "Toggle Firemode"
/datum/action/item_action/toggle_gunlight
diff --git a/code/datums/ai/_ai_controller.dm b/code/datums/ai/_ai_controller.dm
index 797deb134f2..e6fe63fc8e3 100644
--- a/code/datums/ai/_ai_controller.dm
+++ b/code/datums/ai/_ai_controller.dm
@@ -63,6 +63,15 @@ multiple modular subtrees with behaviors
///What distance should we be checking for interesting things when considering idling/deidling? Defaults to AI_DEFAULT_INTERESTING_DIST
var/interesting_dist = AI_DEFAULT_INTERESTING_DIST
+<<<<<<< HEAD
+=======
+ /// TRUE if we're able to run, FALSE if we aren't
+ /// Should not be set manually, override get_able_to_run() instead
+ /// Make sure you hook update_able_to_run() in setup_able_to_run() to whatever parameters changing that you added
+ /// Otherwise we will not pay attention to them changing
+ var/able_to_run = FALSE
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/ai_controller/New(atom/new_pawn)
change_ai_movement_type(ai_movement)
init_subtrees()
@@ -109,6 +118,10 @@ multiple modular subtrees with behaviors
///Proc to move from one pawn to another, this will destroy the target's existing controller.
/datum/ai_controller/proc/PossessPawn(atom/new_pawn)
+<<<<<<< HEAD
+=======
+ SHOULD_CALL_PARENT(TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(pawn) //Reset any old signals
UnpossessPawn(FALSE)
@@ -133,6 +146,11 @@ multiple modular subtrees with behaviors
RegisterSignal(pawn, COMSIG_MOB_STATCHANGE, PROC_REF(on_stat_changed))
RegisterSignal(pawn, COMSIG_MOB_LOGIN, PROC_REF(on_sentience_gained))
RegisterSignal(pawn, COMSIG_QDELETING, PROC_REF(on_pawn_qdeleted))
+<<<<<<< HEAD
+=======
+ update_able_to_run()
+ setup_able_to_run()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
our_cells = new(interesting_dist, interesting_dist, 1)
set_new_cells()
@@ -260,11 +278,19 @@ multiple modular subtrees with behaviors
///Proc for deinitializing the pawn to the old controller
/datum/ai_controller/proc/UnpossessPawn(destroy)
+<<<<<<< HEAD
+=======
+ SHOULD_CALL_PARENT(TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(isnull(pawn))
return // instantiated without an applicable pawn, fine
set_ai_status(AI_STATUS_OFF)
UnregisterSignal(pawn, list(COMSIG_MOVABLE_Z_CHANGED, COMSIG_MOB_LOGIN, COMSIG_MOB_LOGOUT, COMSIG_MOB_STATCHANGE, COMSIG_QDELETING))
+<<<<<<< HEAD
+=======
+ clear_able_to_run()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(ai_movement.moving_controllers[src])
ai_movement.stop_moving_towards(src)
var/turf/pawn_turf = get_turf(pawn)
@@ -277,8 +303,24 @@ multiple modular subtrees with behaviors
if(destroy)
qdel(src)
+<<<<<<< HEAD
///Returns TRUE if the ai controller can actually run at the moment.
/datum/ai_controller/proc/able_to_run()
+=======
+/datum/ai_controller/proc/setup_able_to_run()
+ // paused_until is handled by PauseAi() manually
+ RegisterSignals(pawn, list(SIGNAL_ADDTRAIT(TRAIT_AI_PAUSED), SIGNAL_REMOVETRAIT(TRAIT_AI_PAUSED)), PROC_REF(update_able_to_run))
+
+/datum/ai_controller/proc/clear_able_to_run()
+ UnregisterSignal(pawn, list(SIGNAL_ADDTRAIT(TRAIT_AI_PAUSED), SIGNAL_REMOVETRAIT(TRAIT_AI_PAUSED)))
+
+/datum/ai_controller/proc/update_able_to_run()
+ SIGNAL_HANDLER
+ able_to_run = get_able_to_run()
+
+///Returns TRUE if the ai controller can actually run at the moment, FALSE otherwise
+/datum/ai_controller/proc/get_able_to_run()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(HAS_TRAIT(pawn, TRAIT_AI_PAUSED))
return FALSE
if(world.time < paused_until)
@@ -288,7 +330,11 @@ multiple modular subtrees with behaviors
///Runs any actions that are currently running
/datum/ai_controller/process(seconds_per_tick)
+<<<<<<< HEAD
if(!able_to_run())
+=======
+ if(!able_to_run)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOB.move_manager.stop_looping(pawn) //stop moving
return //this should remove them from processing in the future through event-based stuff.
@@ -405,6 +451,11 @@ multiple modular subtrees with behaviors
/datum/ai_controller/proc/PauseAi(time)
paused_until = world.time + time
+<<<<<<< HEAD
+=======
+ update_able_to_run()
+ addtimer(CALLBACK(src, PROC_REF(update_able_to_run)), time)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/ai_controller/proc/modify_cooldown(datum/ai_behavior/behavior, new_cooldown)
behavior_cooldowns[behavior] = new_cooldown
diff --git a/code/datums/ai/bane/bane_controller.dm b/code/datums/ai/bane/bane_controller.dm
index 8d6820a800b..02cf8fb1ea3 100644
--- a/code/datums/ai/bane/bane_controller.dm
+++ b/code/datums/ai/bane/bane_controller.dm
@@ -12,7 +12,23 @@ And the only victory you achieved was a lie. Now you understand Gotham is beyond
return AI_CONTROLLER_INCOMPATIBLE
return ..() //Run parent at end
+<<<<<<< HEAD
/datum/ai_controller/bane/able_to_run()
+=======
+/datum/ai_controller/bane/on_stat_changed(mob/living/source, new_stat)
+ . = ..()
+ update_able_to_run()
+
+/datum/ai_controller/bane/setup_able_to_run()
+ . = ..()
+ RegisterSignal(pawn, COMSIG_MOB_INCAPACITATE_CHANGED, PROC_REF(update_able_to_run))
+
+/datum/ai_controller/bane/clear_able_to_run()
+ UnregisterSignal(pawn, list(COMSIG_MOB_INCAPACITATE_CHANGED, COMSIG_MOB_STATCHANGE))
+ return ..()
+
+/datum/ai_controller/bane/get_able_to_run()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mob/living/living_pawn = pawn
if(IS_DEAD_OR_INCAP(living_pawn))
return FALSE
diff --git a/code/datums/ai/basic_mobs/base_basic_controller.dm b/code/datums/ai/basic_mobs/base_basic_controller.dm
index cd025b28bcb..bbda7d822b1 100644
--- a/code/datums/ai/basic_mobs/base_basic_controller.dm
+++ b/code/datums/ai/basic_mobs/base_basic_controller.dm
@@ -12,6 +12,7 @@
return ..() //Run parent at end
+<<<<<<< HEAD
/datum/ai_controller/basic_controller/able_to_run()
. = ..()
@@ -23,6 +24,31 @@
incap_flags |= IGNORE_STASIS
if(!(ai_traits & CAN_ACT_WHILE_DEAD) && (living_pawn.incapacitated(incap_flags) || living_pawn.stat))
return FALSE
+=======
+/datum/ai_controller/basic_controller/on_stat_changed(mob/living/source, new_stat)
+ . = ..()
+ update_able_to_run()
+
+/datum/ai_controller/basic_controller/setup_able_to_run()
+ . = ..()
+ RegisterSignal(pawn, COMSIG_MOB_INCAPACITATE_CHANGED, PROC_REF(update_able_to_run))
+
+/datum/ai_controller/basic_controller/clear_able_to_run()
+ UnregisterSignal(pawn, list(COMSIG_MOB_INCAPACITATE_CHANGED, COMSIG_MOB_STATCHANGE))
+ return ..()
+
+/datum/ai_controller/basic_controller/get_able_to_run()
+ . = ..()
+ if(!.)
+ return FALSE
+ var/mob/living/living_pawn = pawn
+ if(!(ai_traits & CAN_ACT_WHILE_DEAD))
+ // Unroll for flags here
+ if (ai_traits & CAN_ACT_IN_STASIS && (living_pawn.stat || INCAPACITATED_IGNORING(living_pawn, INCAPABLE_STASIS)))
+ return FALSE
+ else if(IS_DEAD_OR_INCAP(living_pawn))
+ return FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(ai_traits & PAUSE_DURING_DO_AFTER && LAZYLEN(living_pawn.do_afters))
return FALSE
diff --git a/code/datums/ai/basic_mobs/basic_ai_behaviors/emote_with_target.dm b/code/datums/ai/basic_mobs/basic_ai_behaviors/emote_with_target.dm
new file mode 100644
index 00000000000..8f4483d4daf
--- /dev/null
+++ b/code/datums/ai/basic_mobs/basic_ai_behaviors/emote_with_target.dm
@@ -0,0 +1,28 @@
+/datum/ai_behavior/emote_on_target
+ behavior_flags = AI_BEHAVIOR_REQUIRE_MOVEMENT | AI_BEHAVIOR_REQUIRE_REACH
+
+
+/datum/ai_behavior/emote_on_target/setup(datum/ai_controller/controller, target_key)
+ . = ..()
+ var/atom/hunt_target = controller.blackboard[target_key]
+ if (isnull(hunt_target))
+ return FALSE
+ set_movement_target(controller, hunt_target)
+
+
+/datum/ai_behavior/emote_on_target/perform(seconds_per_tick, datum/ai_controller/controller, target_key, list/emote_list)
+ var/atom/target = controller.blackboard[target_key]
+ if(!length(emote_list) || isnull(target))
+ return AI_BEHAVIOR_FAILED | AI_BEHAVIOR_DELAY
+ run_emote(controller.pawn, target_key, emote_list)
+ return AI_BEHAVIOR_SUCCEEDED | AI_BEHAVIOR_DELAY
+
+
+/datum/ai_behavior/emote_on_target/finish_action(datum/ai_controller/controller, succeeded, target_key)
+ . = ..()
+ if(succeeded)
+ controller.clear_blackboard_key(target_key)
+
+
+/datum/ai_behavior/emote_on_target/proc/run_emote(mob/living/living_pawn, atom/target, list/emote_list)
+ living_pawn.manual_emote("[pick(emote_list)] [target]")
diff --git a/code/datums/ai/basic_mobs/basic_subtrees/flee_target.dm b/code/datums/ai/basic_mobs/basic_subtrees/flee_target.dm
index dcd1c54c71b..b033ccfd079 100644
--- a/code/datums/ai/basic_mobs/basic_subtrees/flee_target.dm
+++ b/code/datums/ai/basic_mobs/basic_subtrees/flee_target.dm
@@ -12,8 +12,11 @@
var/atom/flee_from = controller.blackboard[target_key]
if(!should_flee(controller, flee_from))
return
+<<<<<<< HEAD
if(!should_flee(controller, flee_from))
return
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/flee_distance = controller.blackboard[BB_BASIC_MOB_FLEE_DISTANCE] || DEFAULT_BASIC_FLEE_DISTANCE
if (get_dist(controller.pawn, flee_from) >= flee_distance)
return
diff --git a/code/datums/ai/cursed/cursed_controller.dm b/code/datums/ai/cursed/cursed_controller.dm
index 4d0f6c6f5fd..2d980ad41e4 100644
--- a/code/datums/ai/cursed/cursed_controller.dm
+++ b/code/datums/ai/cursed/cursed_controller.dm
@@ -27,9 +27,15 @@
return ..() //Run parent at end
///signal called by the pawn hitting something after a throw
+<<<<<<< HEAD
/datum/ai_controller/cursed/proc/on_throw_hit(datum/source, atom/hit_atom, datum/thrownthing/throwingdatum)
SIGNAL_HANDLER
if(!iscarbon(hit_atom))
+=======
+/datum/ai_controller/cursed/proc/on_throw_hit(datum/source, atom/hit_atom, datum/thrownthing/throwing_datum, caught)
+ SIGNAL_HANDLER
+ if(caught || !iscarbon(hit_atom))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
//equipcode has sleeps all over it.
INVOKE_ASYNC(src, PROC_REF(try_equipping_to_target_slot), hit_atom)
diff --git a/code/datums/ai/generic/find_and_set.dm b/code/datums/ai/generic/find_and_set.dm
index 41f256c9ba7..efeb20ebb5f 100644
--- a/code/datums/ai/generic/find_and_set.dm
+++ b/code/datums/ai/generic/find_and_set.dm
@@ -177,3 +177,20 @@
var/mob/living/living_pawn = controller.pawn
var/potential_friend = living_pawn.faction.Find(REF(friend)) ? friend : null
return potential_friend
+<<<<<<< HEAD
+=======
+
+
+/datum/ai_behavior/find_and_set/in_list/turf_types
+
+
+/datum/ai_behavior/find_and_set/in_list/turf_types/search_tactic(datum/ai_controller/controller, locate_paths, search_range)
+ var/list/found = RANGE_TURFS(search_range, controller.pawn)
+ shuffle_inplace(found)
+ for(var/turf/possible_turf as anything in found)
+ if(!is_type_in_typecache(possible_turf, locate_paths))
+ continue
+ if(can_see(controller.pawn, possible_turf, search_range))
+ return possible_turf
+ return null
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/ai/monkey/monkey_controller.dm b/code/datums/ai/monkey/monkey_controller.dm
index 451d692b65d..ea73050cc22 100644
--- a/code/datums/ai/monkey/monkey_controller.dm
+++ b/code/datums/ai/monkey/monkey_controller.dm
@@ -104,10 +104,29 @@ have ways of interacting with a specific mob and control it.
. = ..()
set_trip_mode(mode = TRUE)
+<<<<<<< HEAD
/datum/ai_controller/monkey/able_to_run()
var/mob/living/living_pawn = pawn
if(living_pawn.incapacitated(IGNORE_RESTRAINTS | IGNORE_GRAB | IGNORE_STASIS) || living_pawn.stat > CONSCIOUS)
+=======
+/datum/ai_controller/monkey/on_stat_changed(mob/living/source, new_stat)
+ . = ..()
+ update_able_to_run()
+
+/datum/ai_controller/monkey/setup_able_to_run()
+ . = ..()
+ RegisterSignal(pawn, COMSIG_MOB_INCAPACITATE_CHANGED, PROC_REF(update_able_to_run))
+
+/datum/ai_controller/monkey/clear_able_to_run()
+ UnregisterSignal(pawn, list(COMSIG_MOB_INCAPACITATE_CHANGED, COMSIG_MOB_STATCHANGE))
+ return ..()
+
+/datum/ai_controller/monkey/get_able_to_run()
+ var/mob/living/living_pawn = pawn
+
+ if(INCAPACITATED_IGNORING(living_pawn, INCAPABLE_RESTRAINTS|INCAPABLE_STASIS|INCAPABLE_GRAB) || living_pawn.stat > CONSCIOUS)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return ..()
@@ -134,7 +153,11 @@ have ways of interacting with a specific mob and control it.
for(var/obj/item/item in oview(2, living_pawn))
nearby_items += item
+<<<<<<< HEAD
for(var/obj/item/item in living_pawn.held_items) // If we've got some garbage in out hands thats going to stop us from effectivly attacking, we should get rid of it.
+=======
+ for(var/obj/item/item in living_pawn.held_items) // If we've got some garbage in out hands that's going to stop us from effectively attacking, we should get rid of it.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(item.force < 2)
living_pawn.dropItemToGround(item)
@@ -151,7 +174,11 @@ have ways of interacting with a specific mob and control it.
if(!weapon || (weapon in living_pawn.held_items))
return FALSE
+<<<<<<< HEAD
if(weapon.force < 2) // our bite does 2 damage on avarage, no point in settling for anything less
+=======
+ if(weapon.force < 2) // our bite does 2 damage on average, no point in settling for anything less
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
set_blackboard_key(BB_MONKEY_PICKUPTARGET, weapon)
diff --git a/code/datums/ai/movement/_ai_movement.dm b/code/datums/ai/movement/_ai_movement.dm
index 35492c82699..16005f7d92b 100644
--- a/code/datums/ai/movement/_ai_movement.dm
+++ b/code/datums/ai/movement/_ai_movement.dm
@@ -59,7 +59,11 @@
var/datum/ai_controller/controller = source.extra_info
// Check if this controller can actually run, so we don't chase people with corpses
+<<<<<<< HEAD
if(!controller.able_to_run())
+=======
+ if(!controller.able_to_run)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
controller.CancelActions()
qdel(source) //stop moving
return MOVELOOP_SKIP_STEP
diff --git a/code/datums/ai/oldhostile/hostile_tameable.dm b/code/datums/ai/oldhostile/hostile_tameable.dm
index 1c30cb95487..3053a99a233 100644
--- a/code/datums/ai/oldhostile/hostile_tameable.dm
+++ b/code/datums/ai/oldhostile/hostile_tameable.dm
@@ -50,7 +50,23 @@
if(buckler != blackboard[BB_HOSTILE_FRIEND])
return COMPONENT_BLOCK_BUCKLE
+<<<<<<< HEAD
/datum/ai_controller/hostile_friend/able_to_run()
+=======
+/datum/ai_controller/hostile_friend/on_stat_changed(mob/living/source, new_stat)
+ . = ..()
+ update_able_to_run()
+
+/datum/ai_controller/hostile_friend/setup_able_to_run()
+ . = ..()
+ RegisterSignal(pawn, COMSIG_MOB_INCAPACITATE_CHANGED, PROC_REF(update_able_to_run))
+
+/datum/ai_controller/hostile_friend/clear_able_to_run()
+ UnregisterSignal(pawn, list(COMSIG_MOB_INCAPACITATE_CHANGED, COMSIG_MOB_STATCHANGE))
+ return ..()
+
+/datum/ai_controller/hostile_friend/get_able_to_run()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mob/living/living_pawn = pawn
if(IS_DEAD_OR_INCAP(living_pawn))
@@ -77,14 +93,22 @@
if(pawn.Adjacent(pawn, new_friend))
new_friend.visible_message("[pawn] looks at [new_friend] in a friendly manner!", span_notice("[pawn] looks at you in a friendly manner!"))
set_blackboard_key(BB_HOSTILE_FRIEND, new_friend)
+<<<<<<< HEAD
RegisterSignal(new_friend, COMSIG_MOB_POINTED, PROC_REF(check_point))
+=======
+ RegisterSignal(new_friend, COMSIG_MOVABLE_POINTED, PROC_REF(check_point))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignal(new_friend, COMSIG_MOB_SAY, PROC_REF(check_verbal_command))
/// Someone is being mean to us, take them off our friends (add actual enemies behavior later)
/datum/ai_controller/hostile_friend/proc/unfriend()
var/mob/living/old_friend = blackboard[BB_HOSTILE_FRIEND]
if(old_friend)
+<<<<<<< HEAD
UnregisterSignal(old_friend, list(COMSIG_MOB_POINTED, COMSIG_MOB_SAY))
+=======
+ UnregisterSignal(old_friend, list(COMSIG_MOVABLE_POINTED, COMSIG_MOB_SAY))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
clear_blackboard_key(BB_HOSTILE_FRIEND)
/// Someone is looking at us, if we're currently carrying something then show what it is, and include a message if they're our friend
@@ -129,7 +153,11 @@
/datum/ai_controller/hostile_friend/proc/check_menu(mob/user)
if(!istype(user))
CRASH("A non-mob is trying to issue an order to [pawn].")
+<<<<<<< HEAD
if(user.incapacitated() || !can_see(user, pawn))
+=======
+ if(user.incapacitated || !can_see(user, pawn))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
@@ -190,7 +218,11 @@
set_blackboard_key(BB_HOSTILE_ORDER_MODE, HOSTILE_COMMAND_ATTACK)
/// Someone we like is pointing at something, see if it's something we might want to interact with (like if they might want us to fetch something for them)
+<<<<<<< HEAD
/datum/ai_controller/hostile_friend/proc/check_point(mob/pointing_friend, atom/movable/pointed_movable)
+=======
+/datum/ai_controller/hostile_friend/proc/check_point(mob/pointing_friend, atom/movable/pointed_movable, obj/effect/temp_visual/point/point)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
var/mob/living/simple_animal/hostile/living_pawn = pawn
diff --git a/code/datums/announcers/default_announcer.dm b/code/datums/announcers/default_announcer.dm
index c5dc142f818..559ed31d97c 100644
--- a/code/datums/announcers/default_announcer.dm
+++ b/code/datums/announcers/default_announcer.dm
@@ -1,4 +1,7 @@
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/centcom_announcer/default
welcome_sounds = list('sound/ai/default/welcome.ogg')
alert_sounds = list('sound/ai/default/attention.ogg')
@@ -19,4 +22,7 @@
ANNOUNCER_SHUTTLEDOCK = 'sound/ai/default/shuttledock.ogg',
ANNOUNCER_SHUTTLERECALLED = 'sound/ai/default/shuttlerecalled.ogg',
ANNOUNCER_SPANOMALIES = 'sound/ai/default/spanomalies.ogg')
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/atmosphere/planetary.dm b/code/datums/atmosphere/planetary.dm
index 29db62369b9..680e3f27e88 100644
--- a/code/datums/atmosphere/planetary.dm
+++ b/code/datums/atmosphere/planetary.dm
@@ -17,7 +17,11 @@
/datum/gas/miasma=1.2,
/datum/gas/water_vapor=0.1,
)
+<<<<<<< HEAD
restricted_chance = 0 // SKYRAT EDIT: Disables restricted gases from rolling - Original value (30)
+=======
+ restricted_chance = 30
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
minimum_pressure = HAZARD_LOW_PRESSURE + 10
maximum_pressure = LAVALAND_EQUIPMENT_EFFECT_PRESSURE - 1
@@ -42,7 +46,11 @@
/datum/gas/water_vapor=0.1,
/datum/gas/miasma=1.2,
)
+<<<<<<< HEAD
restricted_chance = 0 // SKYRAT EDIT: Disables restricted gases from rolling - Original value (20)
+=======
+ restricted_chance = 20
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
minimum_pressure = HAZARD_LOW_PRESSURE + 10
maximum_pressure = LAVALAND_EQUIPMENT_EFFECT_PRESSURE - 1
diff --git a/code/datums/bodypart_overlays/bodypart_overlay.dm b/code/datums/bodypart_overlays/bodypart_overlay.dm
index 15e9bd62f44..0860a959bf5 100644
--- a/code/datums/bodypart_overlays/bodypart_overlay.dm
+++ b/code/datums/bodypart_overlays/bodypart_overlay.dm
@@ -4,7 +4,11 @@
///Sometimes we need multiple layers, for like the back, middle and front of the person (EXTERNAL_FRONT, EXTERNAL_ADJACENT, EXTERNAL_BEHIND)
var/layers
///List of all possible layers. Used for looping through in drawing
+<<<<<<< HEAD
var/static/list/all_layers = list(EXTERNAL_FRONT, EXTERNAL_ADJACENT, EXTERNAL_BEHIND, EXTERNAL_FRONT_UNDER_CLOTHES, EXTERNAL_FRONT_OVER, EXTERNAL_FRONT_ABOVE_HAIR) // SKYRAT EDIT - Customization - ORIGINAL: var/static/list/all_layers = list(EXTERNAL_FRONT, EXTERNAL_ADJACENT, EXTERNAL_BEHIND)
+=======
+ var/static/list/all_layers = list(EXTERNAL_FRONT, EXTERNAL_ADJACENT, EXTERNAL_BEHIND)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Key of the icon states of all the sprite_datums for easy caching
var/cache_key = ""
@@ -57,6 +61,7 @@
return "ADJ"
if(-BODY_FRONT_LAYER)
return "FRONT"
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION - Customization
if(-BODY_FRONT_UNDER_CLOTHES)
return "FRONT_UNDER"
@@ -65,6 +70,8 @@
if(-HEAD_LAYER)
return "FRONT_OVER_HAIR"
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Converts a bitflag to the right layer. I'd love to make this a static index list, but byond made an attempt on my life when i did
/datum/bodypart_overlay/proc/bitflag_to_layer(layer)
@@ -75,6 +82,7 @@
return -BODY_ADJ_LAYER
if(EXTERNAL_FRONT)
return -BODY_FRONT_LAYER
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION - Customization
if(EXTERNAL_FRONT_UNDER_CLOTHES)
return -BODY_FRONT_UNDER_CLOTHES
@@ -83,6 +91,8 @@
if(EXTERNAL_FRONT_ABOVE_HAIR)
return -HEAD_LAYER
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Check whether we can draw the overlays. You generally don't want lizard snouts to draw over an EVA suit
/datum/bodypart_overlay/proc/can_draw_on_bodypart(mob/living/carbon/human/human)
diff --git a/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm b/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm
index 158bba5eece..2561d993148 100644
--- a/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm
+++ b/code/datums/bodypart_overlays/mutant_bodypart_overlay.dm
@@ -13,6 +13,27 @@
///Take on the dna/preference from whoever we're gonna be inserted in
var/imprint_on_next_insertion = TRUE
+<<<<<<< HEAD
+=======
+/datum/bodypart_overlay/mutant/New(obj/item/organ/attached_organ)
+ . = ..()
+
+ RegisterSignal(attached_organ, COMSIG_ORGAN_IMPLANTED, PROC_REF(on_mob_insert))
+
+/datum/bodypart_overlay/mutant/proc/on_mob_insert(obj/item/organ/parent, mob/living/carbon/receiver)
+ SIGNAL_HANDLER
+
+ if(!should_visual_organ_apply_to(parent.type, receiver))
+ stack_trace("adding a [parent.type] to a [receiver.type] when it shouldn't be!")
+
+ if(imprint_on_next_insertion) //We only want this set *once*
+ var/feature_name = receiver.dna.features[feature_key]
+ if (isnull(feature_name))
+ feature_name = receiver.dna.species.mutant_organs[parent.type]
+ set_appearance_from_name(feature_name)
+ imprint_on_next_insertion = FALSE
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/bodypart_overlay/mutant/get_overlay(layer, obj/item/bodypart/limb)
inherit_color(limb) // If draw_color is not set yet, go ahead and do that
return ..()
@@ -67,7 +88,10 @@
return appearance
/datum/bodypart_overlay/mutant/color_image(image/overlay, layer, obj/item/bodypart/limb)
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
overlay.color = sprite_datum.color_src ? draw_color : null
/datum/bodypart_overlay/mutant/added_to_limb(obj/item/bodypart/limb)
@@ -99,13 +123,19 @@
/datum/bodypart_overlay/mutant/proc/inherit_color(obj/item/bodypart/bodypart_owner, force)
if(isnull(bodypart_owner))
draw_color = null
+<<<<<<< HEAD
alpha = 255 // SKYRAT ADDITION - Mutant bodyparts transparency are based on limb transparency
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
if(draw_color && !force)
return FALSE
+<<<<<<< HEAD
alpha = bodypart_owner.alpha // SKYRAT ADDITION - Mutant bodyparts transparency are based on limb transparency
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
switch(color_source)
if(ORGAN_COLOR_OVERRIDE)
draw_color = override_color(bodypart_owner.draw_color)
@@ -141,3 +171,7 @@
CRASH("External organ [type] couldn't find sprite accessory [accessory_name]!")
else
CRASH("External organ [type] had fetch_sprite_datum called with a null accessory name!")
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/brain_damage/creepy_trauma.dm b/code/datums/brain_damage/creepy_trauma.dm
index d7526aa7779..73f20eda4a4 100644
--- a/code/datums/brain_damage/creepy_trauma.dm
+++ b/code/datums/brain_damage/creepy_trauma.dm
@@ -136,10 +136,13 @@
continue
if(!(player.mind.assigned_role.job_flags & JOB_CREW_MEMBER))
continue
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Players in the interlink can't be obsession targets
if(SSticker.IsRoundInProgress() && istype(get_area(player), /area/centcom/interlink))
continue
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
viable_minds += player.mind
for(var/datum/mind/possible_target as anything in viable_minds)
if(possible_target != owner && ishuman(possible_target.current))
diff --git a/code/datums/brain_damage/severe.dm b/code/datums/brain_damage/severe.dm
index d5f0a0e9124..372dca594e0 100644
--- a/code/datums/brain_damage/severe.dm
+++ b/code/datums/brain_damage/severe.dm
@@ -407,7 +407,11 @@
var/obj/item/bodypart/bodypart = owner.get_bodypart(owner.get_random_valid_zone(even_weights = TRUE))
if(!(bodypart && IS_ORGANIC_LIMB(bodypart)) && bodypart.bodypart_flags & BODYPART_PSEUDOPART)
return
+<<<<<<< HEAD
if(owner.incapacitated())
+=======
+ if(owner.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
bodypart.receive_damage(scratch_damage)
if(SPT_PROB(33, seconds_per_tick))
diff --git a/code/datums/callback.dm b/code/datums/callback.dm
index 35103fbc901..95a344cd8f4 100644
--- a/code/datums/callback.dm
+++ b/code/datums/callback.dm
@@ -111,7 +111,11 @@
else
calling_arguments = args
if(datum_flags & DF_VAR_EDITED)
+<<<<<<< HEAD
if(usr != GLOB.AdminProcCallHandler && !usr?.client?.ckey) //This happens when a timer or the MC invokes a callback
+=======
+ if(usr != GLOB.AdminProcCallHandler && !(usr && usr?.client?.ckey)) //This happens when a timer or the MC invokes a callback
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return HandleUserlessProcCall(usr, object, delegate, calling_arguments)
return WrapAdminProcCall(object, delegate, calling_arguments)
if (object == GLOBAL_PROC)
@@ -148,7 +152,11 @@
else
calling_arguments = args
if(datum_flags & DF_VAR_EDITED)
+<<<<<<< HEAD
if(usr != GLOB.AdminProcCallHandler && !usr?.client?.ckey) //This happens when a timer or the MC invokes a callback
+=======
+ if(usr != GLOB.AdminProcCallHandler && !(usr && usr?.client?.ckey)) //This happens when a timer or the MC invokes a callback
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return HandleUserlessProcCall(usr, object, delegate, calling_arguments)
return WrapAdminProcCall(object, delegate, calling_arguments)
if (object == GLOBAL_PROC)
diff --git a/code/datums/chatmessage.dm b/code/datums/chatmessage.dm
index ba2b91e08fa..b51e72e514c 100644
--- a/code/datums/chatmessage.dm
+++ b/code/datums/chatmessage.dm
@@ -121,12 +121,15 @@
if (length_char(text) > maxlen)
text = copytext_char(text, 1, maxlen + 1) + "..." // BYOND index moment
+<<<<<<< HEAD
// Calculate target color if not already present
if (!target.chat_color || target.chat_color_name != target.name)
target.chat_color = get_chat_color_string(target.name) // SKYRAT EDIT CHANGE - ORIGINAL: target.chat_color = colorize_string(target.name)
target.chat_color_darkened = get_chat_color_string(target.name, darkened = TRUE) // SKYRAT EDIT CHANGE - ORIGINAL: target.chat_color_darkened = colorize_string(target.name, 0.85, 0.85)
target.chat_color_name = target.name
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Get rid of any URL schemes that might cause BYOND to automatically wrap something in an anchor tag
var/static/regex/url_scheme = new(@"[A-Za-z][A-Za-z0-9+-\.]*:\/\/", "g")
text = replacetext(text, url_scheme, "")
diff --git a/code/datums/communications.dm b/code/datums/communications.dm
index 79f660a4cfa..8c8764116b5 100644
--- a/code/datums/communications.dm
+++ b/code/datums/communications.dm
@@ -39,7 +39,11 @@ GLOBAL_DATUM_INIT(communications_controller, /datum/communciations_controller, n
if(syndicate)
priority_announce(html_decode(message_data["message"]), null, 'sound/misc/announce_syndi.ogg', ANNOUNCEMENT_TYPE_SYNDICATE, has_important_message = TRUE, players = players, color_override = "red")
else
+<<<<<<< HEAD
priority_announce(html_decode(message_data["message"]), null, ANNOUNCER_CAPTAIN, ANNOUNCEMENT_TYPE_CAPTAIN, has_important_message = TRUE, players = players) // SKYRAT EDIT CHANGE - 'sound/misc/announce.ogg' to ANNOUNCER_CAPTAIN
+=======
+ priority_announce(html_decode(message_data["message"]), null, 'sound/misc/announce.ogg', ANNOUNCEMENT_TYPE_CAPTAIN, has_important_message = TRUE, players = players)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
COOLDOWN_START(src, nonsilicon_message_cooldown, COMMUNICATION_COOLDOWN)
user.log_talk(input, LOG_SAY, tag="priority announcement")
message_admins("[ADMIN_LOOKUPFLW(user)] has made a priority announcement.")
diff --git a/code/datums/components/appearance_on_aggro.dm b/code/datums/components/appearance_on_aggro.dm
index 8c0df88e6fd..629242a9caa 100644
--- a/code/datums/components/appearance_on_aggro.dm
+++ b/code/datums/components/appearance_on_aggro.dm
@@ -13,8 +13,11 @@
var/alpha_on_aggro
/// visibility of our icon when deaggroed
var/alpha_on_deaggro
+<<<<<<< HEAD
/// do we currently have a target
var/atom/current_target
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/appearance_on_aggro/Initialize(aggro_state, overlay_icon, overlay_state, alpha_on_aggro, alpha_on_deaggro)
if (!isliving(parent))
@@ -27,7 +30,11 @@
/datum/component/appearance_on_aggro/RegisterWithParent()
RegisterSignal(parent, COMSIG_AI_BLACKBOARD_KEY_SET(target_key), PROC_REF(on_set_target))
+<<<<<<< HEAD
RegisterSignal(parent, COMSIG_AI_BLACKBOARD_KEY_CLEARED(target_key), PROC_REF(on_clear_target))
+=======
+ RegisterSignals(parent, list(COMSIG_AI_BLACKBOARD_KEY_CLEARED(target_key), COMSIG_LIVING_DEATH), PROC_REF(on_clear_or_death))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (!isnull(aggro_state))
RegisterSignal(parent, COMSIG_ATOM_UPDATE_ICON_STATE, PROC_REF(on_icon_state_updated))
if (!isnull(aggro_overlay))
@@ -35,32 +42,53 @@
/datum/component/appearance_on_aggro/UnregisterFromParent()
. = ..()
+<<<<<<< HEAD
UnregisterSignal(parent, list(COMSIG_AI_BLACKBOARD_KEY_SET(target_key), COMSIG_AI_BLACKBOARD_KEY_CLEARED(target_key)))
+=======
+ UnregisterSignal(parent, list(COMSIG_AI_BLACKBOARD_KEY_SET(target_key), COMSIG_AI_BLACKBOARD_KEY_CLEARED(target_key), COMSIG_LIVING_DEATH))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/appearance_on_aggro/proc/on_set_target(mob/living/source)
SIGNAL_HANDLER
+<<<<<<< HEAD
var/atom/target = source.ai_controller.blackboard[target_key]
if (QDELETED(target))
return
current_target = target
+=======
+ var/atom/target = source.ai_controller?.blackboard[target_key]
+ if (QDELETED(target))
+ return
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (!isnull(aggro_overlay) || !isnull(aggro_state))
source.update_appearance(UPDATE_ICON)
if (!isnull(alpha_on_aggro))
animate(source, alpha = alpha_on_aggro, time = 2 SECONDS)
/datum/component/appearance_on_aggro/Destroy()
+<<<<<<< HEAD
if (!isnull(current_target))
revert_appearance(parent)
return ..()
/datum/component/appearance_on_aggro/proc/on_clear_target(atom/source)
+=======
+ revert_appearance(parent)
+ return ..()
+
+/datum/component/appearance_on_aggro/proc/on_clear_or_death(atom/source)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
revert_appearance(parent)
/datum/component/appearance_on_aggro/proc/revert_appearance(mob/living/source)
+<<<<<<< HEAD
current_target = null
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (!isnull(aggro_overlay) || !isnull(aggro_state))
source.update_appearance(UPDATE_ICON)
if (!isnull(alpha_on_deaggro))
@@ -70,11 +98,20 @@
SIGNAL_HANDLER
if (source.stat == DEAD)
return
+<<<<<<< HEAD
source.icon_state = isnull(current_target) ? initial(source.icon_state) : aggro_state
/datum/component/appearance_on_aggro/proc/on_overlays_updated(atom/source, list/overlays)
SIGNAL_HANDLER
if (isnull(current_target))
+=======
+ source.icon_state = source.ai_controller?.blackboard_key_exists(target_key) ? aggro_state : initial(source.icon_state)
+
+/datum/component/appearance_on_aggro/proc/on_overlays_updated(mob/living/basic/source, list/overlays)
+ SIGNAL_HANDLER
+
+ if(!(source.ai_controller?.blackboard_key_exists(target_key)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
overlays += aggro_overlay
diff --git a/code/datums/components/aquarium_content.dm b/code/datums/components/aquarium_content.dm
index 21c6c75ca16..386458f233d 100644
--- a/code/datums/components/aquarium_content.dm
+++ b/code/datums/components/aquarium_content.dm
@@ -24,6 +24,7 @@
//Current layer for the visual object
var/base_layer
+<<<<<<< HEAD
/**
* Fish sprite how to:
@@ -33,6 +34,17 @@
*/
+=======
+ /**
+ * Fish sprite how to:
+ * The aquarium icon state needs to be centered on 16,16 in the dmi and facing left by default.
+ * sprite_width/sprite_height are the sizes it will have in aquarium and used to control animation boundaries.
+ * Ideally these two vars represent the size of the aquarium icon state, but they can be one or two units shorter
+ * to give more room for the visual to float around inside the aquarium, since the aquarium tank frame overlay will likely
+ * cover the extra pixels anyway.
+ */
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Icon used for in aquarium sprite
var/icon = 'icons/obj/aquarium/fish.dmi'
/// If this is set this icon state will be used for the holder while icon_state will only be used for item/catalog. Transformation from source_width/height WON'T be applied.
@@ -52,10 +64,13 @@
var/sprite_height = 3
var/sprite_width = 3
+<<<<<<< HEAD
//This is the size of the source sprite. This will be used to calculate scale down factor.
var/source_width = 32
var/source_height = 32
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Currently playing animation
var/current_animation
@@ -97,6 +112,10 @@
ADD_TRAIT(parent, TRAIT_FISH_CASE_COMPATIBILE, REF(src))
RegisterSignal(parent, COMSIG_TRY_INSERTING_IN_AQUARIUM, PROC_REF(is_ready_to_insert))
RegisterSignal(parent, COMSIG_MOVABLE_MOVED, PROC_REF(enter_aquarium))
+<<<<<<< HEAD
+=======
+ RegisterSignal(parent, COMSIG_FISH_PETTED, PROC_REF(on_fish_petted))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//If component is added to something already in aquarium at the time initialize it properly.
var/atom/movable/movable_parent = parent
@@ -112,6 +131,7 @@
sprite_width = fish.sprite_width
aquarium_vc_color = fish.aquarium_vc_color
+<<<<<<< HEAD
if(fish.dedicated_in_aquarium_icon_state)
if(fish.dedicated_in_aquarium_icon)
icon = fish.dedicated_in_aquarium_icon
@@ -124,6 +144,11 @@
var/y_scale = fish.sprite_height / fish.source_height
matrix.Scale(x_scale, y_scale)
base_transform = matrix
+=======
+ icon = fish.dedicated_in_aquarium_icon
+ icon_state = fish.dedicated_in_aquarium_icon_state
+ base_transform = matrix()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
randomize_position = TRUE
@@ -274,7 +299,10 @@
dead_animation()
return
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Create looping random path animation, pixel offsets parameters include offsets already
/datum/component/aquarium_content/proc/swim_animation()
var/avg_width = round(sprite_width / 2)
@@ -325,6 +353,14 @@
base_layer = current_aquarium.request_layer(layer_mode)
vc_obj.layer = base_layer
+<<<<<<< HEAD
+=======
+/datum/component/aquarium_content/proc/on_fish_petted()
+ SIGNAL_HANDLER
+
+ new /obj/effect/temp_visual/heart(get_turf(parent))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/aquarium_content/proc/randomize_base_position()
var/list/aq_properties = current_aquarium.get_surface_properties()
var/avg_width = round(sprite_width / 2)
diff --git a/code/datums/components/bakeable.dm b/code/datums/components/bakeable.dm
index afc71936f1b..b65bedcb537 100644
--- a/code/datums/components/bakeable.dm
+++ b/code/datums/components/bakeable.dm
@@ -93,11 +93,19 @@
var/list/asomnia_hadders = list()
for(var/mob/smeller in get_hearers_in_view(DEFAULT_MESSAGE_RANGE, used_oven))
if(HAS_TRAIT(smeller, TRAIT_ANOSMIA))
+<<<<<<< HEAD
asomnia_hadders += smeller
if(positive_result)
used_oven.visible_message(
span_notice("You smell something great coming from [used_oven]."),
+=======
+ asomnia_hadders += smeller
+
+ if(positive_result)
+ used_oven.visible_message(
+ span_notice("You smell something great coming from [used_oven]."),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blind_message = span_notice("You smell something great..."),
ignored_mobs = asomnia_hadders,
)
diff --git a/code/datums/components/boomerang.dm b/code/datums/components/boomerang.dm
index 23dd63d1467..9c833cc3b26 100644
--- a/code/datums/components/boomerang.dm
+++ b/code/datums/components/boomerang.dm
@@ -60,12 +60,20 @@
* * hit_atom: The atom that has been hit by the boomerang component.
* * init_throwing_datum: The thrownthing datum that originally impacted the object, that we use to build the new throwing datum for the rebound.
*/
+<<<<<<< HEAD
/datum/component/boomerang/proc/return_hit_throw(datum/source, atom/hit_atom, datum/thrownthing/init_throwing_datum)
SIGNAL_HANDLER
if (!COOLDOWN_FINISHED(src, last_boomerang_throw))
return
var/obj/item/true_parent = parent
aerodynamic_swing(init_throwing_datum, true_parent)
+=======
+/datum/component/boomerang/proc/return_hit_throw(datum/source, atom/hit_atom, datum/thrownthing/init_throwing_datum, caught)
+ SIGNAL_HANDLER
+ if (!COOLDOWN_FINISHED(src, last_boomerang_throw) || caught)
+ return
+ aerodynamic_swing(init_throwing_datum, parent)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* Proc that triggers when the thrown boomerang does not hit a target.
diff --git a/code/datums/components/caltrop.dm b/code/datums/components/caltrop.dm
index d4f1df1778b..bbcb3616042 100644
--- a/code/datums/components/caltrop.dm
+++ b/code/datums/components/caltrop.dm
@@ -97,10 +97,13 @@
return
if (!(flags & CALTROP_BYPASS_SHOES))
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - Hardened Soles Quirk
if(HAS_TRAIT(digitigrade_fan, TRAIT_HARD_SOLES))
return
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if ((digitigrade_fan.wear_suit?.body_parts_covered | digitigrade_fan.w_uniform?.body_parts_covered | digitigrade_fan.shoes?.body_parts_covered) & FEET)
return
diff --git a/code/datums/components/chasm.dm b/code/datums/components/chasm.dm
index 43d7201b1e4..4fcce604074 100644
--- a/code/datums/components/chasm.dm
+++ b/code/datums/components/chasm.dm
@@ -14,7 +14,11 @@
/obj/effect/constructing_effect,
/obj/effect/dummy/phased_mob,
/obj/effect/ebeam,
+<<<<<<< HEAD
/obj/effect/fishing_lure,
+=======
+ /obj/effect/fishing_float,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/hotspot,
/obj/effect/landmark,
/obj/effect/light_emitter/tendril,
@@ -251,14 +255,60 @@ GLOBAL_LIST_EMPTY(chasm_fallen_mobs)
/obj/effect/abstract/chasm_storage/Entered(atom/movable/arrived)
. = ..()
if(isliving(arrived))
+<<<<<<< HEAD
RegisterSignal(arrived, COMSIG_LIVING_REVIVE, PROC_REF(on_revive))
GLOB.chasm_fallen_mobs += arrived
+=======
+ //Mobs that have fallen in reserved area should be deleted to avoid fishing stuff from the deathmatch or VR.
+ if(is_reserved_level(loc.z) && !istype(get_area(loc), /area/shuttle))
+ qdel(arrived)
+ return
+ RegisterSignal(arrived, COMSIG_LIVING_REVIVE, PROC_REF(on_revive))
+ LAZYADD(GLOB.chasm_fallen_mobs[get_chasm_category(loc)], arrived)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/abstract/chasm_storage/Exited(atom/movable/gone)
. = ..()
if(isliving(gone))
UnregisterSignal(gone, COMSIG_LIVING_REVIVE)
+<<<<<<< HEAD
GLOB.chasm_fallen_mobs -= gone
+=======
+ LAZYREMOVE(GLOB.chasm_fallen_mobs[get_chasm_category(loc)], gone)
+
+/obj/effect/abstract/chasm_storage/on_changed_z_level(turf/old_turf, turf/new_turf, same_z_layer, notify_contents)
+ . = ..()
+ var/old_cat = get_chasm_category(old_turf)
+ var/new_cat = get_chasm_category(new_turf)
+ var/list/mobs = list()
+ for(var/mob/fallen in src)
+ mobs += fallen
+ LAZYREMOVE(GLOB.chasm_fallen_mobs[old_cat], mobs)
+ LAZYADD(GLOB.chasm_fallen_mobs[new_cat], mobs)
+
+/**
+ * Returns a key to store, remove and access fallen mobs depending on the z-level.
+ * This stops rescuing people from places that are waaaaaaaay too far-fetched.
+ */
+/proc/get_chasm_category(turf/turf)
+ var/z_level = turf?.z
+ var/area/area = get_area(turf)
+ if(istype(area, /area/shuttle)) //shuttle move between z-levels, so they're a special case.
+ return area
+
+ if(is_away_level(z_level))
+ return ZTRAIT_AWAY
+ if(is_mining_level(z_level))
+ return ZTRAIT_MINING
+ if(is_station_level(z_level))
+ return ZTRAIT_STATION
+ if(is_centcom_level(z_level))
+ return ZTRAIT_CENTCOM
+ if(is_reserved_level(z_level))
+ return ZTRAIT_RESERVED
+
+ return ZTRAIT_SPACE_RUINS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define CHASM_TRAIT "chasm trait"
/**
diff --git a/code/datums/components/connect_mob_behalf.dm b/code/datums/components/connect_mob_behalf.dm
index b8aa014f810..f4e2ae1e586 100644
--- a/code/datums/components/connect_mob_behalf.dm
+++ b/code/datums/components/connect_mob_behalf.dm
@@ -1,6 +1,10 @@
/// This component behaves similar to connect_loc_behalf, but working off clients and mobs instead of loc
/// To be clear, we hook into a signal on a tracked client's mob
+<<<<<<< HEAD
/// We retain the ability to react to that signal on a seperate listener, which makes this quite powerful
+=======
+/// We retain the ability to react to that signal on a separate listener, which makes this quite powerful
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/connect_mob_behalf
dupe_mode = COMPONENT_DUPE_UNIQUE
diff --git a/code/datums/components/connect_range.dm b/code/datums/components/connect_range.dm
index d3407f46714..5da1f95a5e1 100644
--- a/code/datums/components/connect_range.dm
+++ b/code/datums/components/connect_range.dm
@@ -1,6 +1,10 @@
/**
* This component behaves similar to connect_loc_behalf but for all turfs in range, hooking into a signal on each of them.
+<<<<<<< HEAD
* Just like connect_loc_behalf, It can react to that signal on behalf of a seperate listener.
+=======
+ * Just like connect_loc_behalf, It can react to that signal on behalf of a separate listener.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Good for components, though it carries some overhead. Can't be an element as that may lead to bugs.
*/
/datum/component/connect_range
diff --git a/code/datums/components/crafting/crafting.dm b/code/datums/components/crafting/crafting.dm
index 64f58ce7715..66d7e5f640c 100644
--- a/code/datums/components/crafting/crafting.dm
+++ b/code/datums/components/crafting/crafting.dm
@@ -248,6 +248,7 @@
return ", must be made on a tram!"
//If we're a mob we'll try a do_after; non mobs will instead instantly construct the item
+<<<<<<< HEAD
//SKYRAT EDIT START: Two Skills (Construction)
var/mob/crafter_mob
var/skill_modifier = 1
@@ -255,6 +256,9 @@
crafter_mob = crafter
skill_modifier = crafter_mob.mind.get_skill_modifier(/datum/skill/construction, SKILL_SPEED_MODIFIER)
if(!do_after(crafter, recipe.time * skill_modifier, target = crafter))
+=======
+ if(ismob(crafter) && !do_after(crafter, recipe.time, target = crafter))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return "."
contents = get_surroundings(crafter, recipe.blacklist)
if(!check_contents(crafter, recipe, contents))
@@ -272,9 +276,12 @@
if(result.atom_storage && recipe.delete_contents)
for(var/obj/item/thing in result)
qdel(thing)
+<<<<<<< HEAD
if(crafter_mob)
crafter_mob.mind.adjust_experience(/datum/skill/construction, 5)
//SKYRAT EDIT STOP: Construction Skill
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/reagents/holder = locate() in parts
if(holder) //transfer reagents from ingredients to result
if(!ispath(recipe.result, /obj/item/reagent_containers) && result.reagents)
@@ -317,7 +324,10 @@
var/datum/reagents/holder
var/list/surroundings
var/list/Deletion = list()
+<<<<<<< HEAD
var/data
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/amt
var/list/requirements = list()
if(R.reqs)
@@ -354,7 +364,10 @@
RC.reagents.trans_to(holder, reagent_volume, target_id = path_key, no_react = TRUE)
surroundings -= RC
amt -= reagent_volume
+<<<<<<< HEAD
SEND_SIGNAL(RC.reagents, COMSIG_REAGENTS_CRAFTING_PING) // - [] TODO: Make this entire thing less spaghetti
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
surroundings -= RC
RC.update_appearance(UPDATE_ICON)
@@ -368,7 +381,7 @@
SD = new S.type()
Deletion += SD
S.use(amt)
- SD = locate(S.type) in Deletion
+ SD = SD || locate(S.type) in Deletion // SD might be already set here, no sense in searching for it again
SD.amount += amt
continue main_loop
else
@@ -376,9 +389,9 @@
if(!locate(S.type) in Deletion)
Deletion += S
else
- data = S.amount
- S = locate(S.type) in Deletion
- S.add(data)
+ SD = SD || locate(S.type) in Deletion
+ SD.add(S.amount) // add the amount to our tally stack, SD
+ qdel(S) // We can just delete it straight away as it's going to be fully consumed anyway, saving some overhead from calling use()
surroundings -= S
else
var/atom/movable/I
@@ -546,7 +559,11 @@
return TRUE
+<<<<<<< HEAD
/datum/component/personal_crafting/ui_act(action, params)
+=======
+/datum/component/personal_crafting/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/datums/components/crafting/equipment.dm b/code/datums/components/crafting/equipment.dm
index 98595647ea2..56f889a2da4 100644
--- a/code/datums/components/crafting/equipment.dm
+++ b/code/datums/components/crafting/equipment.dm
@@ -272,8 +272,11 @@
category = CAT_EQUIPMENT
tool_behaviors = list(TOOL_WELDER, TOOL_WIRECUTTER)
+<<<<<<< HEAD
// SKYRAT EDIT REMOVAL START
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/crafting_recipe/arrow_quiver
name = "Archery Quiver"
result = /obj/item/storage/bag/quiver/lesser
@@ -284,4 +287,7 @@
)
category = CAT_EQUIPMENT
tool_behaviors = list(TOOL_WELDER, TOOL_WIRECUTTER)
+<<<<<<< HEAD
*/ // SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/crafting/tailoring.dm b/code/datums/components/crafting/tailoring.dm
index 3c498f74416..85e33ba8f4a 100644
--- a/code/datums/components/crafting/tailoring.dm
+++ b/code/datums/components/crafting/tailoring.dm
@@ -218,6 +218,433 @@
result = /obj/effect/spawner/random/clothing/lizardboots
reqs = list(/obj/item/stack/sheet/animalhide/lizard = 1, /obj/item/stack/sheet/leather = 1)
time = 6 SECONDS
+<<<<<<< HEAD
+=======
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/prisonsuit
+ name = "Prisoner Uniform (Suit)"
+ result = /obj/item/clothing/under/rank/prisoner
+ reqs = list(/obj/item/stack/sheet/cloth = 3, /obj/item/stack/license_plates = 1)
+ time = 2 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/prisonskirt
+ name = "Prisoner Uniform (Skirt)"
+ result = /obj/item/clothing/under/rank/prisoner/skirt
+ reqs = list(/obj/item/stack/sheet/cloth = 3, /obj/item/stack/license_plates = 1)
+ time = 2 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/prisonshoes
+ name = "Orange Prison Shoes"
+ result = /obj/item/clothing/shoes/sneakers/orange
+ reqs = list(/obj/item/stack/sheet/cloth = 2, /obj/item/stack/license_plates = 1)
+ time = 1 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/tv_helmet
+ name = "Television Helmet"
+ result = /obj/item/clothing/head/costume/tv_head
+ tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_CROWBAR)
+ reqs = list(/obj/item/wallframe/status_display = 1)
+ time = 2 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/lizardhat
+ name = "Lizard Cloche Hat"
+ result = /obj/item/clothing/head/costume/lizard
+ time = 1 SECONDS
+ reqs = list(/obj/item/organ/external/tail/lizard = 1)
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/lizardhat_alternate
+ name = "Lizard Cloche Hat"
+ result = /obj/item/clothing/head/costume/lizard
+ time = 1 SECONDS
+ reqs = list(/obj/item/stack/sheet/animalhide/lizard = 1)
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/kittyears
+ name = "Kitty Ears"
+ result = /obj/item/clothing/head/costume/kitty/genuine
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/organ/external/tail/cat = 1,
+ /obj/item/organ/internal/ears/cat = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/bonearmor
+ name = "Bone Armor"
+ result = /obj/item/clothing/suit/armor/bone
+ time = 3 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 6,
+ /obj/item/stack/sheet/animalhide/goliath_hide = 3,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/bonetalisman
+ name = "Bone Talisman"
+ result = /obj/item/clothing/accessory/talisman
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 2,
+ /obj/item/stack/sheet/sinew = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/bonecodpiece
+ name = "Skull Codpiece"
+ result = /obj/item/clothing/accessory/skullcodpiece
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 2,
+ /obj/item/stack/sheet/animalhide/goliath_hide = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/skilt
+ name = "Sinew Kilt"
+ result = /obj/item/clothing/accessory/skilt
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 1,
+ /obj/item/stack/sheet/sinew = 2,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/wreath
+ name = "Watcher Wreath"
+ result = /obj/item/clothing/neck/wreath
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 2,
+ /obj/item/stack/sheet/sinew = 2,
+ /obj/item/stack/ore/diamond = 2,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/icewreath
+ name = "Icewing Wreath"
+ result = /obj/item/clothing/neck/wreath/icewing
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 1,
+ /obj/item/stack/sheet/sinew = 1,
+ /obj/item/stack/ore/diamond = 2,
+ /obj/item/crusher_trophy/watcher_wing/ice_wing = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/bracers
+ name = "Bone Bracers"
+ result = /obj/item/clothing/gloves/bracer
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 2,
+ /obj/item/stack/sheet/sinew = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/skullhelm
+ name = "Skull Helmet"
+ result = /obj/item/clothing/head/helmet/skull
+ time = 3 SECONDS
+ reqs = list(/obj/item/stack/sheet/bone = 4)
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/goliathcloak
+ name = "Goliath Cloak"
+ result = /obj/item/clothing/suit/hooded/cloak/goliath
+ time = 5 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/sinew = 3,
+ /obj/item/stack/sheet/animalhide/goliath_hide = 9,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/drakecloak
+ name = "Ash Drake Armour"
+ result = /obj/item/clothing/suit/hooded/cloak/drake
+ time = 4 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/sinew = 2,
+ /obj/item/drake_remains = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/drakeremains
+ name = "Drake Remains"
+ result = /obj/item/drake_remains
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/bone = 10,
+ /obj/item/stack/sheet/animalhide/ashdrake = 5,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/godslayer
+ name = "Godslayer Armour"
+ result = /obj/item/clothing/suit/hooded/cloak/godslayer
+ time = 6 SECONDS
+ reqs = list(
+ /obj/item/ice_energy_crystal = 1,
+ /obj/item/wendigo_skull = 1,
+ /obj/item/clockwork_alloy = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/mummy
+ name = "Mummification Bandages (Mask)"
+ result = /obj/item/clothing/mask/mummy
+ time = 1 SECONDS
+ tool_paths = list(/obj/item/nullrod/egyptian)
+ reqs = list(/obj/item/stack/sheet/cloth = 2)
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/mummy/body
+ name = "Mummification Bandages (Body)"
+ result = /obj/item/clothing/under/costume/mummy
+ reqs = list(/obj/item/stack/sheet/cloth = 5)
+
+/datum/crafting_recipe/chaplain_hood
+ name = "Follower Hoodie"
+ result = /obj/item/clothing/suit/hooded/chaplain_hoodie
+ time = 1 SECONDS
+ tool_paths = list(
+ /obj/item/clothing/suit/hooded/chaplain_hoodie,
+ /obj/item/book/bible,
+ )
+ reqs = list(/obj/item/stack/sheet/cloth = 4)
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/flower_garland
+ name = "Flower Garland"
+ result = /obj/item/clothing/head/costume/garland
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/food/grown/poppy = 4,
+ /obj/item/food/grown/harebell = 4,
+ /obj/item/food/grown/rose = 4,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/poppy_crown
+ name = "Poppy Crown"
+ result = /obj/item/clothing/head/costume/garland/poppy
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/food/grown/poppy = 5,
+ /obj/item/stack/cable_coil = 3,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/lily_crown
+ name = "Lily Crown"
+ result = /obj/item/clothing/head/costume/garland/lily
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/food/grown/poppy/lily = 5,
+ /obj/item/stack/cable_coil = 3,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/sunflower_crown
+ name = "Sunflower Crown"
+ result = /obj/item/clothing/head/costume/garland/sunflower
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/food/grown/sunflower = 5,
+ /obj/item/stack/cable_coil = 3,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/rainbow_bunch_crown
+ name = "Rainbow Flower Crown"
+ result = /obj/item/clothing/head/costume/garland/rainbowbunch
+ time = 1 SECONDS
+ reqs = list(
+ /obj/item/food/grown/rainbow_flower = 5,
+ /obj/item/stack/cable_coil = 3,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/pillow_suit
+ name = "pillow suit"
+ result = /obj/item/clothing/suit/pillow_suit
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sticky_tape = 10,
+ /obj/item/pillow = 5,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/pillow_hood
+ name = "pillow hood"
+ result = /obj/item/clothing/head/pillow_hood
+ tool_behaviors = list(TOOL_WIRECUTTER, TOOL_KNIFE)
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sticky_tape = 5,
+ /obj/item/pillow = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/shark_costume
+ name = "shark costume"
+ result = /obj/item/clothing/suit/hooded/shark_costume
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/leather = 5,
+ /obj/item/stack/sheet/animalhide/carp = 5,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/shork_costume
+ name = "shork costume"
+ result = /obj/item/clothing/suit/hooded/shork_costume
+ time = 2 SECONDS
+ tool_behaviors = list(TOOL_WIRECUTTER)
+ reqs = list(
+ /obj/item/clothing/suit/hooded/shark_costume = 1,
+ )
+ category = CAT_CLOTHING
+
+
+/datum/crafting_recipe/sturdy_shako
+ name = "Sturdy Shako"
+ result = /obj/item/clothing/head/hats/hos/shako
+ tool_behaviors = list(TOOL_WELDER, TOOL_KNIFE)
+ time = 5 SECONDS
+ reqs = list(
+ /obj/item/clothing/head/hats/hos/cap = 1,
+ /obj/item/stack/sheet/plasteel = 2, //Stout shako for two refined
+ /obj/item/stack/sheet/mineral/gold = 2,
+ )
+
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/atmospherics_gas_mask
+ name = "atmospherics gas mask"
+ result = /obj/item/clothing/mask/gas/atmos
+ tool_behaviors = list(TOOL_WELDER)
+ time = 8 SECONDS
+ reqs = list(
+ /obj/item/stack/sheet/mineral/metal_hydrogen = 1,
+ /obj/item/stack/sheet/mineral/zaukerite = 1,
+ )
+
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/paper_hat
+ name = "Paper Hat"
+ result = /obj/item/clothing/head/costume/paper_hat
+ time = 5 SECONDS
+ reqs = list(
+ /obj/item/paper = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/biohood_sec
+ name = "security biohood"
+ result = /obj/item/clothing/head/bio_hood/security
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/clothing/head/bio_hood/general = 1,
+ /obj/item/clothing/head/helmet/sec = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/biosuit_sec
+ name = "security biosuit"
+ result = /obj/item/clothing/suit/bio_suit/security
+ time = 2 SECONDS
+ reqs = list(
+ /obj/item/clothing/suit/bio_suit/general = 1,
+ /obj/item/clothing/suit/armor/vest = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/balloon_helmet
+ result = /obj/item/clothing/head/helmet/balloon
+ reqs = list(
+ /obj/item/toy/balloon/long = 6,
+ )
+ time = 4 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/balloon_helmet/check_requirements(mob/user, list/collected_requirements)
+ . = ..()
+ if(HAS_TRAIT(user, TRAIT_BALLOON_SUTRA))
+ return TRUE
+
+/datum/crafting_recipe/balloon_tophat
+ result = /obj/item/clothing/head/hats/tophat/balloon
+ reqs = list(
+ /obj/item/toy/balloon/long = 6,
+ )
+ time = 4 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/balloon_tophat/check_requirements(mob/user, list/collected_requirements)
+ . = ..()
+ if(HAS_TRAIT(user, TRAIT_BALLOON_SUTRA))
+ return TRUE
+
+/datum/crafting_recipe/balloon_vest
+ result = /obj/item/clothing/suit/armor/balloon_vest
+ reqs = list(
+ /obj/item/toy/balloon/long = 18,
+ )
+ time = 8 SECONDS
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/balloon_vest/check_requirements(mob/user, list/collected_requirements)
+ . = ..()
+ if(HAS_TRAIT(user, TRAIT_BALLOON_SUTRA))
+ return TRUE
+
+/datum/crafting_recipe/press_armor
+ name = "press armor vest"
+ result = /obj/item/clothing/suit/armor/vest/press
+ time = 2 SECONDS
+ tool_paths = list(/obj/item/clothing/accessory/press_badge)
+ reqs = list(
+ /obj/item/clothing/suit/armor/vest = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/press_helmet
+ name = "press helmet vest"
+ result = /obj/item/clothing/head/helmet/press
+ time = 2 SECONDS
+ tool_paths = list(/obj/item/clothing/accessory/press_badge)
+ reqs = list(
+ /obj/item/clothing/head/helmet/sec = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/press_vest
+ name = "press vest"
+ result = /obj/item/clothing/suit/hazardvest/press
+ time = 2 SECONDS
+ tool_paths = list(/obj/item/clothing/accessory/press_badge)
+ reqs = list(
+ /obj/item/clothing/suit/hazardvest = 1,
+ )
+ category = CAT_CLOTHING
+
+/datum/crafting_recipe/press_fedora
+ name = "press fedora"
+ result = /obj/item/clothing/head/fedora/beige/press
+ time = 2 SECONDS
+ tool_paths = list(/obj/item/clothing/accessory/press_badge)
+ reqs = list(
+ /obj/item/clothing/head/fedora/beige = 1,
+ )
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
category = CAT_CLOTHING
/datum/crafting_recipe/prisonsuit
diff --git a/code/datums/components/crafting/tools.dm b/code/datums/components/crafting/tools.dm
index e286e49616c..623f8461096 100644
--- a/code/datums/components/crafting/tools.dm
+++ b/code/datums/components/crafting/tools.dm
@@ -14,7 +14,11 @@
reqs = list(/obj/item/grown/log = 5)
parts = list(/obj/item/grown/log = 5)
blacklist = list(/obj/item/grown/log/steel)
+<<<<<<< HEAD
result = /obj/structure/bonfire/player_made // SKYRAT EDIT - Pollution - ORIGINAL: result = /obj/structure/bonfire
+=======
+ result = /obj/structure/bonfire
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
category = CAT_TOOLS
/datum/crafting_recipe/boneshovel
diff --git a/code/datums/components/crank_recharge.dm b/code/datums/components/crank_recharge.dm
index b5196579f3c..f19e5cee9d0 100644
--- a/code/datums/components/crank_recharge.dm
+++ b/code/datums/components/crank_recharge.dm
@@ -61,7 +61,10 @@
is_charging = FALSE
return
charging_cell.give(charge_amount)
+<<<<<<< HEAD
SEND_SIGNAL(parent, COMSIG_UPDATE_AMMO_HUD) // SKYRAT EDIT ADDITION - AMMO COUNT HUD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
source.update_appearance()
is_charging = FALSE
if(spin_to_win)
diff --git a/code/datums/components/cult_ritual_item.dm b/code/datums/components/cult_ritual_item.dm
index dedd30bda0e..42f5dd79128 100644
--- a/code/datums/components/cult_ritual_item.dm
+++ b/code/datums/components/cult_ritual_item.dm
@@ -404,7 +404,11 @@
if(!rune.Adjacent(cultist))
return FALSE
+<<<<<<< HEAD
if(cultist.incapacitated())
+=======
+ if(cultist.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(cultist.stat == DEAD)
@@ -427,7 +431,11 @@
if(QDELETED(tool) || !cultist.is_holding(tool))
return FALSE
+<<<<<<< HEAD
if(cultist.incapacitated() || cultist.stat == DEAD)
+=======
+ if(cultist.incapacitated || cultist.stat == DEAD)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(cultist, span_warning("You can't draw a rune right now."))
return FALSE
diff --git a/code/datums/components/echolocation.dm b/code/datums/components/echolocation.dm
index f5181a98147..6ad64c3367f 100644
--- a/code/datums/components/echolocation.dm
+++ b/code/datums/components/echolocation.dm
@@ -32,7 +32,11 @@
/// Cooldown for the echolocation.
COOLDOWN_DECLARE(cooldown_last)
+<<<<<<< HEAD
/datum/component/echolocation/Initialize(echo_range, cooldown_time, image_expiry_time, fade_in_time, fade_out_time, images_are_static, blocking_trait, echo_group, echo_icon, color_path, use_echo = TRUE, show_own_outline = FALSE, personal_color = "#ffffff") // SKYRAT EDIT CHANGE - ORIGINAL: /datum/component/echolocation/Initialize(echo_range, cooldown_time, image_expiry_time, fade_in_time, fade_out_time, images_are_static, blocking_trait, echo_group, echo_icon = "echo", color_path)
+=======
+/datum/component/echolocation/Initialize(echo_range, cooldown_time, image_expiry_time, fade_in_time, fade_out_time, images_are_static, blocking_trait, echo_group, echo_icon, color_path)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
var/mob/living/echolocator = parent
if(!istype(echolocator))
@@ -55,19 +59,26 @@
src.images_are_static = images_are_static
if(!isnull(blocking_trait))
src.blocking_trait = blocking_trait
+<<<<<<< HEAD
// SKYRAT ADDITION START: echolocation
src.show_own_outline = show_own_outline
src.echo_color = personal_color
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(ispath(color_path))
client_color = echolocator.add_client_colour(color_path)
src.echo_group = echo_group || REF(src)
echolocator.add_traits(list(TRAIT_ECHOLOCATION_RECEIVER, TRAIT_TRUE_NIGHT_VISION), echo_group) //so they see all the tiles they echolocated, even if they are in the dark
echolocator.become_blind(ECHOLOCATION_TRAIT)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
if (use_echo) // add constructor toggle to not use the eye overlay
echolocator.overlay_fullscreen("echo", /atom/movable/screen/fullscreen/echo, echo_icon)
// SKYRAT EDIT ADDITION END
+=======
+ echolocator.overlay_fullscreen("echo", /atom/movable/screen/fullscreen/echo, echo_icon)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
START_PROCESSING(SSfastprocess, src)
/datum/component/echolocation/Destroy(force)
@@ -92,7 +103,11 @@
echolocate()
/datum/component/echolocation/proc/echolocate()
+<<<<<<< HEAD
if(stall || !COOLDOWN_FINISHED(src, cooldown_last)) // SKYRAT EDIT CHANGE - ORIGINAL: if(!COOLDOWN_FINISHED(src, cooldown_last))
+=======
+ if(!COOLDOWN_FINISHED(src, cooldown_last))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
COOLDOWN_START(src, cooldown_last, cooldown_time)
var/mob/living/echolocator = parent
@@ -128,6 +143,7 @@
if(images_are_static)
final_image.pixel_x = input.pixel_x
final_image.pixel_y = input.pixel_y
+<<<<<<< HEAD
// SKYRAT ADDITION START: echolocation (show outlines on self)
if(HAS_TRAIT_FROM(input, TRAIT_ECHOLOCATION_RECEIVER, echo_group)) //mark other echolocation with full white, except ourselves
var/datum/component/echolocation/located_component = input.GetComponent(/datum/component/echolocation)
@@ -140,6 +156,13 @@
var/list/fade_ins = list(final_image)
for(var/mob/living/echolocate_receiver as anything in receivers)
if(echolocate_receiver == input && !show_own_outline) // SKYRAT EDIT CHANGE - ORIGINAL: if(echolocate_receiver == input)
+=======
+ if(HAS_TRAIT_FROM(input, TRAIT_ECHOLOCATION_RECEIVER, echo_group)) //mark other echolocation with full white
+ final_image.color = white_matrix
+ var/list/fade_ins = list(final_image)
+ for(var/mob/living/echolocate_receiver as anything in receivers)
+ if(echolocate_receiver == input)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
continue
if(receivers[echolocate_receiver][input])
var/previous_image = receivers[echolocate_receiver][input]["image"]
diff --git a/code/datums/components/explodable.dm b/code/datums/components/explodable.dm
index 439b1563521..06606857356 100644
--- a/code/datums/components/explodable.dm
+++ b/code/datums/components/explodable.dm
@@ -60,10 +60,18 @@
return
check_if_detonate(I)
+<<<<<<< HEAD
/datum/component/explodable/proc/explodable_impact(datum/source, atom/hit_atom, datum/thrownthing/throwingdatum)
SIGNAL_HANDLER
check_if_detonate(hit_atom)
+=======
+/datum/component/explodable/proc/explodable_impact(datum/source, atom/hit_atom, datum/thrownthing/throwing_datum, caught)
+ SIGNAL_HANDLER
+
+ if(!caught)
+ check_if_detonate(hit_atom)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/explodable/proc/explodable_bump(datum/source, atom/A)
SIGNAL_HANDLER
diff --git a/code/datums/components/face_decal.dm b/code/datums/components/face_decal.dm
index f045a4f18df..3d89f607f15 100644
--- a/code/datums/components/face_decal.dm
+++ b/code/datums/components/face_decal.dm
@@ -53,6 +53,11 @@
carbon_parent.update_body_parts()
else
normal_overlay = get_normal_overlay()
+<<<<<<< HEAD
+=======
+ normal_overlay.color = color
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignals(parent, list(
COMSIG_COMPONENT_CLEAN_ACT,
@@ -113,6 +118,7 @@
SIGNAL_HANDLER
qdel(src)
+<<<<<<< HEAD
/// Creampie subtype, handling signals and mood logic
GLOBAL_LIST_INIT(creamable, typecacheof(list(
@@ -147,3 +153,41 @@ GLOBAL_LIST_INIT(creamable, typecacheof(list(
if(iscarbon(parent))
var/mob/living/carbon/carbon_parent = parent
carbon_parent.clear_mood_event("creampie")
+=======
+/// splat subtype, handling signals and mood logic
+
+GLOBAL_LIST_INIT(splattable, zebra_typecacheof(list(
+ /mob/living/carbon/human = "human",
+ /mob/living/basic/pet/dog/corgi = "corgi",
+ /mob/living/silicon/ai = "ai",
+)))
+
+/datum/component/face_decal/splat
+ ///The mood_event that we add
+ var/mood_event_type
+
+/datum/component/face_decal/splat/Initialize(icon_state, layers, color, memory_type = /datum/memory/witnessed_creampie, mood_event_type = /datum/mood_event/creampie)
+ if(!is_type_in_typecache(parent, GLOB.splattable))
+ return COMPONENT_INCOMPATIBLE
+
+ . = ..()
+
+ SEND_SIGNAL(parent, COMSIG_MOB_HIT_BY_SPLAT, src)
+ add_memory_in_range(parent, 7, memory_type, protagonist = parent)
+ src.mood_event_type = mood_event_type
+
+/datum/component/face_decal/splat/get_normal_overlay()
+ return mutable_appearance('icons/mob/effects/face_decal.dmi', "[icon_state]_[GLOB.splattable[type]]")
+
+/datum/component/face_decal/splat/RegisterWithParent()
+ . = ..()
+ if(iscarbon(parent))
+ var/mob/living/carbon/human/carbon_parent = parent
+ carbon_parent.add_mood_event("splat", mood_event_type)
+
+/datum/component/face_decal/splat/UnregisterFromParent()
+ . = ..()
+ if(iscarbon(parent))
+ var/mob/living/carbon/carbon_parent = parent
+ carbon_parent.clear_mood_event("splat")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/fishing_spot.dm b/code/datums/components/fishing_spot.dm
index 6638c822ff6..d011f28a1bd 100644
--- a/code/datums/components/fishing_spot.dm
+++ b/code/datums/components/fishing_spot.dm
@@ -12,7 +12,11 @@
fish_source = configuration
else
return COMPONENT_INCOMPATIBLE
+<<<<<<< HEAD
fish_source.on_fishing_spot_init()
+=======
+ fish_source.on_fishing_spot_init(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignal(parent, COMSIG_ATOM_ATTACKBY, PROC_REF(handle_attackby))
RegisterSignal(parent, COMSIG_FISHING_ROD_CAST, PROC_REF(handle_cast))
RegisterSignal(parent, COMSIG_ATOM_EXAMINE, PROC_REF(on_examined))
@@ -22,6 +26,10 @@
ADD_TRAIT(parent, TRAIT_FISHING_SPOT, REF(src))
/datum/component/fishing_spot/Destroy()
+<<<<<<< HEAD
+=======
+ fish_source.on_fishing_spot_del(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
fish_source = null
return ..()
@@ -43,6 +51,7 @@
if(!HAS_MIND_TRAIT(user, TRAIT_EXAMINE_FISHING_SPOT))
return
+<<<<<<< HEAD
var/has_known_fishes = FALSE
for(var/reward in fish_source.fish_table)
if(!ispath(reward, /obj/item/fish))
@@ -52,6 +61,9 @@
has_known_fishes = TRUE
break
if(!has_known_fishes)
+=======
+ if(!fish_source.has_known_fishes())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
examine_text += span_tinynoticeital("This is a fishing spot. You can look again to list its fishes...")
@@ -61,6 +73,7 @@
if(!HAS_MIND_TRAIT(user, TRAIT_EXAMINE_FISHING_SPOT))
return
+<<<<<<< HEAD
var/list/known_fishes = list()
for(var/reward in fish_source.fish_table)
if(!ispath(reward, /obj/item/fish))
@@ -73,6 +86,9 @@
return
examine_text += span_info("You can catch the following fish here: [english_list(known_fishes)].")
+=======
+ fish_source.get_catchable_fish_names(user, parent, examine_text)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/fishing_spot/proc/try_start_fishing(obj/item/possibly_rod, mob/user)
SIGNAL_HANDLER
@@ -93,7 +109,11 @@
/datum/component/fishing_spot/proc/start_fishing_challenge(obj/item/fishing_rod/rod, mob/user)
/// Roll what we caught based on modified table
+<<<<<<< HEAD
var/result = fish_source.roll_reward(rod, user)
+=======
+ var/result = fish_source.roll_reward(rod, user, parent)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/fishing_challenge/challenge = new(src, result, rod, user)
fish_source.pre_challenge_started(rod, user, challenge)
challenge.start(user)
diff --git a/code/datums/components/food/decomposition.dm b/code/datums/components/food/decomposition.dm
index acb44d4c9e9..ae11428eca7 100644
--- a/code/datums/components/food/decomposition.dm
+++ b/code/datums/components/food/decomposition.dm
@@ -1,8 +1,14 @@
//"Don't leave food on the floor, that's how we get ants"
+<<<<<<< HEAD
#define DECOMPOSITION_TIME (20 MINUTES) // SKYRAT EDIT CHANGE - ORIGINAL: #define DECOMPOSITION_TIME (10 MINUTES)
#define DECOMPOSITION_TIME_RAW (15 MINUTES) // SKYRAT EDIT CHANGE - ORIGINAL: #define DECOMPOSITION_TIME_RAW (5 MINUTES)
#define DECOMPOSITION_TIME_GROSS (10 MINUTES) // SKYRAT EDIT CHANGE, - ORIGINAL: #define DECOMPOSITION_TIME_GROSS (7 MINUTES)
+=======
+#define DECOMPOSITION_TIME (10 MINUTES)
+#define DECOMPOSITION_TIME_RAW (5 MINUTES)
+#define DECOMPOSITION_TIME_GROSS (7 MINUTES)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Makes things decompose when exposed to germs. Requires /datum/component/germ_sensitive to detect exposure.
/datum/component/decomposition
diff --git a/code/datums/components/food/edible.dm b/code/datums/components/food/edible.dm
index 89d0e03b72f..95a44f82d34 100644
--- a/code/datums/components/food/edible.dm
+++ b/code/datums/components/food/edible.dm
@@ -256,7 +256,11 @@ Behavior that's still missing from this component that original food items had t
if(!(food_flags & FOOD_IN_CONTAINER))
switch(bitecount)
if(0)
+<<<<<<< HEAD
// pass
+=======
+ pass()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(1)
examine_list += span_notice("[owner] was bitten by someone!")
if(2, 3)
@@ -528,13 +532,21 @@ Behavior that's still missing from this component that original food items had t
/datum/component/edible/proc/apply_buff(mob/eater)
var/buff
var/recipe_complexity = get_recipe_complexity()
+<<<<<<< HEAD
if(recipe_complexity == 0)
+=======
+ if(recipe_complexity <= 0)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/obj/item/food/food = parent
if(!isnull(food.crafted_food_buff))
buff = food.crafted_food_buff
else
+<<<<<<< HEAD
buff = pick_weight(GLOB.food_buffs[recipe_complexity])
+=======
+ buff = pick_weight(GLOB.food_buffs[min(recipe_complexity, FOOD_COMPLEXITY_5)])
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!isnull(buff))
var/mob/living/living_eater = eater
var/atom/owner = parent
@@ -595,10 +607,20 @@ Behavior that's still missing from this component that original food items had t
/// Get the complexity of the crafted food
/datum/component/edible/proc/get_recipe_complexity()
+<<<<<<< HEAD
if(!HAS_TRAIT(parent, TRAIT_FOOD_CHEF_MADE) || !istype(parent, /obj/item/food))
return 0 // It is factory made. Soulless.
var/obj/item/food/food = parent
return food.crafting_complexity
+=======
+ var/list/extra_complexity = list(0)
+ SEND_SIGNAL(parent, COMSIG_FOOD_GET_EXTRA_COMPLEXITY, extra_complexity)
+ var/complexity_to_add = extra_complexity[1]
+ if(!HAS_TRAIT(parent, TRAIT_FOOD_CHEF_MADE) || !istype(parent, /obj/item/food))
+ return complexity_to_add // It is factory made. Soulless.
+ var/obj/item/food/food = parent
+ return food.crafting_complexity + complexity_to_add
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Get food quality adjusted according to eater's preferences
/datum/component/edible/proc/get_perceived_food_quality(mob/living/carbon/human/eater)
diff --git a/code/datums/components/food/germ_sensitive.dm b/code/datums/components/food/germ_sensitive.dm
index d0acc49714a..5eaedafd345 100644
--- a/code/datums/components/food/germ_sensitive.dm
+++ b/code/datums/components/food/germ_sensitive.dm
@@ -25,7 +25,11 @@ GLOBAL_LIST_INIT(floor_diseases, list(
RegisterSignal(parent, COMSIG_ATOM_EXAMINE, PROC_REF(examine))
RegisterSignal(parent, COMSIG_MOVABLE_MOVED, PROC_REF(handle_movement))
+<<<<<<< HEAD
RegisterSignal(parent, COMSIG_COMPONENT_CLEAN_ACT, PROC_REF(wash)) //Wash germs off dirty things
+=======
+ RegisterSignals(parent, list(COMSIG_COMPONENT_CLEAN_ACT, COMSIG_ITEM_FRIED, COMSIG_ITEM_BARBEQUE_GRILLED, COMSIG_ATOM_FIRE_ACT), PROC_REF(delete_germs))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignals(parent, list(
COMSIG_ITEM_DROPPED, //Dropped into the world
@@ -50,6 +54,12 @@ GLOBAL_LIST_INIT(floor_diseases, list(
COMSIG_ATOM_EXAMINE,
COMSIG_ATOM_EXITED,
COMSIG_COMPONENT_CLEAN_ACT,
+<<<<<<< HEAD
+=======
+ COMSIG_ITEM_FRIED,
+ COMSIG_ITEM_BARBEQUE_GRILLED,
+ COMSIG_ATOM_FIRE_ACT,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
COMSIG_ITEM_DROPPED,
COMSIG_ITEM_PICKUP,
COMSIG_MOVABLE_MOVED,
@@ -116,7 +126,11 @@ GLOBAL_LIST_INIT(floor_diseases, list(
var/random_disease = pick_weight(GLOB.floor_diseases)
parent.AddComponent(/datum/component/infective, new random_disease, weak = TRUE)
+<<<<<<< HEAD
/datum/component/germ_sensitive/proc/wash()
+=======
+/datum/component/germ_sensitive/proc/delete_germs()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
if(infective)
infective = FALSE
diff --git a/code/datums/components/fov_handler.dm b/code/datums/components/fov_handler.dm
index 9f64c648502..b285ba1fc45 100644
--- a/code/datums/components/fov_handler.dm
+++ b/code/datums/components/fov_handler.dm
@@ -125,5 +125,8 @@
/datum/component/fov_handler/UnregisterFromParent()
. = ..()
UnregisterSignal(parent, list(COMSIG_MOB_RESET_PERSPECTIVE, COMSIG_ATOM_DIR_CHANGE, COMSIG_LIVING_DEATH, COMSIG_LIVING_REVIVE, COMSIG_MOB_LOGOUT))
+<<<<<<< HEAD
UnregisterSignal(parent, COMSIG_LIVING_COMBAT_MODE_TOGGLE) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/fullauto.dm b/code/datums/components/fullauto.dm
index 1faa04ceacc..54e9ca5fc3d 100644
--- a/code/datums/components/fullauto.dm
+++ b/code/datums/components/fullauto.dm
@@ -275,7 +275,11 @@
// Gun procs.
/obj/item/gun/proc/on_autofire_start(mob/living/shooter)
+<<<<<<< HEAD
if(semicd || shooter.incapacitated() || !can_trigger_gun(shooter))
+=======
+ if(semicd || shooter.incapacitated || !can_trigger_gun(shooter))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(!can_shoot())
shoot_with_empty_chamber(shooter)
@@ -295,7 +299,11 @@
/obj/item/gun/proc/do_autofire(datum/source, atom/target, mob/living/shooter, allow_akimbo, params)
SIGNAL_HANDLER
+<<<<<<< HEAD
if(semicd || shooter.incapacitated())
+=======
+ if(semicd || shooter.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return NONE
if(!can_shoot())
shoot_with_empty_chamber(shooter)
diff --git a/code/datums/components/grillable.dm b/code/datums/components/grillable.dm
index 72c2e75e8cb..bfba9142e09 100644
--- a/code/datums/components/grillable.dm
+++ b/code/datums/components/grillable.dm
@@ -83,11 +83,14 @@
SIGNAL_HANDLER
. = COMPONENT_HANDLED_GRILLING
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(pollutant_type)
var/turf/parent_turf = get_turf(parent)
parent_turf.pollute_turf(pollutant_type, 10)
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
current_cook_time += seconds_per_tick * 10 //turn it into ds
if(current_cook_time >= required_cook_time)
diff --git a/code/datums/components/jukebox.dm b/code/datums/components/jukebox.dm
index 4017e86a812..15da24482bf 100644
--- a/code/datums/components/jukebox.dm
+++ b/code/datums/components/jukebox.dm
@@ -1,4 +1,8 @@
+<<<<<<< HEAD
/* SKYRAT EDIT: See modular_skyrat/modules/jukebox /// Checks if the mob has jukebox muted in their preferences
+=======
+/// Checks if the mob has jukebox muted in their preferences
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define IS_PREF_MUTED(mob) (!isnull(mob.client) && !mob.client.prefs.read_preference(/datum/preference/toggle/sound_jukebox))
// Reasons for appling STATUS_MUTE to a mob's sound status
@@ -403,4 +407,8 @@
song_path = 'sound/ambience/title3.ogg'
song_name = "Tintin on the Moon"
song_length = 3 MINUTES + 52 SECONDS
+<<<<<<< HEAD
song_beat = 1 SECONDS SKYRAT EDIT END*/
+=======
+ song_beat = 1 SECONDS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/listen_and_repeat.dm b/code/datums/components/listen_and_repeat.dm
index 88c64ef4dbc..d0e87421677 100644
--- a/code/datums/components/listen_and_repeat.dm
+++ b/code/datums/components/listen_and_repeat.dm
@@ -71,11 +71,14 @@
if(over_radio && prob(RADIO_IGNORE_CHANCE))
return
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION START - parrot commands
var/mob/living/basic/parrot/maybe_parrot = parent
if(!over_radio && istype(maybe_parrot))
maybe_parrot.check_command(message, speaker)
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/number_of_excess_strings = LAZYLEN(speech_buffer) - MAX_SPEECH_BUFFER_SIZE
if(number_of_excess_strings > 0) // only remove if we're overfull
diff --git a/code/datums/components/material/material_container.dm b/code/datums/components/material/material_container.dm
index 7b3753cc71d..edf08526057 100644
--- a/code/datums/components/material/material_container.dm
+++ b/code/datums/components/material/material_container.dm
@@ -124,10 +124,17 @@
* Material Validation : Checks how much materials are available, Extracts materials from items if the container can hold them
* Material Removal : Removes material from the container
*
+<<<<<<< HEAD
* Each Proc furthur belongs to a specific category
* LOW LEVEL: Procs that are used internally & should not be used anywhere else unless you know what your doing
* MID LEVEL: Procs that can be used by machines(like recycler, stacking machines) to bypass majority of checks
* HIGH LEVEL: Procs that can be used by anyone publically and guarentees safty checks & limits
+=======
+ * Each Proc further belongs to a specific category
+ * LOW LEVEL: Procs that are used internally & should not be used anywhere else unless you know what your doing
+ * MID LEVEL: Procs that can be used by machines(like recycler, stacking machines) to bypass majority of checks
+ * HIGH LEVEL: Procs that can be used by anyone publicly and guarantees safety checks & limits
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*/
//================================Material Insertion procs==============================
@@ -236,7 +243,11 @@
//do the insert
var/last_inserted_id = insert_item_materials(target, multiplier, context)
if(!isnull(last_inserted_id))
+<<<<<<< HEAD
if(delete_item || target != weapon) //we could have split the stack ourself
+=======
+ if(delete_item || target != weapon) //we could have split the stack ourselves
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qdel(target) //item gone
return material_amount
else if(!isnull(item_stack) && item_stack != target) //insertion failed, merge the split stack back into the original
@@ -250,7 +261,11 @@
//===================================HIGH LEVEL===================================================
/**
+<<<<<<< HEAD
* inserts an item from the players hand into the container. Loops through all the contents inside reccursively
+=======
+ * inserts an item from the players hand into the container. Loops through all the contents inside recursively
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Does all explicit checking for mat flags & callbacks to check if insertion is valid
* This proc is what you should be using for almost all cases
*
@@ -584,7 +599,11 @@
for(var/x in mats) //Loop through all required materials
var/wanted = OPTIMAL_COST(mats[x] * coefficient) * multiplier
if(!has_enough_of_material(x, wanted))//Not a category, so just check the normal way
+<<<<<<< HEAD
testing("didnt have: [x] wanted: [wanted]")
+=======
+ testing("didn't have: [x] wanted: [wanted]")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
@@ -605,7 +624,11 @@
//round amount
amt = OPTIMAL_COST(amt)
+<<<<<<< HEAD
//get ref if nessassary
+=======
+ //get ref if necessary
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!istype(mat))
mat = GET_MATERIAL_REF(mat)
diff --git a/code/datums/components/mind_linker.dm b/code/datums/components/mind_linker.dm
index d20745a4cce..b392ab89798 100644
--- a/code/datums/components/mind_linker.dm
+++ b/code/datums/components/mind_linker.dm
@@ -56,6 +56,7 @@
if(post_unlink_callback)
src.post_unlink_callback = post_unlink_callback
+<<<<<<< HEAD
src.speech_action_icon = speech_action_icon
src.speech_action_icon_state = speech_action_icon_state
src.speech_action_background_icon_state = speech_action_background_icon_state
@@ -70,6 +71,10 @@
master_speech = new(src)
master_speech.Grant(owner)
//SKYRAT EDIT END
+=======
+ master_speech = new(src)
+ master_speech.Grant(owner)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/mind_linker/Destroy(force)
for(var/mob/living/remaining_mob as anything in linked_mobs)
@@ -95,6 +100,7 @@
/datum/component/mind_linker/proc/link_mob(mob/living/to_link)
if(QDELETED(to_link) || to_link.stat == DEAD)
return FALSE
+<<<<<<< HEAD
/* ORIGINAL CODE
if(HAS_TRAIT(to_link, TRAIT_MINDSHIELD)) // Mindshield implant - no dice
@@ -108,6 +114,8 @@
if(to_link.can_block_magic(MAGIC_RESISTANCE_MIND, charge_cost = 0) && linking_protection)
return FALSE
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(linked_mobs[to_link])
return FALSE
diff --git a/code/datums/components/omen.dm b/code/datums/components/omen.dm
index e4094ba679a..4233e2c3aff 100644
--- a/code/datums/components/omen.dm
+++ b/code/datums/components/omen.dm
@@ -143,12 +143,20 @@
return
for(var/obj/machinery/light/evil_light in the_turf)
+<<<<<<< HEAD
if((evil_light.status == LIGHT_BURNED || evil_light.status == LIGHT_BROKEN) || (HAS_TRAIT(living_guy, TRAIT_SHOCKIMMUNE))) // we cant do anything :( // Why in the world is there no get_siemens_coeff proc???
+=======
+ if((evil_light.status == LIGHT_BURNED || evil_light.status == LIGHT_BROKEN) || (HAS_TRAIT(living_guy, TRAIT_SHOCKIMMUNE))) // we can't do anything :( // Why in the world is there no get_siemens_coeff proc???
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(living_guy, span_warning("[evil_light] sparks weakly for a second."))
do_sparks(2, FALSE, evil_light) // hey maybe it'll ignite them
return
+<<<<<<< HEAD
to_chat(living_guy, span_warning("[evil_light] glows ominously...")) // omenously
+=======
+ to_chat(living_guy, span_warning("[evil_light] glows ominously...")) // ominously
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
evil_light.visible_message(span_boldwarning("[evil_light] suddenly flares brightly and sparks!"))
evil_light.break_light_tube(skip_sound_and_sparks = FALSE)
do_sparks(number = 4, cardinal_only = FALSE, source = evil_light)
diff --git a/code/datums/components/overlay_lighting.dm b/code/datums/components/overlay_lighting.dm
index 258b8f87972..6f844d3b36e 100644
--- a/code/datums/components/overlay_lighting.dm
+++ b/code/datums/components/overlay_lighting.dm
@@ -62,6 +62,7 @@
var/directional = FALSE
///Whether we're a beam light
var/beam = FALSE
+<<<<<<< HEAD
///A cone overlay for directional light, its alpha and color are dependant on the light
var/image/cone
///Current tracked direction for the directional cast behaviour
@@ -69,6 +70,15 @@
///Tracks current directional x offset so we dont update unecessarily
var/directional_offset_x
///Tracks current directional y offset so we dont update unecessarily
+=======
+ ///A cone overlay for directional light, its alpha and color are dependent on the light
+ var/image/cone
+ ///Current tracked direction for the directional cast behaviour
+ var/current_direction
+ ///Tracks current directional x offset so we don't update unnecessarily
+ var/directional_offset_x
+ ///Tracks current directional y offset so we don't update unnecessarily
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/directional_offset_y
///Cast range for the directional cast (how far away the atom is moved)
var/cast_range = 2
diff --git a/code/datums/components/pellet_cloud.dm b/code/datums/components/pellet_cloud.dm
index 2b59305be14..f5f7447ddc5 100644
--- a/code/datums/components/pellet_cloud.dm
+++ b/code/datums/components/pellet_cloud.dm
@@ -88,10 +88,13 @@
RegisterSignal(parent, COMSIG_MINE_TRIGGERED, PROC_REF(create_blast_pellets))
else if(issupplypod(parent))
RegisterSignal(parent, COMSIG_SUPPLYPOD_LANDED, PROC_REF(create_blast_pellets))
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN
else if(ishorrorling(parent))
RegisterSignal(parent, COMSIG_HORRORFORM_EXPLODE, PROC_REF(create_blast_pellets))
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/pellet_cloud/UnregisterFromParent()
UnregisterSignal(parent, list(COMSIG_PREQDELETED, COMSIG_FIRE_CASING, COMSIG_GRENADE_DETONATE, COMSIG_GRENADE_ARMED, COMSIG_MOVABLE_MOVED, COMSIG_MINE_TRIGGERED, COMSIG_ITEM_DROPPED))
diff --git a/code/datums/components/pet_commands/pet_command.dm b/code/datums/components/pet_commands/pet_command.dm
index a8db88d3a44..3a0bc585791 100644
--- a/code/datums/components/pet_commands/pet_command.dm
+++ b/code/datums/components/pet_commands/pet_command.dm
@@ -186,6 +186,7 @@
/datum/pet_command/point_targeting/add_new_friend(mob/living/tamer)
. = ..()
+<<<<<<< HEAD
RegisterSignal(tamer, COMSIG_MOB_POINTED, PROC_REF(on_point))
/datum/pet_command/point_targeting/remove_friend(mob/living/unfriended)
@@ -194,6 +195,16 @@
/// Target the pointed atom for actions
/datum/pet_command/point_targeting/proc/on_point(mob/living/friend, atom/pointed_atom)
+=======
+ RegisterSignal(tamer, COMSIG_MOVABLE_POINTED, PROC_REF(on_point))
+
+/datum/pet_command/point_targeting/remove_friend(mob/living/unfriended)
+ . = ..()
+ UnregisterSignal(unfriended, COMSIG_MOVABLE_POINTED)
+
+/// Target the pointed atom for actions
+/datum/pet_command/point_targeting/proc/on_point(mob/living/friend, atom/pointed_atom, obj/effect/temp_visual/point/point)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
var/mob/living/parent = weak_parent.resolve()
diff --git a/code/datums/components/phylactery.dm b/code/datums/components/phylactery.dm
index 4a58660992a..e5f4cb8ee75 100644
--- a/code/datums/components/phylactery.dm
+++ b/code/datums/components/phylactery.dm
@@ -18,7 +18,11 @@
var/phylactery_color = COLOR_VERY_DARK_LIME_GREEN
// Internal vars.
+<<<<<<< HEAD
/// The number of ressurections that have occured from this phylactery.
+=======
+ /// The number of resurrections that have occurred from this phylactery.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/num_resurrections = 0
/// A timerid to the current revival timer.
var/revive_timer
@@ -150,7 +154,11 @@
UnregisterSignal(source, COMSIG_LIVING_REVIVE)
/**
+<<<<<<< HEAD
* Actually undergo the process of reviving the lich at the site of the phylacery.
+=======
+ * Actually undergo the process of reviving the lich at the site of the phylactery.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*
* Arguments
* * corpse - optional, the old body of the lich. Can be QDELETED or null.
diff --git a/code/datums/components/profound_fisher.dm b/code/datums/components/profound_fisher.dm
index 4485115db06..f5a57d5b959 100644
--- a/code/datums/components/profound_fisher.dm
+++ b/code/datums/components/profound_fisher.dm
@@ -1,8 +1,13 @@
+<<<<<<< HEAD
///component that allows player mobs to play the fishing minigame, non-player mobs will "pretend" fish
+=======
+///component that allows player mobs to play the fishing minigame without a rod equipped, non-player mobs will "pretend" fish
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/profound_fisher
///the fishing rod this mob will use
var/obj/item/fishing_rod/mob_fisher/our_rod
+<<<<<<< HEAD
/datum/component/profound_fisher/Initialize(list/npc_fishing_preset = list())
if(!isliving(parent))
return
@@ -30,10 +35,110 @@
return NONE
if(living_parent.client)
INVOKE_ASYNC(our_rod, TYPE_PROC_REF(/obj/item, melee_attack_chain), parent, target)
+=======
+/datum/component/profound_fisher/Initialize(our_rod)
+ var/isgloves = istype(parent, /obj/item/clothing/gloves)
+ if(!isliving(parent) && !isgloves)
+ return COMPONENT_INCOMPATIBLE
+ src.our_rod = our_rod || new(parent)
+ src.our_rod.internal = TRUE
+ RegisterSignal(src.our_rod, COMSIG_QDELETING, PROC_REF(on_rod_qdel))
+
+ if(!isgloves)
+ RegisterSignal(parent, COMSIG_HOSTILE_PRE_ATTACKINGTARGET, PROC_REF(pre_attack))
+ else
+ var/obj/item/clothing/gloves = parent
+ RegisterSignal(gloves, COMSIG_ITEM_EQUIPPED, PROC_REF(on_equip))
+ RegisterSignal(gloves, COMSIG_ITEM_DROPPED, PROC_REF(on_drop))
+ RegisterSignal(gloves, COMSIG_ATOM_ATTACK_HAND_SECONDARY, PROC_REF(open_rod_menu))
+ RegisterSignal(gloves, COMSIG_ATOM_EXAMINE, PROC_REF(on_examine))
+ gloves.flags_1 |= HAS_CONTEXTUAL_SCREENTIPS_1
+ RegisterSignal(gloves, COMSIG_ATOM_REQUESTING_CONTEXT_FROM_ITEM, PROC_REF(on_requesting_context_from_item))
+ var/mob/living/wearer = gloves.loc
+ if(istype(wearer) && wearer.get_item_by_slot(ITEM_SLOT_GLOVES) == gloves)
+ RegisterSignal(wearer, COMSIG_LIVING_UNARMED_ATTACK, PROC_REF(on_unarmed_attack))
+
+/datum/component/profound_fisher/proc/on_requesting_context_from_item(datum/source, list/context, obj/item/held_item, mob/living/user)
+ SIGNAL_HANDLER
+ if(isnull(held_item) && user.contains(parent))
+ context[SCREENTIP_CONTEXT_RMB] = "Open rod UI"
+ return CONTEXTUAL_SCREENTIP_SET
+
+/datum/component/profound_fisher/proc/on_examine(datum/source, mob/user, list/examine_list)
+ SIGNAL_HANDLER
+ examine_list += span_info("When [EXAMINE_HINT("held")] or [EXAMINE_HINT("equipped")], [EXAMINE_HINT("right-click")] with a empty hand to open the integrated fishing rod interface.")
+ examine_list += span_tinynoticeital("To fish, you need to turn combat mode off.")
+
+/datum/component/profound_fisher/proc/on_rod_qdel(datum/source)
+ SIGNAL_HANDLER
+ qdel(src)
+
+/datum/component/profound_fisher/Destroy()
+ our_rod.internal = FALSE
+ UnregisterSignal(our_rod, COMSIG_QDELETING)
+ our_rod = null
+ return ..()
+
+/datum/component/profound_fisher/proc/on_equip(obj/item/source, atom/equipper, slot)
+ SIGNAL_HANDLER
+ if(slot != ITEM_SLOT_GLOVES)
+ return
+ RegisterSignal(equipper, COMSIG_LIVING_UNARMED_ATTACK, PROC_REF(on_unarmed_attack))
+
+/datum/component/profound_fisher/proc/open_rod_menu(datum/source, mob/user, list/modifiers)
+ SIGNAL_HANDLER
+ INVOKE_ASYNC(our_rod, TYPE_PROC_REF(/datum, ui_interact), user)
+ return SECONDARY_ATTACK_CANCEL_ATTACK_CHAIN
+
+/datum/component/profound_fisher/proc/on_drop(datum/source, atom/dropper)
+ SIGNAL_HANDLER
+ UnregisterSignal(dropper, COMSIG_LIVING_UNARMED_ATTACK)
+ REMOVE_TRAIT(dropper, TRAIT_PROFOUND_FISHER, TRAIT_GENERIC) //this will cancel the current minigame if the fishing rod was internal.
+
+/datum/component/profound_fisher/proc/on_unarmed_attack(mob/living/source, atom/attack_target, proximity_flag, list/modifiers)
+ SIGNAL_HANDLER
+ if(!source.client || !should_fish_on(source, attack_target))
+ return
+ INVOKE_ASYNC(src, PROC_REF(begin_fishing), source, attack_target)
+ return COMPONENT_CANCEL_ATTACK_CHAIN
+
+/datum/component/profound_fisher/proc/pre_attack(mob/living/source, atom/target)
+ SIGNAL_HANDLER
+
+ if(!should_fish_on(source, target))
+ return
+ if(source.client)
+ INVOKE_ASYNC(src, PROC_REF(begin_fishing), source, target)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
INVOKE_ASYNC(src, PROC_REF(pretend_fish), target)
return COMPONENT_HOSTILE_NO_ATTACK
+<<<<<<< HEAD
+=======
+/datum/component/profound_fisher/proc/should_fish_on(mob/living/user, atom/target)
+ if(!HAS_TRAIT(target, TRAIT_FISHING_SPOT) || HAS_TRAIT(user, TRAIT_GONE_FISHING))
+ return FALSE
+ if(user.combat_mode || !user.CanReach(target))
+ return FALSE
+ return TRUE
+
+/datum/component/profound_fisher/proc/begin_fishing(mob/living/user, atom/target)
+ RegisterSignal(user, SIGNAL_ADDTRAIT(TRAIT_GONE_FISHING), PROC_REF(actually_fishing_with_internal_rod))
+ our_rod.melee_attack_chain(user, target)
+ UnregisterSignal(user, SIGNAL_ADDTRAIT(TRAIT_GONE_FISHING))
+
+/datum/component/profound_fisher/proc/actually_fishing_with_internal_rod(datum/source)
+ SIGNAL_HANDLER
+ ADD_TRAIT(source, TRAIT_PROFOUND_FISHER, REF(parent))
+ RegisterSignal(source, SIGNAL_REMOVETRAIT(TRAIT_GONE_FISHING), PROC_REF(remove_profound_fisher))
+
+/datum/component/profound_fisher/proc/remove_profound_fisher(datum/source)
+ SIGNAL_HANDLER
+ REMOVE_TRAIT(source, TRAIT_PROFOUND_FISHER, TRAIT_GENERIC)
+ UnregisterSignal(source, SIGNAL_REMOVETRAIT(TRAIT_GONE_FISHING))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/profound_fisher/proc/pretend_fish(atom/target)
var/mob/living/living_parent = parent
if(DOING_INTERACTION_WITH_TARGET(living_parent, target))
@@ -43,6 +148,7 @@
var/datum/fish_source/fish_spot = fish_spot_container[NPC_FISHING_SPOT]
if(isnull(fish_spot))
return null
+<<<<<<< HEAD
var/obj/effect/fishing_lure/lure = new(get_turf(target), target)
playsound(lure, 'sound/effects/splash.ogg', 100)
var/happiness_percentage = living_parent.ai_controller?.blackboard[BB_BASIC_HAPPINESS] / 100
@@ -61,3 +167,21 @@
bait = /obj/item/food/bait/doughball/synthetic/unconsumable
+=======
+ var/obj/effect/fishing_float/float = new(get_turf(target), target)
+ playsound(float, 'sound/effects/splash.ogg', 100)
+ var/happiness_percentage = living_parent.ai_controller?.blackboard[BB_BASIC_HAPPINESS] / 100
+ var/fishing_speed = 10 SECONDS - round(4 SECONDS * happiness_percentage)
+ if(!do_after(living_parent, fishing_speed, target = target) && !QDELETED(fish_spot))
+ qdel(float)
+ return
+ var/reward_loot = fish_spot.roll_reward(our_rod, parent)
+ fish_spot.dispense_reward(reward_loot, parent, target)
+ playsound(float, 'sound/effects/bigsplash.ogg', 100)
+ qdel(float)
+
+/obj/item/fishing_rod/mob_fisher
+ line = /obj/item/fishing_line/reinforced
+ bait = /obj/item/food/bait/doughball/synthetic/unconsumable
+ resistance_flags = INDESTRUCTIBLE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/riding/riding_mob.dm b/code/datums/components/riding/riding_mob.dm
index 8d4b7e6f2cb..a90b9755f02 100644
--- a/code/datums/components/riding/riding_mob.dm
+++ b/code/datums/components/riding/riding_mob.dm
@@ -1,11 +1,14 @@
// For any mob that can be ridden
+<<<<<<< HEAD
//SKYRAT EDIT START: Human Riding Defines
#define OVERSIZED_OFFSET 18
#define OVERSIZED_SIDE_OFFSET 11
#define REGULAR_OFFSET 6
#define REGULAR_SIDE_OFFSET 4
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/riding/creature
/// If TRUE, this creature's movements can be controlled by the rider while mounted (as opposed to riding cyborgs and humans, which is passive)
var/can_be_driven = TRUE
@@ -64,10 +67,17 @@
if(living_parent.body_position != STANDING_UP) // if we move while on the ground, the rider falls off
. = FALSE
// for piggybacks and (redundant?) borg riding, check if the rider is stunned/restrained
+<<<<<<< HEAD
else if((ride_check_flags & RIDER_NEEDS_ARMS) && (HAS_TRAIT(rider, TRAIT_RESTRAINED) || rider.incapacitated(IGNORE_RESTRAINTS|IGNORE_GRAB)))
. = FALSE
// for fireman carries, check if the ridden is stunned/restrained
else if((ride_check_flags & CARRIER_NEEDS_ARM) && (HAS_TRAIT(living_parent, TRAIT_RESTRAINED) || living_parent.incapacitated(IGNORE_RESTRAINTS|IGNORE_GRAB)))
+=======
+ else if((ride_check_flags & RIDER_NEEDS_ARMS) && (HAS_TRAIT(rider, TRAIT_RESTRAINED) || INCAPACITATED_IGNORING(rider, INCAPABLE_RESTRAINTS|INCAPABLE_GRAB)))
+ . = FALSE
+ // for fireman carries, check if the ridden is stunned/restrained
+ else if((ride_check_flags & CARRIER_NEEDS_ARM) && (HAS_TRAIT(living_parent, TRAIT_RESTRAINED) || INCAPACITATED_IGNORING(living_parent, INCAPABLE_RESTRAINTS|INCAPABLE_GRAB)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = FALSE
else if((ride_check_flags & JUST_FRIEND_RIDERS) && !(living_parent.faction.Find(REF(rider))))
. = FALSE
@@ -295,6 +305,7 @@
/datum/component/riding/creature/human/get_offsets(pass_index)
var/mob/living/carbon/human/H = parent
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN - Oversized Overhaul
if(H.buckle_lying)
return HAS_TRAIT(H, TRAIT_OVERSIZED) ? list(
@@ -321,6 +332,13 @@
TEXT_WEST = list(REGULAR_OFFSET, REGULAR_SIDE_OFFSET)
)
//SKYRAT EDIT END
+=======
+ if(H.buckle_lying)
+ return list(TEXT_NORTH = list(0, 6), TEXT_SOUTH = list(0, 6), TEXT_EAST = list(0, 6), TEXT_WEST = list(0, 6))
+ else
+ return list(TEXT_NORTH = list(0, 6), TEXT_SOUTH = list(0, 6), TEXT_EAST = list(-6, 4), TEXT_WEST = list( 6, 4))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/riding/creature/human/force_dismount(mob/living/dismounted_rider)
var/atom/movable/AM = parent
AM.unbuckle_mob(dismounted_rider)
@@ -540,9 +558,15 @@
/datum/component/riding/creature/leaper/Initialize(mob/living/riding_mob, force = FALSE, ride_check_flags = NONE, potion_boost = FALSE)
. = ..()
+<<<<<<< HEAD
RegisterSignal(riding_mob, COMSIG_MOB_POINTED, PROC_REF(attack_pointed))
/datum/component/riding/creature/leaper/proc/attack_pointed(mob/living/rider, atom/pointed)
+=======
+ RegisterSignal(riding_mob, COMSIG_MOVABLE_POINTED, PROC_REF(attack_pointed))
+
+/datum/component/riding/creature/leaper/proc/attack_pointed(mob/living/rider, atom/pointed, obj/effect/temp_visual/point/point)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
if(!isclosedturf(pointed))
return
@@ -554,7 +578,11 @@
/datum/component/riding/leaper/handle_unbuckle(mob/living/rider)
. = ..()
+<<<<<<< HEAD
UnregisterSignal(rider, COMSIG_MOB_POINTED)
+=======
+ UnregisterSignal(rider, COMSIG_MOVABLE_POINTED)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/riding/creature/raptor
require_minigame = TRUE
@@ -705,6 +733,7 @@
mounter = null
host = null
return ..()
+<<<<<<< HEAD
//SKYRAT EDIT START: Human Riding Defines
#undef OVERSIZED_OFFSET
@@ -712,3 +741,5 @@
#undef REGULAR_OFFSET
#undef REGULAR_SIDE_OFFSET
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/riding/riding_vehicle.dm b/code/datums/components/riding/riding_vehicle.dm
index 0d6d4a4c967..39ba5b3e2e7 100644
--- a/code/datums/components/riding/riding_vehicle.dm
+++ b/code/datums/components/riding/riding_vehicle.dm
@@ -291,7 +291,11 @@
vehicle_move_delay += 1
/datum/component/riding/vehicle/scooter/skateboard/wheelys
+<<<<<<< HEAD
vehicle_move_delay = 1.75 // SKYRAT EDIT - ORIGINAL: 0
+=======
+ vehicle_move_delay = 0
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
can_slow_down = FALSE
/datum/component/riding/vehicle/scooter/skateboard/wheelys/handle_specials()
diff --git a/code/datums/components/sitcomlaughter.dm b/code/datums/components/sitcomlaughter.dm
index 62e9276b1d7..b10ffab6783 100644
--- a/code/datums/components/sitcomlaughter.dm
+++ b/code/datums/components/sitcomlaughter.dm
@@ -1,6 +1,10 @@
/datum/component/wearertargeting/sitcomlaughter
valid_slots = list(ITEM_SLOT_HANDS, ITEM_SLOT_BELT, ITEM_SLOT_ID, ITEM_SLOT_LPOCKET, ITEM_SLOT_RPOCKET, ITEM_SLOT_SUITSTORE, ITEM_SLOT_DEX_STORAGE)
+<<<<<<< HEAD
signals = list(COMSIG_MOB_CREAMED, COMSIG_ON_CARBON_SLIP, COMSIG_POST_TILT_AND_CRUSH, COMSIG_MOB_CLUMSY_SHOOT_FOOT)
+=======
+ signals = list(COMSIG_MOB_HIT_BY_SPLAT, COMSIG_ON_CARBON_SLIP, COMSIG_POST_TILT_AND_CRUSH, COMSIG_MOB_CLUMSY_SHOOT_FOOT)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
proctype = PROC_REF(EngageInComedy)
mobtype = /mob/living
///Sounds used for when user has a sitcom action occur
diff --git a/code/datums/components/space_kidnap.dm b/code/datums/components/space_kidnap.dm
index 8a1de2123d9..7aa0baa4de1 100644
--- a/code/datums/components/space_kidnap.dm
+++ b/code/datums/components/space_kidnap.dm
@@ -23,7 +23,11 @@
target.balloon_alert(parent, "is dead!")
return COMPONENT_CANCEL_ATTACK_CHAIN
+<<<<<<< HEAD
if(!victim.incapacitated())
+=======
+ if(!victim.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(!isspaceturf(get_turf(target)))
@@ -39,7 +43,11 @@
var/obj/particles = new /obj/effect/abstract/particle_holder (victim, /particles/void_kidnap)
kidnapping = TRUE
+<<<<<<< HEAD
if(do_after(parent, kidnap_time, victim, extra_checks = CALLBACK(victim, TYPE_PROC_REF(/mob, incapacitated))))
+=======
+ if(do_after(parent, kidnap_time, victim, extra_checks = victim.incapacitated))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
take_them(victim)
qdel(particles)
diff --git a/code/datums/components/splat.dm b/code/datums/components/splat.dm
new file mode 100644
index 00000000000..5d47d17b98c
--- /dev/null
+++ b/code/datums/components/splat.dm
@@ -0,0 +1,74 @@
+/datum/component/splat
+ ///The icon state to use for the decal
+ var/icon_state
+ ///The bodypart layer to use for the decal
+ var/layer
+ ///The type of memory to celebrate the event of getting hit by this
+ var/memory_type
+ ///The type of smudge we create on the floor
+ var/smudge_type
+ ///The moodlet passed down to the creamed component
+ var/moodlet_type
+ ///The color we give to the creamed component/overlay
+ var/splat_color
+ ///The callback called when a mob is hit by this
+ var/datum/callback/hit_callback
+
+/datum/component/splat/Initialize(
+ icon_state = "creampie",
+ layer = EXTERNAL_FRONT,
+ memory_type = /datum/memory/witnessed_creampie,
+ smudge_type = /obj/effect/decal/cleanable/food/pie_smudge,
+ moodlet_type = /datum/mood_event/creampie,
+ splat_color,
+ datum/callback/hit_callback,
+)
+ . = ..()
+ if(!ismovable(parent))
+ return COMPONENT_INCOMPATIBLE
+
+ src.icon_state = icon_state
+ src.layer = layer
+ src.memory_type = memory_type
+ src.smudge_type = smudge_type
+ src.moodlet_type = moodlet_type
+ src.hit_callback = hit_callback
+ src.splat_color = splat_color
+
+/datum/component/splat/Destroy()
+ hit_callback = null
+ return ..()
+
+/datum/component/splat/RegisterWithParent()
+ if(isprojectile(parent))
+ RegisterSignal(parent, COMSIG_PROJECTILE_SELF_ON_HIT, PROC_REF(projectile_splat))
+ else
+ RegisterSignal(parent, COMSIG_MOVABLE_IMPACT, PROC_REF(throw_splat))
+
+/datum/component/splat/UnregisterFromParent()
+ UnregisterSignal(parent, list(COMSIG_MOVABLE_IMPACT, COMSIG_PROJECTILE_SELF_ON_HIT))
+
+/datum/component/splat/proc/projectile_splat(obj/projectile/source, atom/firer, atom/target, angle, hit_limb_zone, blocked)
+ SIGNAL_HANDLER
+ if(blocked != 100)
+ splat(source, target)
+
+/datum/component/splat/proc/throw_splat(atom/movable/source, atom/hit_atom, datum/thrownthing/throwing_datum, caught)
+ SIGNAL_HANDLER
+ if(caught) //someone caught us!
+ return
+ splat(source, hit_atom)
+
+/datum/component/splat/proc/splat(atom/movable/source, atom/hit_atom)
+ var/turf/hit_turf = get_turf(hit_atom)
+ new smudge_type(hit_turf)
+ var/can_splat_on = TRUE
+ if(isliving(hit_atom))
+ var/mob/living/living_target_getting_hit = hit_atom
+ if(iscarbon(living_target_getting_hit))
+ can_splat_on = !!(living_target_getting_hit.get_bodypart(BODY_ZONE_HEAD))
+ hit_callback?.Invoke(living_target_getting_hit, can_splat_on)
+ if(can_splat_on && is_type_in_typecache(hit_atom, GLOB.splattable))
+ hit_atom.AddComponent(/datum/component/face_decal/splat, icon_state, layer, splat_color || source.color, memory_type, moodlet_type)
+ SEND_SIGNAL(source, COMSIG_MOVABLE_SPLAT, hit_atom)
+ qdel(source)
diff --git a/code/datums/components/sticker.dm b/code/datums/components/sticker.dm
index 2c87d856da8..de1bcf96f55 100644
--- a/code/datums/components/sticker.dm
+++ b/code/datums/components/sticker.dm
@@ -13,18 +13,33 @@
var/atom/movable/our_sticker
/// Reference to the created overlay, used during component deletion.
var/mutable_appearance/sticker_overlay
+<<<<<<< HEAD
// Callback invoked when sticker is applied to the parent.
var/datum/callback/stick_callback
// Callback invoked when sticker is peeled (not removed) from the parent.
var/datum/callback/peel_callback
/datum/component/sticker/Initialize(atom/stickering_atom, dir = NORTH, px = 0, py = 0, datum/callback/stick_callback, datum/callback/peel_callback)
+=======
+ /// Callback invoked when sticker is applied to the parent.
+ var/datum/callback/stick_callback
+ /// Callback invoked when sticker is peeled (not removed) from the parent.
+ var/datum/callback/peel_callback
+ /// Text added to the atom's examine when stickered.
+ var/examine_text
+
+/datum/component/sticker/Initialize(atom/stickering_atom, dir = NORTH, px = 0, py = 0, datum/callback/stick_callback, datum/callback/peel_callback, examine_text)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!isatom(parent))
return COMPONENT_INCOMPATIBLE
src.our_sticker = our_sticker
src.stick_callback = stick_callback
src.peel_callback = peel_callback
+<<<<<<< HEAD
+=======
+ src.examine_text = examine_text
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
stick(stickering_atom, px, py)
register_turf_signals(dir)
@@ -45,9 +60,16 @@
/datum/component/sticker/RegisterWithParent()
RegisterSignal(parent, COMSIG_LIVING_IGNITED, PROC_REF(on_ignite))
RegisterSignal(parent, COMSIG_COMPONENT_CLEAN_ACT, PROC_REF(on_clean))
+<<<<<<< HEAD
/datum/component/sticker/UnregisterFromParent()
UnregisterSignal(parent, list(COMSIG_LIVING_IGNITED, COMSIG_COMPONENT_CLEAN_ACT))
+=======
+ RegisterSignal(parent, COMSIG_ATOM_EXAMINE, PROC_REF(on_examine))
+
+/datum/component/sticker/UnregisterFromParent()
+ UnregisterSignal(parent, list(COMSIG_LIVING_IGNITED, COMSIG_COMPONENT_CLEAN_ACT, COMSIG_ATOM_EXAMINE))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Subscribes to `COMSIG_TURF_EXPOSE` if parent atom is a turf. If turf is closed - subscribes to signal
/datum/component/sticker/proc/register_turf_signals(dir)
@@ -116,3 +138,12 @@
if(exposed_temperature >= FIRE_MINIMUM_TEMPERATURE_TO_EXIST)
qdel(our_sticker) // which qdels us
+<<<<<<< HEAD
+=======
+
+/datum/component/sticker/proc/on_examine(atom/source, mob/user, list/examine_list)
+ SIGNAL_HANDLER
+
+ if(!isnull(examine_text))
+ examine_list += span_warning(examine_text)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/components/style/style.dm b/code/datums/components/style/style.dm
index 04bb25cc2c3..77b32b6143c 100644
--- a/code/datums/components/style/style.dm
+++ b/code/datums/components/style/style.dm
@@ -94,14 +94,21 @@
if(multitooled)
src.multitooled = multitooled
+<<<<<<< HEAD
ADD_TRAIT(mob_parent, TRAIT_STYLISH, REF(src)) // SKYRAT EDIT ADD - allows style meter chads to do flips
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/component/style/RegisterWithParent()
RegisterSignal(parent, COMSIG_USER_ITEM_INTERACTION, PROC_REF(hotswap))
RegisterSignal(parent, COMSIG_MOB_MINED, PROC_REF(on_mine))
RegisterSignal(parent, COMSIG_MOB_APPLY_DAMAGE, PROC_REF(on_take_damage))
+<<<<<<< HEAD
RegisterSignal(parent, COMSIG_MOB_EMOTED("flip"), PROC_REF(on_flip))
RegisterSignal(parent, COMSIG_MOB_EMOTED("spin"), PROC_REF(on_spin))
+=======
+ RegisterSignal(parent, COMSIG_MOB_EMOTED("taunt"), PROC_REF(on_taunt))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignal(parent, COMSIG_MOB_ITEM_ATTACK, PROC_REF(on_attack))
RegisterSignal(parent, COMSIG_LIVING_UNARMED_ATTACK, PROC_REF(on_punch))
RegisterSignal(SSdcs, COMSIG_GLOB_MOB_DEATH, PROC_REF(on_death))
@@ -116,7 +123,11 @@
UnregisterSignal(parent, COMSIG_USER_ITEM_INTERACTION)
UnregisterSignal(parent, COMSIG_MOB_MINED)
UnregisterSignal(parent, COMSIG_MOB_APPLY_DAMAGE)
+<<<<<<< HEAD
UnregisterSignal(parent, list(COMSIG_MOB_EMOTED("flip"), COMSIG_MOB_EMOTED("spin")))
+=======
+ UnregisterSignal(parent, COMSIG_MOB_EMOTED("taunt"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
UnregisterSignal(parent, list(COMSIG_MOB_ITEM_ATTACK, COMSIG_LIVING_UNARMED_ATTACK))
UnregisterSignal(SSdcs, COMSIG_GLOB_MOB_DEATH)
UnregisterSignal(parent, COMSIG_LIVING_RESONATOR_BURST)
@@ -132,7 +143,10 @@
if(mob_parent.hud_used)
mob_parent.hud_used.static_inventory -= meter
mob_parent.hud_used.show_hud(mob_parent.hud_used.hud_version)
+<<<<<<< HEAD
REMOVE_TRAIT(mob_parent, TRAIT_STYLISH, REF(src)) // SKYRAT EDIT ADD - allows style meter chads to do flips
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ..()
/datum/component/style/process(seconds_per_tick)
@@ -392,23 +406,31 @@
add_action(ACTION_GIBTONITE_DEFUSED, min(40, 20 * (10 - det_time))) // 40 to 180 points depending on speed
+<<<<<<< HEAD
//SKYRAT EDIT START
/*
/datum/component/style/proc/on_crusher_detonate(datum/source, mob/living/target, obj/item/kinetic_crusher/crusher, backstabbed)
*/
/datum/component/style/proc/on_crusher_detonate(datum/component/kinetic_crusher/source, mob/living/target, obj/item/kinetic_crusher/crusher, backstabbed)
//SKYRAT EDIT END
+=======
+/datum/component/style/proc/on_crusher_detonate(datum/source, mob/living/target, obj/item/kinetic_crusher/crusher, backstabbed)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
if(target.stat == DEAD)
return
+<<<<<<< HEAD
//SKYRAT EDIT START
/*
var/has_brimdemon_trophy = locate(/obj/item/crusher_trophy/brimdemon_fang) in crusher.trophies
*/
var/has_brimdemon_trophy = locate(/obj/item/crusher_trophy/brimdemon_fang) in source.stored_trophies
//SKYRAT EDIT END
+=======
+ var/has_brimdemon_trophy = locate(/obj/item/crusher_trophy/brimdemon_fang) in crusher.trophies
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
add_action(ACTION_MARK_DETONATED, round((backstabbed ? 60 : 30) * (ismegafauna(target) ? 1.5 : 1) * (has_brimdemon_trophy ? 1.25 : 1)))
@@ -420,12 +442,17 @@
// Emote-based multipliers
+<<<<<<< HEAD
/datum/component/style/proc/on_flip()
+=======
+/datum/component/style/proc/on_taunt()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
point_multiplier = round(min(point_multiplier + 0.5, 3), 0.1)
update_screen()
+<<<<<<< HEAD
/datum/component/style/proc/on_spin()
SIGNAL_HANDLER
@@ -433,6 +460,8 @@
update_screen()
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Negative effects
/datum/component/style/proc/on_take_damage(...)
SIGNAL_HANDLER
diff --git a/code/datums/components/subtype_picker.dm b/code/datums/components/subtype_picker.dm
index 78401c9e022..f3460b1d2c2 100644
--- a/code/datums/components/subtype_picker.dm
+++ b/code/datums/components/subtype_picker.dm
@@ -87,6 +87,10 @@
return FALSE
if(QDELETED(target))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.is_holding(target))
+=======
+ if(user.incapacitated || !user.is_holding(target))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/datums/components/surgery_initiator.dm b/code/datums/components/surgery_initiator.dm
index d360478b8b2..f6b03a0d7d8 100644
--- a/code/datums/components/surgery_initiator.dm
+++ b/code/datums/components/surgery_initiator.dm
@@ -229,6 +229,7 @@
if (surgery_needs_exposure(surgery, surgery_target))
surgery_info["blocked"] = TRUE
+<<<<<<< HEAD
surgery_info["blocked_reason"] = "Their body is covered!" // SKYRAT EDIT ADDITION - Surgically unremovable bodyparts
// SKYRAT EDIT START - Surgically unremovable bodyparts
@@ -240,6 +241,8 @@
surgery_info["blocked"] = TRUE
surgery_info["blocked_reason"] = "That limb cannot be surgically removed!"
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
surgeries += list(surgery_info)
@@ -303,12 +306,15 @@
target.balloon_alert(user, "no wound to operate on!")
return
+<<<<<<< HEAD
// SKYRAT EDIT START - Limbs that can't be surgically removed
if (surgery.removes_target_bodypart && !isnull(affecting_limb) && !affecting_limb.can_be_surgically_removed)
target.balloon_alert(user, "limb can't be surgically removed!")
return
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (IS_IN_INVALID_SURGICAL_POSITION(target, surgery))
target.balloon_alert(user, "patient is not lying down!")
return
@@ -333,9 +339,12 @@
span_notice("You drape [parent] over [target]'s [target.parse_zone_with_bodypart(selected_zone)] to prepare for \an [procedure.name]."),
)
+<<<<<<< HEAD
if(!(HAS_TRAIT(target, TRAIT_ANALGESIA) || target.stat >= UNCONSCIOUS)) ///skyrat add start - warning for unanesthetized surgery
target.balloon_alert(user, "not numbed!") ///skyrat add end
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
log_combat(user, target, "operated on", null, "(OPERATION TYPE: [procedure.name]) (TARGET AREA: [selected_zone])")
/datum/component/surgery_initiator/proc/surgery_needs_exposure(datum/surgery/surgery, mob/living/target)
diff --git a/code/datums/components/tackle.dm b/code/datums/components/tackle.dm
index 90735cf73e7..86489b9c949 100644
--- a/code/datums/components/tackle.dm
+++ b/code/datums/components/tackle.dm
@@ -74,10 +74,14 @@
if(modifiers[ALT_CLICK] || modifiers[SHIFT_CLICK] || modifiers[CTRL_CLICK] || modifiers[MIDDLE_CLICK])
return
+<<<<<<< HEAD
if(!modifiers[RIGHT_CLICK])
return
if(!user.throw_mode || user.get_active_held_item() || user.pulling || user.buckled || user.incapacitated())
+=======
+ if(!user.throw_mode || user.get_active_held_item() || user.pulling || user.buckled || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(!clicked_atom || !(isturf(clicked_atom) || isturf(clicked_atom.loc)))
@@ -109,7 +113,11 @@
RegisterSignal(user, COMSIG_MOVABLE_MOVED, PROC_REF(checkObstacle))
playsound(user, 'sound/weapons/thudswoosh.ogg', 40, TRUE, -1)
+<<<<<<< HEAD
var/leap_word = isfeline(user) ? "pounce" : "leap" //If cat, "pounce" instead of "leap". // SKYRAT EDIT - FELINE TRAITS. Was: isfelinid(user)
+=======
+ var/leap_word = isfelinid(user) ? "pounce" : "leap" //If cat, "pounce" instead of "leap".
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(can_see(user, clicked_atom, 7))
user.visible_message(span_warning("[user] [leap_word]s at [clicked_atom]!"), span_danger("You [leap_word] at [clicked_atom]!"))
else
@@ -155,7 +163,11 @@
return
var/mob/living/carbon/target = hit
+<<<<<<< HEAD
var/tackle_word = isfeline(user) ? "pounce" : "tackle" //If cat, "pounce" instead of "tackle". // SKYRAT EDIT - FELINE TRAITS - ORIGINAL : var/tackle_word = isfelinid(user) ? "pounce" : "tackle"
+=======
+ var/tackle_word = isfelinid(user) ? "pounce" : "tackle" //If cat, "pounce" instead of "tackle".
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/roll = rollTackle(target)
tackling = FALSE
diff --git a/code/datums/components/toggle_attached_clothing.dm b/code/datums/components/toggle_attached_clothing.dm
index da503985169..d32f689a760 100644
--- a/code/datums/components/toggle_attached_clothing.dm
+++ b/code/datums/components/toggle_attached_clothing.dm
@@ -67,6 +67,10 @@
RegisterSignal(parent, COMSIG_ITEM_UI_ACTION_CLICK, PROC_REF(on_toggle_pressed))
RegisterSignal(parent, COMSIG_ITEM_UI_ACTION_SLOT_CHECKED, PROC_REF(on_action_slot_checked))
RegisterSignal(parent, COMSIG_ITEM_EQUIPPED, PROC_REF(on_parent_equipped))
+<<<<<<< HEAD
+=======
+ RegisterSignal(parent, COMSIG_ITEM_POST_UNEQUIP, PROC_REF(remove_deployable))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignal(parent, COMSIG_ITEM_EQUIPPED_AS_OUTFIT, PROC_REF(on_parent_equipped_outfit))
if (down_overlay_state_suffix)
var/overlay_state = "[initial(clothing_parent.icon_state)][down_overlay_state_suffix]"
@@ -189,6 +193,10 @@
/// Removes our deployed equipment from the wearer
/datum/component/toggle_attached_clothing/proc/remove_deployable()
+<<<<<<< HEAD
+=======
+ SIGNAL_HANDLER
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unequip_deployable()
if (!currently_deployed)
return
diff --git a/code/datums/components/trapdoor.dm b/code/datums/components/trapdoor.dm
index cf989a9b996..e70eac3edfd 100644
--- a/code/datums/components/trapdoor.dm
+++ b/code/datums/components/trapdoor.dm
@@ -59,11 +59,14 @@
RegisterSignal(SSdcs, COMSIG_GLOB_TRAPDOOR_LINK, PROC_REF(on_link_requested))
else
RegisterSignal(assembly, COMSIG_ASSEMBLY_PULSED, PROC_REF(toggle_trapdoor))
+<<<<<<< HEAD
// SKYRAT EDIT START - Trapdoors shouldn't be targeted by SSDecay.
if(isturf(parent))
var/turf/turf_parent = parent
turf_parent.turf_flags &= ~CAN_DECAY_BREAK_1
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignal(parent, COMSIG_ATOM_TOOL_ACT(TOOL_MULTITOOL), PROC_REF(try_unlink))
/datum/component/trapdoor/UnregisterFromParent()
diff --git a/code/datums/components/unobserved_actor.dm b/code/datums/components/unobserved_actor.dm
index b46b9caebbb..a823424a594 100644
--- a/code/datums/components/unobserved_actor.dm
+++ b/code/datums/components/unobserved_actor.dm
@@ -99,7 +99,11 @@
// We aren't in darkness, loop for viewers.
for(var/mob/living/mob_target in oview(my_turf, 7)) // They probably cannot see us if we cannot see them... can they?
+<<<<<<< HEAD
if(mob_target.client && !mob_target.is_blind() && !mob_target.has_unlimited_silicon_privilege && !HAS_TRAIT(mob_target, TRAIT_UNOBSERVANT))
+=======
+ if(mob_target.client && !mob_target.is_blind() && !HAS_TRAIT(mob_target, TRAIT_UNOBSERVANT))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
for(var/obj/vehicle/sealed/mecha/mecha_mob_target in oview(my_turf, 7))
for(var/mob/mechamob_target as anything in mecha_mob_target.occupants)
diff --git a/code/datums/datum.dm b/code/datums/datum.dm
index 7fb5b80a135..4e1f8db82a2 100644
--- a/code/datums/datum.dm
+++ b/code/datums/datum.dm
@@ -142,6 +142,13 @@
_clear_signal_refs()
//END: ECS SHIT
+<<<<<<< HEAD
+=======
+ if(!(datum_flags & DF_STATIC_OBJECT))
+ DREAMLUAU_CLEAR_REF_USERDATA(vars) // vars ceases existing when src does, so we need to clear any lua refs to it that exist.
+ DREAMLUAU_CLEAR_REF_USERDATA(src)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return QDEL_HINT_QUEUE
///Only override this if you know what you're doing. You do not know what you're doing
diff --git a/code/datums/diseases/advance/symptoms/fire.dm b/code/datums/diseases/advance/symptoms/fire.dm
index 3ec095feb5c..ef9d0281d1c 100644
--- a/code/datums/diseases/advance/symptoms/fire.dm
+++ b/code/datums/diseases/advance/symptoms/fire.dm
@@ -2,7 +2,11 @@
* Slightly hidden.
* Lowers resistance tremendously.
* Decreases stage speed tremendously.
+<<<<<<< HEAD
* Decreases transmittablity tremendously.
+=======
+ * Decreases transmittability tremendously.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Fatal level
* Bonus: Ignites infected mob.
*/
diff --git a/code/datums/diseases/advance/symptoms/flesh_eating.dm b/code/datums/diseases/advance/symptoms/flesh_eating.dm
index 90070aa15fb..005a651b7f3 100644
--- a/code/datums/diseases/advance/symptoms/flesh_eating.dm
+++ b/code/datums/diseases/advance/symptoms/flesh_eating.dm
@@ -70,7 +70,7 @@ Autophagocytosis (AKA Programmed mass cell death)
Very noticable.
Lowers resistance.
Fast stage speed.
- Decreases transmittablity.
+ Decreases transmittability.
Fatal Level.
Bonus
diff --git a/code/datums/diseases/advance/symptoms/heal.dm b/code/datums/diseases/advance/symptoms/heal.dm
index ea235af2b0e..2c765161201 100644
--- a/code/datums/diseases/advance/symptoms/heal.dm
+++ b/code/datums/diseases/advance/symptoms/heal.dm
@@ -280,7 +280,11 @@
. = ..()
if(!.)
return
+<<<<<<< HEAD
if(A.totalStageSpeed() >= 7)//SKYRAT EDIT: Brings Noc regen into line with the rest of the healing symptoms.
+=======
+ if(A.totalStageSpeed() >= 8)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
power = 2
/datum/symptom/heal/darkness/CanHeal(datum/disease/advance/A)
@@ -378,7 +382,11 @@
return power * 0.9
if(SOFT_CRIT)
return power * 0.5
+<<<<<<< HEAD
if(M.getBruteLoss() + M.getFireLoss() >= 103 && !active_coma) //SKYRAT EDIT: ORIGINAL: 70 - Adjusts this to remain 37.5% of total health(plus crit health). Because 70 is alot less health here then it is on tg.
+=======
+ if(M.getBruteLoss() + M.getFireLoss() >= 70 && !active_coma)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(M, span_warning("You feel yourself slip into a regenerative coma..."))
active_coma = TRUE
addtimer(CALLBACK(src, PROC_REF(coma), M), 6 SECONDS)
diff --git a/code/datums/dna.dm b/code/datums/dna.dm
index 6d972b674ad..39f4532c9e5 100644
--- a/code/datums/dna.dm
+++ b/code/datums/dna.dm
@@ -17,6 +17,7 @@ GLOBAL_LIST_INIT(identity_block_lengths, list(
))
/**
+<<<<<<< HEAD
* The same rules of the above also apply here, with the exception that this is for the unique_features string variable
* (commonly abbreviated with uf) and its blocks. Both ui and uf have a standard block length of 3 ASCII characters.
*/
@@ -27,6 +28,8 @@ GLOBAL_LIST_INIT(features_block_lengths, list(
/**
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Some identity blocks (basically pieces of the unique_identity string variable of the dna datum, commonly abbreviated with ui)
* may have a length that differ from standard length of 3 ASCII characters. This list is necessary
* for these non-standard blocks to work, as well as the entire unique identity string.
@@ -75,8 +78,12 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
for(var/blocknumber in 1 to DNA_FEATURE_BLOCKS)
. += total_block_len
total_block_len += GET_UF_BLOCK_LEN(blocknumber)
+<<<<<<< HEAD
*/
//SKYRAT EDIT REMOVAL END
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/////////////////////////// DNA DATUM
/datum/dna
///An md5 hash of the dna holder's real name
@@ -151,8 +158,12 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
destination.dna.mutation_index = mutation_index
destination.dna.default_mutation_genes = default_mutation_genes
if(transfer_species)
+<<<<<<< HEAD
//destination.set_species(species.type, icon_update=0) - ORIGINAL
destination.set_species(species.type, TRUE, FALSE, features.Copy(), mutant_bodyparts.Copy(), body_markings.Copy()) //SKYRAT EDIT CHANGE - CUSTOMIZATION
+=======
+ destination.set_species(species.type, icon_update=0)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/dna/proc/copy_dna(datum/dna/new_dna)
new_dna.unique_enzymes = unique_enzymes
@@ -162,11 +173,14 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
new_dna.unique_features = unique_features
new_dna.blood_type = blood_type
new_dna.features = features.Copy()
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - CUSTOMIZATION
new_dna.mutant_bodyparts = mutant_bodyparts.Copy()
new_dna.body_markings = body_markings.Copy()
new_dna.update_body_size()
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//if the new DNA has a holder, transform them immediately, otherwise save it
if(new_dna.holder)
new_dna.holder.set_species(species.type, icon_update = 0)
@@ -241,8 +255,11 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
for(var/blocknum in 1 to DNA_UNI_IDENTITY_BLOCKS)
. += L[blocknum] || random_string(GET_UI_BLOCK_LEN(blocknum), GLOB.hex_characters)
+<<<<<<< HEAD
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION (moved to modular_skyrat/modules/customization/code/datums/dna.dm)
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/dna/proc/generate_unique_features()
. = ""
var/list/L = new /list(DNA_FEATURE_BLOCKS)
@@ -280,10 +297,13 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
for(var/blocknum in 1 to DNA_FEATURE_BLOCKS)
. += L[blocknum] || random_string(GET_UI_BLOCK_LEN(blocknum), GLOB.hex_characters)
+<<<<<<< HEAD
return data.Join()
*/
//SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/dna/proc/generate_dna_blocks()
var/bonus
@@ -389,8 +409,11 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
if(DNA_FACIAL_HAIR_COLOR_GRADIENT_BLOCK)
set_uni_identity_block(blocknumber, sanitize_hexcolor(H.grad_color[GRADIENT_FACIAL_HAIR_KEY], include_crunch = FALSE))
+<<<<<<< HEAD
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION (moved to modular_skyrat/modules/customization/code/datums/dna.dm)
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/dna/proc/update_uf_block(blocknumber)
if(!blocknumber)
CRASH("UF block index is null")
@@ -427,8 +450,11 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
set_uni_feature_block(blocknumber, construct_block(SSaccessories.caps_list.Find(features["caps"]), length(SSaccessories.caps_list)))
if(DNA_POD_HAIR_BLOCK)
set_uni_feature_block(blocknumber, construct_block(SSaccessories.pod_hair_list.Find(features["pod_hair"]), length(SSaccessories.pod_hair_list)))
+<<<<<<< HEAD
*/
//SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Please use add_mutation or activate_mutation instead
/datum/dna/proc/force_give(datum/mutation/human/human_mutation)
@@ -514,6 +540,7 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
if(create_mutation_blocks) //I hate this
generate_dna_blocks()
if(randomize_features)
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL START - We don't really want this. We instead let get_mutant_bodyparts() handle the bodypart randomization on our end, to prevent getting any crazy cross-species features.
var/static/list/all_species_protoypes
if(isnull(all_species_protoypes))
@@ -528,9 +555,19 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
features = species.randomize_features() | features // SKYRAT EDIT CHANGE - Where applicable, replace features with the features generated by species/randomize_features() - Original: features["mcolor"] = "#[random_color()]"
body_markings = species.get_random_body_markings(features) // SKYRAT EDIT ADDITION
+=======
+ for(var/species_type in GLOB.species_prototypes)
+ var/list/new_features = GLOB.species_prototypes[species_type].randomize_features()
+ for(var/feature in new_features)
+ features[feature] = new_features[feature]
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+ features["mcolor"] = "#[random_color()]"
+<<<<<<< HEAD
mutant_bodyparts = species.get_mutant_bodyparts(features, existing_mutant_bodyparts = randomize_features ? list() : mutant_bodyparts) // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
update_dna_identity()
/datum/dna/stored //subtype used by brain mob's stored_dna and the crew manifest
@@ -564,13 +601,41 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
stored_dna.species = mrace //not calling any species update procs since we're a brain, not a monkey/human
+<<<<<<< HEAD
/mob/living/carbon/set_species(datum/species/mrace, icon_update = TRUE, pref_load = FALSE, list/override_features, list/override_mutantparts, list/override_markings) // SKYRAT EDIT CHANGE - ORIGINAL: /mob/living/carbon/set_species(datum/species/mrace, icon_update = TRUE, pref_load = FALSE)
+=======
+/mob/living/carbon/set_species(datum/species/mrace, icon_update = TRUE, pref_load = FALSE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(QDELETED(src))
CRASH("You're trying to change your species post deletion, this is a recipe for madness")
if(isnull(mrace))
CRASH("set_species called without a species to set to")
if(!has_dna())
return
+<<<<<<< HEAD
+=======
+
+ var/datum/species/new_race
+ if(ispath(mrace))
+ new_race = new mrace
+ else if(istype(mrace))
+ if(QDELING(mrace))
+ CRASH("someone is calling set_species() and is passing it a qdeling species datum, this is VERY bad, stop it")
+ new_race = mrace
+ else
+ CRASH("set_species called with an invalid mrace [mrace]")
+
+ death_sound = new_race.death_sound
+
+ var/datum/species/old_species = dna.species
+ dna.species = new_race
+
+ if (old_species.properly_gained)
+ old_species.on_species_loss(src, new_race, pref_load)
+
+ dna.species.on_species_gain(src, old_species, pref_load)
+ log_mob_tag("TAG: [tag] SPECIES: [key_name(src)] \[[mrace]\]")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/species/new_race
if(ispath(mrace))
@@ -705,8 +770,11 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
else
gender = PLURAL
+<<<<<<< HEAD
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION (moved to modular_skyrat/modules/customization/code/datums/dna.dm)
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/mob/living/carbon/human/updateappearance(icon_update = TRUE, mutcolor_update = FALSE, mutations_overlay_update = FALSE)
..()
var/structure = dna.unique_identity
@@ -749,7 +817,10 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
if(dna.features["tail_cat"])
dna.features["tail_cat"] = SSaccessories.tails_list_human[deconstruct_block(get_uni_feature_block(features, DNA_TAIL_BLOCK), length(SSaccessories.tails_list_human))]
if(dna.features["tail_lizard"])
+<<<<<<< HEAD
dna.features["tail_cat"] = GLOB.tails_list_lizard[deconstruct_block(get_uni_feature_block(features, DNA_LIZARD_TAIL_BLOCK), GLOB.tails_list_lizard.len)]
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dna.features["tail_lizard"] = SSaccessories.tails_list_lizard[deconstruct_block(get_uni_feature_block(features, DNA_LIZARD_TAIL_BLOCK), length(SSaccessories.tails_list_lizard))]
if(dna.features["ears"])
dna.features["ears"] = SSaccessories.ears_list[deconstruct_block(get_uni_feature_block(features, DNA_EARS_BLOCK), length(SSaccessories.ears_list))]
@@ -760,14 +831,19 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
if(dna.features["moth_antennae"])
var/genetic_value = SSaccessories.moth_antennae_list[deconstruct_block(get_uni_feature_block(features, DNA_MOTH_ANTENNAE_BLOCK), length(SSaccessories.moth_antennae_list))]
dna.features["original_moth_antennae"] = genetic_value
+<<<<<<< HEAD
if(dna.features["moth_antennae"] != "Burnt Off")
dna.features["moth_antennae"] = genetic_value
+=======
+ dna.features["moth_antennae"] = genetic_value
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(dna.features["moth_markings"])
dna.features["moth_markings"] = SSaccessories.moth_markings_list[deconstruct_block(get_uni_feature_block(features, DNA_MOTH_MARKINGS_BLOCK), length(SSaccessories.moth_markings_list))]
if(dna.features["caps"])
dna.features["caps"] = SSaccessories.caps_list[deconstruct_block(get_uni_feature_block(features, DNA_MUSHROOM_CAPS_BLOCK), length(SSaccessories.caps_list))]
if(dna.features["pod_hair"])
dna.features["pod_hair"] = SSaccessories.pod_hair_list[deconstruct_block(get_uni_feature_block(features, DNA_POD_HAIR_BLOCK), length(SSaccessories.pod_hair_list))]
+<<<<<<< HEAD
for(var/obj/item/organ/external/external_organ in organs)
@@ -778,6 +854,17 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
*/
//SKYRAT EDIT REMOVAL END
+=======
+
+ for(var/obj/item/organ/organ in organs)
+ organ.mutate_feature(features, src)
+
+ if(icon_update)
+ update_body(is_creating = mutcolor_update)
+ if(mutations_overlay_update)
+ update_mutations_overlay()
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/mob/proc/domutcheck()
return
@@ -886,7 +973,11 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
if(!has_dna())
CRASH("[src] does not have DNA")
var/num = rand(1, DNA_UNI_IDENTITY_BLOCKS)
+<<<<<<< HEAD
dna.set_uni_identity_block(num, random_string(GET_UI_BLOCK_LEN(num), GLOB.hex_characters))
+=======
+ dna.set_uni_feature_block(num, random_string(GET_UI_BLOCK_LEN(num), GLOB.hex_characters))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
updateappearance(mutations_overlay_update=1)
/mob/living/carbon/proc/random_mutate_unique_features()
@@ -918,7 +1009,11 @@ GLOBAL_LIST_INIT(total_uf_len_by_block, populate_total_uf_len_by_block())
if(ui)
for(var/blocknum in 1 to DNA_UNI_IDENTITY_BLOCKS)
if(prob(probability))
+<<<<<<< HEAD
M.dna.set_uni_identity_block(blocknum, random_string(GET_UI_BLOCK_LEN(blocknum), GLOB.hex_characters))
+=======
+ M.dna.set_uni_feature_block(blocknum, random_string(GET_UI_BLOCK_LEN(blocknum), GLOB.hex_characters))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(uf)
for(var/blocknum in 1 to DNA_FEATURE_BLOCKS)
if(prob(probability))
diff --git a/code/datums/elements/can_shatter.dm b/code/datums/elements/can_shatter.dm
index be7e02e25b4..507c8df6c9d 100644
--- a/code/datums/elements/can_shatter.dm
+++ b/code/datums/elements/can_shatter.dm
@@ -45,9 +45,16 @@
shatter(source, impacted_turf)
/// Tells the parent to shatter if we are thrown and impact something
+<<<<<<< HEAD
/datum/element/can_shatter/proc/on_throw_impact(datum/source, atom/hit_atom)
SIGNAL_HANDLER
+=======
+/datum/element/can_shatter/proc/on_throw_impact(datum/source, atom/hit_atom, datum/thrownthing/throwing_datum, caught)
+ SIGNAL_HANDLER
+ if(caught)
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
shatter(source, hit_atom)
/// Handles the actual shattering part, throwing shards of whatever is defined on the component everywhere
diff --git a/code/datums/elements/crusher_loot.dm b/code/datums/elements/crusher_loot.dm
index 7d53794d5b0..34dab9db01b 100644
--- a/code/datums/elements/crusher_loot.dm
+++ b/code/datums/elements/crusher_loot.dm
@@ -35,11 +35,15 @@
SIGNAL_HANDLER
var/datum/status_effect/crusher_damage/damage = target.has_status_effect(/datum/status_effect/crusher_damage)
+<<<<<<< HEAD
// SKYRAT EDIT START - ASHWALKER TROPHIES
var/datum/status_effect/ashwalker_damage/ashie_damage = target.has_status_effect(/datum/status_effect/ashwalker_damage) // SKYRAT EDIT ADDITION
var/damage_total = damage?.total_damage + ashie_damage?.total_damage // SKYRAT EDIT ADDITION
if(damage_total && prob((damage_total/target.maxHealth) * drop_mod)) //on average, you'll need to kill 4 creatures before getting the item. by default. // SKYRAT EDIT - ORIGINAL: if(damage && prob((damage.total_damage/target.maxHealth) * drop_mod))
// SKYRAT EDIT END - ASHWALKER TROPHIES
+=======
+ if(damage && prob((damage.total_damage/target.maxHealth) * drop_mod)) //on average, you'll need to kill 4 creatures before getting the item. by default.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(drop_immediately)
new trophy_type(get_turf(target))
else
diff --git a/code/datums/elements/firestacker.dm b/code/datums/elements/firestacker.dm
index b7bad65cc6c..2bcfceb1e97 100644
--- a/code/datums/elements/firestacker.dm
+++ b/code/datums/elements/firestacker.dm
@@ -27,10 +27,17 @@
/datum/element/firestacker/proc/stack_on(datum/owner, mob/living/target)
target.adjust_fire_stacks(amount)
+<<<<<<< HEAD
/datum/element/firestacker/proc/impact(datum/source, atom/hit_atom, datum/thrownthing/throwingdatum)
SIGNAL_HANDLER
if(isliving(hit_atom))
+=======
+/datum/element/firestacker/proc/impact(datum/source, atom/hit_atom, datum/thrownthing/throwing_datum, caught)
+ SIGNAL_HANDLER
+
+ if(!caught && isliving(hit_atom))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
stack_on(source, hit_atom)
/datum/element/firestacker/proc/item_attack(datum/source, atom/movable/target, mob/living/user)
diff --git a/code/datums/elements/food/food_trash.dm b/code/datums/elements/food/food_trash.dm
index 6df36c82c4c..a4df744cd46 100644
--- a/code/datums/elements/food/food_trash.dm
+++ b/code/datums/elements/food/food_trash.dm
@@ -22,11 +22,22 @@
RegisterSignal(target, COMSIG_ITEM_ATTACK_SELF, PROC_REF(open_trash))
if(flags & FOOD_TRASH_POPABLE)
RegisterSignal(target, COMSIG_FOOD_CROSSED, PROC_REF(food_crossed))
+<<<<<<< HEAD
RegisterSignal(target, COMSIG_ITEM_ON_GRIND, PROC_REF(generate_trash))
RegisterSignal(target, COMSIG_ITEM_ON_JUICE, PROC_REF(generate_trash))
RegisterSignal(target, COMSIG_ITEM_USED_AS_INGREDIENT, PROC_REF(generate_trash))
RegisterSignal(target, COMSIG_ITEM_ON_COMPOSTED, PROC_REF(generate_trash))
RegisterSignal(target, COMSIG_ITEM_SOLD_TO_CUSTOMER, PROC_REF(generate_trash))
+=======
+ RegisterSignals(target, list(
+ COMSIG_ITEM_ON_GRIND,
+ COMSIG_ITEM_ON_JUICE,
+ COMSIG_ITEM_USED_AS_INGREDIENT,
+ COMSIG_ITEM_ON_COMPOSTED,
+ COMSIG_ITEM_SOLD_TO_CUSTOMER,
+ COMSIG_MOVABLE_SPLAT,
+ ), PROC_REF(generate_trash))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/element/food_trash/Detach(datum/target)
. = ..()
@@ -38,7 +49,13 @@
COMSIG_ITEM_ON_JUICE,
COMSIG_ITEM_USED_AS_INGREDIENT,
COMSIG_ITEM_ON_COMPOSTED,
+<<<<<<< HEAD
COMSIG_ITEM_SOLD_TO_CUSTOMER,))
+=======
+ COMSIG_ITEM_SOLD_TO_CUSTOMER,
+ COMSIG_MOVABLE_SPLAT,
+ ))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/element/food_trash/proc/generate_trash(datum/source, mob/living/eater, mob/living/feeder)
SIGNAL_HANDLER
diff --git a/code/datums/elements/food/grilled_item.dm b/code/datums/elements/food/grilled_item.dm
index de6c2ef41c1..d6dbacf7370 100644
--- a/code/datums/elements/food/grilled_item.dm
+++ b/code/datums/elements/food/grilled_item.dm
@@ -28,6 +28,11 @@
if(grill_time > 30 SECONDS && isnull(this_food.GetComponent(/datum/component/edible)))
this_food.AddComponent(/datum/component/edible, foodtypes = FRIED)
+<<<<<<< HEAD
+=======
+ SEND_SIGNAL(this_food, COMSIG_ITEM_BARBEQUE_GRILLED)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/element/grilled_item/Detach(atom/source, ...)
source.name = initial(source.name)
source.desc = initial(source.desc)
diff --git a/code/datums/elements/food/microwavable.dm b/code/datums/elements/food/microwavable.dm
index 8e7305545c0..fe8f4a5c82d 100644
--- a/code/datums/elements/food/microwavable.dm
+++ b/code/datums/elements/food/microwavable.dm
@@ -44,6 +44,10 @@
var/efficiency = istype(used_microwave) ? used_microwave.efficiency : 1
SEND_SIGNAL(result, COMSIG_ITEM_MICROWAVE_COOKED, source, efficiency)
+<<<<<<< HEAD
+=======
+ SEND_SIGNAL(source, COMSIG_ITEM_MICROWAVE_COOKED_FROM, result, efficiency)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(IS_EDIBLE(result) && (result_typepath != default_typepath))
BLACKBOX_LOG_FOOD_MADE(result.type)
diff --git a/code/datums/elements/frozen.dm b/code/datums/elements/frozen.dm
index d112ef31b5f..5673dfcaf8a 100644
--- a/code/datums/elements/frozen.dm
+++ b/code/datums/elements/frozen.dm
@@ -28,7 +28,11 @@ GLOBAL_LIST_INIT(freon_color_matrix, list("#2E5E69", "#60A2A8", "#A1AFB1", rgb(0
organ.organ_flags |= ORGAN_FROZEN
RegisterSignal(target, COMSIG_MOVABLE_MOVED, PROC_REF(on_moved))
+<<<<<<< HEAD
RegisterSignal(target, COMSIG_MOVABLE_THROW_LANDED, PROC_REF(shatter_on_throw))
+=======
+ RegisterSignal(target, COMSIG_MOVABLE_THROW_LANDED, PROC_REF(shatter_on_landed))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
RegisterSignal(target, COMSIG_MOVABLE_IMPACT, PROC_REF(shatter_on_throw))
RegisterSignal(target, COMSIG_OBJ_UNFREEZE, PROC_REF(on_unfreeze))
@@ -54,8 +58,18 @@ GLOBAL_LIST_INIT(freon_color_matrix, list("#2E5E69", "#60A2A8", "#A1AFB1", rgb(0
SIGNAL_HANDLER
Detach(source)
+<<<<<<< HEAD
///signal handler for COMSIG_MOVABLE_POST_THROW that shatters our target after impacting after a throw
/datum/element/frozen/proc/shatter_on_throw(datum/target, datum/thrownthing/throwingdatum)
+=======
+/datum/element/frozen/proc/shatter_on_throw(datum/source, atom/hit_atom, datum/thrownthing/throwing_datum, caught)
+ SIGNAL_HANDLER
+ if(!caught)
+ shatter_on_landed(source, throwing_datum)
+
+///signal handler that shatters our target after impacting after a throw.
+/datum/element/frozen/proc/shatter_on_landed(datum/target, datum/thrownthing/throwingdatum)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SIGNAL_HANDLER
var/obj/obj_target = target
if(ismob(throwingdatum.thrower))
diff --git a/code/datums/elements/lazy_fishing_spot.dm b/code/datums/elements/lazy_fishing_spot.dm
index 1ba296bfe73..a39f697bad2 100644
--- a/code/datums/elements/lazy_fishing_spot.dm
+++ b/code/datums/elements/lazy_fishing_spot.dm
@@ -41,6 +41,7 @@
var/datum/fish_source/fish_source = GLOB.preset_fish_sources[configuration]
+<<<<<<< HEAD
var/has_known_fishes = FALSE
for(var/reward in fish_source.fish_table)
if(!ispath(reward, /obj/item/fish))
@@ -50,6 +51,9 @@
has_known_fishes = TRUE
break
if(!has_known_fishes)
+=======
+ if(!fish_source.has_known_fishes())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
examine_text += span_tinynoticeital("This is a fishing spot. You can look again to list its fishes...")
@@ -60,6 +64,7 @@
return
var/datum/fish_source/fish_source = GLOB.preset_fish_sources[configuration]
+<<<<<<< HEAD
var/list/known_fishes = list()
for(var/reward in fish_source.fish_table)
@@ -73,6 +78,9 @@
return
examine_text += span_info("You can catch the following fish here: [english_list(known_fishes)].")
+=======
+ fish_source.get_catchable_fish_names(user, source, examine_text)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/element/lazy_fishing_spot/proc/explosive_fishing(atom/location, severity)
SIGNAL_HANDLER
diff --git a/code/datums/elements/leeching_walk.dm b/code/datums/elements/leeching_walk.dm
index c0afc52b245..60a495be260 100644
--- a/code/datums/elements/leeching_walk.dm
+++ b/code/datums/elements/leeching_walk.dm
@@ -55,3 +55,8 @@
// Heals blood loss
if(source.blood_volume < BLOOD_VOLUME_NORMAL)
source.blood_volume += 2.5 * seconds_per_tick
+<<<<<<< HEAD
+=======
+ // Slowly regulates your body temp
+ source.adjust_bodytemperature((source.get_body_temp_normal() - source.bodytemperature)/5)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/elements/loomable.dm b/code/datums/elements/loomable.dm
index d02b062f668..b4266561855 100644
--- a/code/datums/elements/loomable.dm
+++ b/code/datums/elements/loomable.dm
@@ -73,11 +73,18 @@
/datum/element/loomable/proc/loom_me(obj/item/source, mob/living/user, atom/target)
//this allows us to count the amount of times it has successfully used the stack's required amount
var/spawning_amount = 0
+<<<<<<< HEAD
var/skill_modifier = user.mind.get_skill_modifier(/datum/skill/production, SKILL_SPEED_MODIFIER) //SKYRAT EDIT
if(isstack(source))
var/obj/item/stack/stack_we_use = source
while(stack_we_use.amount >= required_amount)
if(!do_after(user, loom_time * skill_modifier, target)) //SKYRAT EDIT
+=======
+ if(isstack(source))
+ var/obj/item/stack/stack_we_use = source
+ while(stack_we_use.amount >= required_amount)
+ if(!do_after(user, loom_time, target))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
break
if(!stack_we_use.use(required_amount))
@@ -85,16 +92,25 @@
break
spawning_amount++
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/production, 5) //SKYRAT EDIT
else
if(!do_after(user, loom_time * skill_modifier, target)) //SKYRAT EDIT
+=======
+
+ else
+ if(!do_after(user, loom_time, target))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.balloon_alert(user, "interrupted!")
return
qdel(source)
spawning_amount++
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/production, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(spawning_amount == 0)
return
diff --git a/code/datums/elements/lube_walking.dm b/code/datums/elements/lube_walking.dm
index f85b3e995f8..934c88d2fca 100644
--- a/code/datums/elements/lube_walking.dm
+++ b/code/datums/elements/lube_walking.dm
@@ -47,6 +47,7 @@
if(new_resting && lubricate(snail))
snail.add_movespeed_modifier(/datum/movespeed_modifier/snail_crawl)
RegisterSignal(snail, COMSIG_MOVABLE_MOVED, PROC_REF(lubricate))
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - This is to prevent snails from achieving FTL speeds without gravity, think of it like snails affixing to walls irl.
ADD_TRAIT(snail, TRAIT_NEGATES_GRAVITY, TRAIT_GENERIC)
snail.AddElement(/datum/element/forced_gravity, 0)
@@ -60,6 +61,11 @@
REMOVE_TRAIT(snail, TRAIT_NEGATES_GRAVITY, TRAIT_GENERIC)
snail.RemoveElement(/datum/element/forced_gravity, 0)
//SKYRAT EDIT ADDITION END
+=======
+ else
+ snail.remove_movespeed_modifier(/datum/movespeed_modifier/snail_crawl)
+ UnregisterSignal(snail, COMSIG_MOVABLE_MOVED)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/element/lube_walking/proc/lubricate(atom/movable/snail)
SIGNAL_HANDLER
@@ -67,7 +73,11 @@
var/turf/open/turf_standing_on = get_turf(snail)
if(!istype(turf_standing_on))
return FALSE
+<<<<<<< HEAD
turf_standing_on.MakeSlippery(TURF_WET_WATER, 1 SECONDS) //SKYRAT EDIT CHANGE: Roundstart Snails - No more lube - ORIGINAL: turf_standing_on.MakeSlippery(wet_flags, min_wet_time = min_time_wet_for)
turf_standing_on.wash(CLEAN_WASH) //SKYRAT EDIT ADDITION: Roundstart Snails - Snails Keep Clean
+=======
+ turf_standing_on.MakeSlippery(wet_flags, min_wet_time = min_time_wet_for)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
diff --git a/code/datums/elements/muffles_speech.dm b/code/datums/elements/muffles_speech.dm
index 161d911bd17..4de8844c2f2 100644
--- a/code/datums/elements/muffles_speech.dm
+++ b/code/datums/elements/muffles_speech.dm
@@ -24,10 +24,13 @@
/datum/element/muffles_speech/proc/emote_override(mob/living/source, key, params, type_override, intentional, datum/emote/emote)
SIGNAL_HANDLER
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION: muzzle_ignore flag
if(emote.muzzle_ignore)
return NONE
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!emote.hands_use_check && (emote.emote_type & EMOTE_AUDIBLE))
source.audible_message("makes a [pick("strong ", "weak ", "")]noise.", audible_message_flags = EMOTE_MESSAGE|ALWAYS_SHOW_SELF_MESSAGE)
return COMPONENT_CANT_EMOTE
diff --git a/code/datums/elements/quality_food_ingredient.dm b/code/datums/elements/quality_food_ingredient.dm
new file mode 100644
index 00000000000..e9bfec246c5
--- /dev/null
+++ b/code/datums/elements/quality_food_ingredient.dm
@@ -0,0 +1,71 @@
+///An element that adds extra food quality to any edible that was made from an atom with this attached.
+/datum/element/quality_food_ingredient
+ element_flags = ELEMENT_BESPOKE
+ argument_hash_start_idx = 2
+ ///The increase of recipe complexity (basically hardcoded food quality) of edibles made with this.
+ var/complexity_increase = 0
+
+/datum/element/quality_food_ingredient/Attach(datum/target, complexity_increase)
+ . = ..()
+ if(!isatom(target))
+ return ELEMENT_INCOMPATIBLE
+ if(HAS_TRAIT_FROM(target, TRAIT_QUALITY_FOOD_INGREDIENT, REF(src))) //It already has this element attached.
+ return
+
+ src.complexity_increase = complexity_increase
+
+ RegisterSignal(target, COMSIG_ATOM_USED_IN_CRAFT, PROC_REF(used_in_craft))
+ RegisterSignal(target, COMSIG_ITEM_BAKED, PROC_REF(item_baked))
+ RegisterSignal(target, COMSIG_ITEM_MICROWAVE_COOKED_FROM, PROC_REF(microwaved_from))
+ RegisterSignal(target, COMSIG_ITEM_GRILLED, PROC_REF(item_grilled))
+ RegisterSignals(target, list(COMSIG_ITEM_BARBEQUE_GRILLED, COMSIG_ITEM_FRIED), PROC_REF(simply_cooked))
+ RegisterSignal(target, COMSIG_ITEM_USED_AS_INGREDIENT, PROC_REF(used_as_ingredient))
+
+/datum/element/quality_food_ingredient/Detach(datum/source)
+ UnregisterSignal(source, list(
+ COMSIG_ATOM_USED_IN_CRAFT,
+ COMSIG_ITEM_BAKED,
+ COMSIG_ITEM_MICROWAVE_COOKED_FROM,
+ COMSIG_ITEM_GRILLED,
+ COMSIG_ITEM_BARBEQUE_GRILLED,
+ COMSIG_ITEM_FRIED,
+ COMSIG_ITEM_USED_AS_INGREDIENT,
+ COMSIG_FOOD_GET_EXTRA_COMPLEXITY,
+ ))
+ REMOVE_TRAIT(source, TRAIT_QUALITY_FOOD_INGREDIENT, REF(src))
+ return ..()
+
+/datum/element/quality_food_ingredient/proc/used_in_craft(datum/source, atom/result)
+ SIGNAL_HANDLER
+ add_quality(result)
+
+/datum/element/quality_food_ingredient/proc/item_baked(datum/source, atom/baked_result)
+ SIGNAL_HANDLER
+ add_quality(baked_result)
+
+/datum/element/quality_food_ingredient/proc/microwaved_from(datum/source, atom/result)
+ SIGNAL_HANDLER
+ add_quality(result)
+
+/datum/element/quality_food_ingredient/proc/item_grilled(datum/source, atom/grill_result)
+ SIGNAL_HANDLER
+ add_quality(grill_result)
+
+/datum/element/quality_food_ingredient/proc/simply_cooked(datum/source)
+ SIGNAL_HANDLER
+ //The target of the food quality and the source are the same, there's no need to re-add the whole element.
+ RegisterSignal(source, COMSIG_FOOD_GET_EXTRA_COMPLEXITY, PROC_REF(add_complexity), TRUE)
+ ADD_TRAIT(source, TRAIT_QUALITY_FOOD_INGREDIENT, REF(src))
+
+/datum/element/quality_food_ingredient/proc/used_as_ingredient(datum/source, atom/container)
+ SIGNAL_HANDLER
+ add_quality(container)
+
+/datum/element/quality_food_ingredient/proc/add_quality(atom/target)
+ target.AddElement(/datum/element/quality_food_ingredient, complexity_increase)
+ RegisterSignal(target, COMSIG_FOOD_GET_EXTRA_COMPLEXITY, PROC_REF(add_complexity), TRUE)
+ ADD_TRAIT(target, TRAIT_QUALITY_FOOD_INGREDIENT, REF(src))
+
+/datum/element/quality_food_ingredient/proc/add_complexity(datum/source, list/extra_complexity)
+ SIGNAL_HANDLER
+ extra_complexity[1] += complexity_increase
diff --git a/code/datums/elements/strippable.dm b/code/datums/elements/strippable.dm
index a668fa5ba5d..680eb760c01 100644
--- a/code/datums/elements/strippable.dm
+++ b/code/datums/elements/strippable.dm
@@ -80,9 +80,12 @@
/// Should we give feedback messages?
var/show_visible_message = TRUE
+<<<<<<< HEAD
/// Can it be silent?
var/can_be_silent = FALSE //SKYRAT EDIT ADDITION - THIEVING GLOVES
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Gets the item from the given source.
/datum/strippable_item/proc/get_item(atom/source)
@@ -144,6 +147,7 @@
if (HAS_TRAIT(item, TRAIT_NO_STRIP))
return FALSE
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE START - THIEVING GLOVES
var/is_silent = can_be_silent && HAS_TRAIT(user, TRAIT_STICKY_FINGERS)
if (!is_silent)
@@ -154,13 +158,25 @@
ignored_mobs = user,
)
//SKYRAT EDIT CHANGE END
+=======
+ source.visible_message(
+ span_warning("[user] tries to remove [source]'s [item.name]."),
+ span_userdanger("[user] tries to remove your [item.name]."),
+ blind_message = span_hear("You hear rustling."),
+ ignored_mobs = user,
+ )
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(user, span_danger("You try to remove [source]'s [item.name]..."))
user.log_message("is stripping [key_name(source)] of [item].", LOG_ATTACK, color="red")
source.log_message("is being stripped of [item] by [key_name(user)].", LOG_VICTIM, color="orange", log_globally=FALSE)
item.add_fingerprint(src)
+<<<<<<< HEAD
if(ishuman(source) && !is_silent) //SKYRAT EDIT ADDITION - THIEVING GLOVES ORIGINAL if(ishuman(source))
+=======
+ if(ishuman(source))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mob/living/carbon/human/victim_human = source
if(victim_human.key && !victim_human.client) // AKA braindead
if(victim_human.stat <= SOFT_CRIT && LAZYLEN(victim_human.afk_thefts) <= AFK_THEFT_MAX_MESSAGES)
@@ -297,7 +313,11 @@
/// A utility function for `/datum/strippable_item`s to start unequipping an item from a mob.
/proc/start_unequip_mob(obj/item/item, mob/source, mob/user, strip_delay, hidden = FALSE)
+<<<<<<< HEAD
if (!do_after(user, (strip_delay || item.strip_delay) * (HAS_TRAIT(user, TRAIT_STICKY_FINGERS) ? THIEVING_GLOVES_STRIP_SLOWDOWN : NORMAL_STRIP_SLOWDOWN), source, interaction_key = REF(item), hidden = hidden)) // SKYRAT EDIT CHANGE - ORIGINAL: if (!do_after(user, strip_delay || item.strip_delay, source, interaction_key = REF(item), hidden = hidden))
+=======
+ if (!do_after(user, strip_delay || item.strip_delay, source, interaction_key = REF(item), hidden = hidden))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/datums/elements/waddling.dm b/code/datums/elements/waddling.dm
index e63d0329bb6..1ec712b673f 100644
--- a/code/datums/elements/waddling.dm
+++ b/code/datums/elements/waddling.dm
@@ -18,7 +18,11 @@
return
if(isliving(moved))
var/mob/living/living_moved = moved
+<<<<<<< HEAD
if (living_moved.incapacitated() || living_moved.body_position == LYING_DOWN)
+=======
+ if (living_moved.incapacitated || living_moved.body_position == LYING_DOWN)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
waddling_animation(moved)
diff --git a/code/datums/elements/wheel.dm b/code/datums/elements/wheel.dm
index 2bb8977ca5c..57822b68161 100644
--- a/code/datums/elements/wheel.dm
+++ b/code/datums/elements/wheel.dm
@@ -17,7 +17,11 @@
return
if(isliving(moved))
var/mob/living/living_moved = moved
+<<<<<<< HEAD
if (living_moved.incapacitated() || living_moved.body_position == LYING_DOWN)
+=======
+ if (living_moved.incapacitated || living_moved.body_position == LYING_DOWN)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/rotation_degree = (360 / 3)
if(direction & SOUTHWEST)
diff --git a/code/datums/emotes.dm b/code/datums/emotes.dm
index 29b567e6f3c..06da343369e 100644
--- a/code/datums/emotes.dm
+++ b/code/datums/emotes.dm
@@ -102,6 +102,7 @@
var/tmp_sound = get_sound(user)
if(tmp_sound && should_play_sound(user, intentional) && TIMER_COOLDOWN_FINISHED(user, type))
TIMER_COOLDOWN_START(user, type, audio_cooldown)
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE BEGIN
//playsound(source = user,soundin = tmp_sound,vol = 50, vary = vary, ignore_walls = sound_wall_ignore) - SKYRAT EDIT - ORIGINAL
if(istype(src, /datum/emote/living/lewd))
@@ -109,11 +110,17 @@
else
playsound(source = user, soundin = tmp_sound, vol = sound_volume, vary = vary, ignore_walls = sound_wall_ignore)
//SKYRAT EDIT CHANGE END
+=======
+ playsound(source = user,soundin = tmp_sound,vol = 50, vary = vary, ignore_walls = sound_wall_ignore)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/is_important = emote_type & EMOTE_IMPORTANT
var/is_visual = emote_type & EMOTE_VISIBLE
var/is_audible = emote_type & EMOTE_AUDIBLE
+<<<<<<< HEAD
var/space = should_have_space_before_emote(html_decode(msg)[1]) ? " " : "" // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Emote doesn't get printed to chat, runechat only
if(emote_type & EMOTE_RUNECHAT)
@@ -125,10 +132,13 @@
continue
if(is_visual && viewer.is_blind())
continue
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN - Pref checked emotes
if(!pref_check_emote(viewer))
continue
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(user.runechat_prefs_check(viewer, EMOTE_MESSAGE))
viewer.create_chat_message(
speaker = user,
@@ -151,10 +161,13 @@
// The emote has some important information, and should always be shown to the user
else if(is_important)
for(var/mob/viewer as anything in viewers(user))
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN - Pref checked emotes
if(!pref_check_emote(viewer))
continue
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(viewer, "[user] [msg] ")
if(user.runechat_prefs_check(viewer, EMOTE_MESSAGE))
viewer.create_chat_message(
@@ -170,8 +183,11 @@
deaf_message = "You see how [user] [msg] ",
self_message = msg,
audible_message_flags = EMOTE_MESSAGE|ALWAYS_SHOW_SELF_MESSAGE,
+<<<<<<< HEAD
separation = space, // SKYRAT EDIT ADDITION
pref_to_check = pref_to_check // SKYRAT EDIT ADDITION - Pref checked emotes
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
// Emote is entirely audible, no visible component
else if(is_audible)
@@ -179,8 +195,11 @@
message = msg,
self_message = msg,
audible_message_flags = EMOTE_MESSAGE,
+<<<<<<< HEAD
separation = space, // SKYRAT EDIT ADDITION
pref_to_check = pref_to_check // SKYRAT EDIT ADDITION - Pref checked emotes
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
// Emote is entirely visible, no audible component
else if(is_visual)
@@ -188,12 +207,16 @@
message = msg,
self_message = msg,
visible_message_flags = EMOTE_MESSAGE|ALWAYS_SHOW_SELF_MESSAGE,
+<<<<<<< HEAD
separation = space, // SKYRAT EDIT ADDITION
pref_to_check = pref_to_check // SKYRAT EDIT ADDITION - Pref checked emotes
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
else
CRASH("Emote [type] has no valid emote type set!")
+<<<<<<< HEAD
// SKYRAT EDIT -- BEGIN -- ADDITION -- AI QOL - RELAY EMOTES OVER HOLOPADS
var/obj/effect/overlay/holo_pad_hologram/hologram = GLOB.hologram_impersonators[user]
if(hologram)
@@ -231,17 +254,25 @@
if(!isnull(user.client))
var/dchatmsg = "[user] [space][msg]" // SKYRAT EDIT - Better emotes - Original: var/dchatmsg = "[user] [msg]"
+=======
+ if(!isnull(user.client))
+ var/dchatmsg = "[user] [msg]"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/mob/ghost as anything in GLOB.dead_mob_list - viewers(get_turf(user)))
if(isnull(ghost.client) || isnewplayer(ghost))
continue
if(!(get_chat_toggles(ghost.client) & CHAT_GHOSTSIGHT))
continue
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN - Pref checked emotes
if(!pref_check_emote(ghost))
continue
// SKYRAT EDIT END
ghost.show_message("[FOLLOW_LINK(ghost, user)] [dchatmsg] ") // SKYRAT EDIT CHANGE - Indented
+=======
+ to_chat(ghost, "[FOLLOW_LINK(ghost, user)] [dchatmsg] ")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
@@ -259,12 +290,19 @@
/datum/emote/proc/check_cooldown(mob/user, intentional)
if(!intentional)
return TRUE
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE BEGIN - EMOTES - GLOBAL COOLDOWN
//if(user.emotes_used && user.emotes_used[src] + cooldown > world.time) - SKYRAT EDIT - ORIGINAL
if(user.nextsoundemote > world.time)
var/datum/emote/default_emote = new /datum/emote
if(cooldown > initial(default_emote.cooldown)) // only worry about longer-than-normal emotes
to_chat(user, span_danger("You must wait another [DisplayTimeText(user.nextsoundemote - world.time)] before using that emote."))
+=======
+ if(user.emotes_used && user.emotes_used[src] + cooldown > world.time)
+ var/datum/emote/default_emote = /datum/emote
+ if(cooldown > initial(default_emote.cooldown)) // only worry about longer-than-normal emotes
+ to_chat(user, span_danger("You must wait another [DisplayTimeText(user.emotes_used[src] - world.time + cooldown)] before using that emote."))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
//if(!user.emotes_used)
// user.emotes_used = list()
@@ -388,6 +426,7 @@
if(HAS_TRAIT(user, TRAIT_EMOTEMUTE))
return FALSE
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN
if(allowed_species && ishuman(user))
var/mob/living/carbon/human/sender = user
@@ -412,6 +451,23 @@
if(emote_type & EMOTE_AUDIBLE && !hands_use_check)
if(HAS_TRAIT(user, TRAIT_MUTE))
return FALSE
+=======
+ return TRUE
+
+/**
+ * Check to see if the user should play a sound when performing the emote.
+ *
+ * Arguments:
+ * * user - Person that is doing the emote.
+ * * intentional - Bool that says whether the emote was forced (FALSE) or not (TRUE).
+ *
+ * Returns a bool about whether or not the user should play a sound when performing the emote.
+ */
+/datum/emote/proc/should_play_sound(mob/user, intentional = FALSE)
+ if(emote_type & EMOTE_AUDIBLE && !hands_use_check)
+ if(HAS_TRAIT(user, TRAIT_MUTE))
+ return FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(ishuman(user))
var/mob/living/carbon/human/loud_mouth = user
if(HAS_MIND_TRAIT(loud_mouth, TRAIT_MIMING)) // vow of silence prevents outloud noises
diff --git a/code/datums/ert.dm b/code/datums/ert.dm
index 1187a3bad70..5b6c968acda 100644
--- a/code/datums/ert.dm
+++ b/code/datums/ert.dm
@@ -1,13 +1,26 @@
/datum/ert
+<<<<<<< HEAD
+=======
+ ///Antag datum team for this type of ERT.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/team = /datum/team/ert
+ ///Do we open the doors to the "high-impact" weapon/explosive cabinets? Used for combat-focused ERTs.
var/opendoors = TRUE
+ ///Alternate antag datum given to the leader of the squad.
var/leader_role = /datum/antagonist/ert/commander
+ ///Do we humanize all spawned players or keep them the species in their current character prefs?
var/enforce_human = TRUE
- var/roles = list(/datum/antagonist/ert/security, /datum/antagonist/ert/medic, /datum/antagonist/ert/engineer) //List of possible roles to be assigned to ERT members.
+ ///A list of roles distributed to the selected candidates that are not the leader.
+ var/roles = list(/datum/antagonist/ert/security, /datum/antagonist/ert/medic, /datum/antagonist/ert/engineer)
+ ///The custom name assigned to this team, for their antag datum/roundend reporting.
var/rename_team
+ ///Defines the color/alert code of the response team. Unused if a polldesc is defined.
var/code
+ ///The mission given to this ERT type in their flavor text.
var/mission = "Assist the station."
+ ///The number of players for consideration.
var/teamsize = 5
+ ///The "would you like to play as XXX" message used when polling for players.
var/polldesc
/// If TRUE, gives the team members "[role] [random last name]" style names
var/random_names = TRUE
@@ -15,8 +28,11 @@
var/spawn_admin = FALSE
/// If TRUE, we try and pick one of the most experienced players who volunteered to fill the leader slot
var/leader_experience = TRUE
+<<<<<<< HEAD
///SKYRAT EDIT: Do we want to notify the players of this ERT?
var/notify_players = TRUE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// A custom map template to spawn the ERT at. If this is null or use_custom_shuttle is FALSE, the ERT will spawn at Centcom.
var/datum/map_template/ert_template
/// If we should actually _use_ the ert_template custom shuttle
@@ -129,3 +145,17 @@
mission = "Having heard the station's request for aid, assist the crew in defending themselves."
polldesc = "an independent station defense militia"
random_names = TRUE
+<<<<<<< HEAD
+=======
+
+/datum/ert/medical
+ opendoors = FALSE
+ teamsize = 4
+ leader_role = /datum/antagonist/ert/medical_commander
+ enforce_human = FALSE //All the best doctors I know are moths and cats
+ roles = list(/datum/antagonist/ert/medical_technician)
+ rename_team = "EMT Squad"
+ code = "Violet"
+ mission = "Provide emergency medical services to the crew."
+ polldesc = "an emergency medical response team"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/greyscale/README.md b/code/datums/greyscale/README.md
index 9ff6bbca1d1..6a06f98d292 100644
--- a/code/datums/greyscale/README.md
+++ b/code/datums/greyscale/README.md
@@ -4,7 +4,11 @@ If you're wanting to add easy recolors for your sprite then this is the system f
- Multiple color layers so your sprite can be generated from more than one color.
- Mixed greyscale and colored sprite layers; You can choose to only greyscale a part of the sprite or have premade filters applied to layers.
+<<<<<<< HEAD
- Blend modes; Instead of just putting layers of sprites on top of eachother you can use the more advanced blend modes.
+=======
+- Blend modes; Instead of just putting layers of sprites on top of each other you can use the more advanced blend modes.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
- Reusable configurations; You can reference greyscale sprites from within the configuration of another, allowing you to have a bunch of styles with minimal additional configuration.
## Other Documents
@@ -31,7 +35,11 @@ This is simply some pointers in the code linking together your dmi and the json
## Json Configuration File
+<<<<<<< HEAD
The json is made up of some metadata and a list of layers used while creating the sprite. Inner lists are processed as their own chunk before being applied elsewhere, this is useful when you start using more advanced blend modes. Most of the time though you're just going to want a list of icons overlaid on top of eachother.
+=======
+The json is made up of some metadata and a list of layers used while creating the sprite. Inner lists are processed as their own chunk before being applied elsewhere, this is useful when you start using more advanced blend modes. Most of the time though you're just going to want a list of icons overlaid on top of each other.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
```json
{
diff --git a/code/datums/greyscale/_greyscale_config.dm b/code/datums/greyscale/_greyscale_config.dm
index d549149493f..377b0031740 100644
--- a/code/datums/greyscale/_greyscale_config.dm
+++ b/code/datums/greyscale/_greyscale_config.dm
@@ -57,6 +57,7 @@
if(!json_config)
stack_trace("Greyscale config object [DebugName()] is missing a json configuration, make sure `json_config` has been assigned a value.")
string_json_config = "[json_config]"
+<<<<<<< HEAD
/* SKYRAT EDIT - Added recognition for the Skyrat GAGS folder - ORIGINAL:
if(findtext(string_json_config, "code/datums/greyscale/json_configs/") != 1)
stack_trace("All greyscale json configuration files should be located within 'code/datums/greyscale/json_configs/'")
@@ -65,6 +66,10 @@
if(findtext(string_json_config, "code/datums/greyscale/json_configs/") != 1 && skyrat_gags_regex.Find(string_json_config) != 1)
stack_trace("All greyscale json configuration files should be located within '/greyscale/json_configs/' or 'modular_skyrat/modules/GAGS/json_configs/'.")
// SKYRAT EDIT END
+=======
+ if(findtext(string_json_config, "code/datums/greyscale/json_configs/") != 1)
+ stack_trace("All greyscale json configuration files should be located within 'code/datums/greyscale/json_configs/'")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!icon_file)
stack_trace("Greyscale config object [DebugName()] is missing an icon file, make sure `icon_file` has been assigned a value.")
string_icon_file = "[icon_file]"
diff --git a/code/datums/greyscale/config_types/greyscale_configs/greyscale_clothes.dm b/code/datums/greyscale/config_types/greyscale_configs/greyscale_clothes.dm
index 99812cfa59a..98c8e5f4bd5 100644
--- a/code/datums/greyscale/config_types/greyscale_configs/greyscale_clothes.dm
+++ b/code/datums/greyscale/config_types/greyscale_configs/greyscale_clothes.dm
@@ -35,23 +35,40 @@
name = "Held Sombrero Style (Held, Right)"
json_config = 'code/datums/greyscale/json_configs/sombrero_base_righthand.json'
+<<<<<<< HEAD
/* SKYRAT EDIT START - Beret-lliant (moved to modular_skyrat/modules/berets/code/datums/config_types)
/datum/greyscale_config/beret/worn
name = "Beret Worn"
+=======
+/datum/greyscale_config/beret
+ name = "Beret"
+ icon_file = 'icons/obj/clothing/head/beret.dmi'
+ json_config = 'code/datums/greyscale/json_configs/beret.json'
+
+/datum/greyscale_config/beret/worn
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "Beret (Worn)"
json_config = 'code/datums/greyscale/json_configs/beret_worn.json'
/datum/greyscale_config/beret_badge
+<<<<<<< HEAD
name = "Beret With Badge"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "Badged Beret"
icon_file = 'icons/obj/clothing/head/beret.dmi'
json_config = 'code/datums/greyscale/json_configs/beret_badge.json'
/datum/greyscale_config/beret_badge/worn
+<<<<<<< HEAD
name = "Beret With Badge Worn"
name = "Badged Beret (Worn)"
json_config = 'code/datums/greyscale/json_configs/beret_badge_worn.json'
SKYRAT EDIT END */
+=======
+ name = "Badged Beret (Worn)"
+ json_config = 'code/datums/greyscale/json_configs/beret_badge_worn.json'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/greyscale_config/beanie
name = "Beanie"
@@ -276,6 +293,14 @@ SKYRAT EDIT END */
icon_file = 'icons/mob/inhands/clothing/suits_righthand.dmi'
json_config = 'code/datums/greyscale/json_configs/jumpsuit_prison_inhand.json'
+<<<<<<< HEAD
+=======
+/datum/greyscale_config/jumpsuit/worn_digi
+ name = "Jumpsuit Worn (Digitigrate)"
+ icon_file = 'icons/mob/clothing/under/digi_template.dmi'
+ json_config = 'code/datums/greyscale/json_configs/jumpsuit_worn_digilegs.json'
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/greyscale_config/eth_tunic
name = "Ethereal Tunic"
icon_file = 'icons/obj/clothing/under/ethereal.dmi'
diff --git a/code/datums/greyscale/json_configs/jumpsuit_worn_digilegs.json b/code/datums/greyscale/json_configs/jumpsuit_worn_digilegs.json
new file mode 100644
index 00000000000..9aa201cece3
--- /dev/null
+++ b/code/datums/greyscale/json_configs/jumpsuit_worn_digilegs.json
@@ -0,0 +1,10 @@
+{
+ "": [
+ {
+ "type": "icon_state",
+ "icon_state": "jumpsuit",
+ "blend_mode": "overlay",
+ "color_ids": [ 1 ]
+ }
+ ]
+}
diff --git a/code/datums/greyscale/layer.dm b/code/datums/greyscale/layer.dm
index 06a001c1ad8..c76492ea31a 100644
--- a/code/datums/greyscale/layer.dm
+++ b/code/datums/greyscale/layer.dm
@@ -64,7 +64,11 @@
/datum/greyscale_layer/proc/CrossVerify()
return
+<<<<<<< HEAD
/// Used to actualy create the layer using the given colors
+=======
+/// Used to actually create the layer using the given colors
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Do not override, use InternalGenerate instead
/datum/greyscale_layer/proc/Generate(list/colors, list/render_steps, icon/new_icon)
var/list/processed_colors = list()
diff --git a/code/datums/holocall.dm b/code/datums/holocall.dm
index c69a279938d..ec24f5592d5 100644
--- a/code/datums/holocall.dm
+++ b/code/datums/holocall.dm
@@ -179,7 +179,11 @@
if(QDELETED(src))
return FALSE
+<<<<<<< HEAD
. = !QDELETED(user) && !user.incapacitated() && !QDELETED(calling_holopad) && calling_holopad.is_operational && user.loc == calling_holopad.loc
+=======
+ . = !QDELETED(user) && !user.incapacitated && !QDELETED(calling_holopad) && calling_holopad.is_operational && user.loc == calling_holopad.loc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(.)
if(!connected_holopad)
diff --git a/code/datums/hud.dm b/code/datums/hud.dm
index 4537a4ada7e..9263eb54f4d 100644
--- a/code/datums/hud.dm
+++ b/code/datums/hud.dm
@@ -19,15 +19,22 @@ GLOBAL_LIST_INIT(huds, list(
DATA_HUD_AI_DETECT = new /datum/atom_hud/ai_detector(),
DATA_HUD_FAN = new /datum/atom_hud/data/human/fan_hud(),
DATA_HUD_MALF_APC = new /datum/atom_hud/data/malf_apc(),
+<<<<<<< HEAD
DATA_HUD_PERMIT = new/datum/atom_hud/data/human/permit(), // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
GLOBAL_LIST_INIT(trait_to_hud, list(
TRAIT_SECURITY_HUD = DATA_HUD_SECURITY_ADVANCED,
TRAIT_MEDICAL_HUD = DATA_HUD_MEDICAL_ADVANCED,
TRAIT_DIAGNOSTIC_HUD = DATA_HUD_DIAGNOSTIC,
+<<<<<<< HEAD
TRAIT_BOT_PATH_HUD = DATA_HUD_BOT_PATH, // SKYRAT EDIT CHANGE
TRAIT_PERMIT_HUD = DATA_HUD_PERMIT, // SKYRAT EDIT ADDITION
+=======
+ TRAIT_BOT_PATH_HUD = DATA_HUD_BOT_PATH,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/datum/atom_hud
@@ -41,11 +48,19 @@ GLOBAL_LIST_INIT(trait_to_hud, list(
// by z level so when they change z's we can adjust what images they see from this hud.
var/list/hud_users = list()
+<<<<<<< HEAD
///used for signal tracking purposes, associative list of the form: list(hud atom = TRUE) that isnt separated by z level
var/list/atom/hud_atoms_all_z_levels = list()
///used for signal tracking purposes, associative list of the form: list(hud user = number of times this hud was added to this user).
///that isnt separated by z level
+=======
+ ///used for signal tracking purposes, associative list of the form: list(hud atom = TRUE) that isn't separated by z level
+ var/list/atom/hud_atoms_all_z_levels = list()
+
+ ///used for signal tracking purposes, associative list of the form: list(hud user = number of times this hud was added to this user).
+ ///that isn't separated by z level
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/mob/hud_users_all_z_levels = list()
///these will be the indexes for the atom's hud_list
@@ -55,10 +70,17 @@ GLOBAL_LIST_INIT(trait_to_hud, list(
var/list/next_time_allowed = list()
///mobs that have triggered the cooldown and are queued to see the hud, but do not yet
var/list/queued_to_see = list()
+<<<<<<< HEAD
/// huduser = list(atoms with their hud hidden) - aka everyone hates targeted invisiblity
var/list/hud_exceptions = list()
///whether or not this atom_hud type updates the global huds_by_category list.
///some subtypes cant work like this since theyre supposed to "belong" to
+=======
+ /// huduser = list(atoms with their hud hidden) - aka everyone hates targeted invisibility
+ var/list/hud_exceptions = list()
+ ///whether or not this atom_hud type updates the global huds_by_category list.
+ ///some subtypes can't work like this since they're supposed to "belong" to
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///one target atom each. it will still go in the other global hud lists.
var/uses_global_hud_category = TRUE
@@ -177,9 +199,15 @@ GLOBAL_LIST_INIT(trait_to_hud, list(
hud_users_all_z_levels[former_viewer] -= 1//decrement number of sources for this hud on this user (bad way to track i know)
+<<<<<<< HEAD
if (absolute || hud_users_all_z_levels[former_viewer] <= 0)//if forced or there arent any sources left, remove the user
if(!hud_atoms_all_z_levels[former_viewer])//make sure we arent unregistering changes on a mob thats also a hud atom for this hud
+=======
+ if (absolute || hud_users_all_z_levels[former_viewer] <= 0)//if forced or there aren't any sources left, remove the user
+
+ if(!hud_atoms_all_z_levels[former_viewer])//make sure we aren't unregistering changes on a mob that's also a hud atom for this hud
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
UnregisterSignal(former_viewer, COMSIG_MOVABLE_Z_CHANGED)
UnregisterSignal(former_viewer, COMSIG_QDELETING)
@@ -224,7 +252,11 @@ GLOBAL_LIST_INIT(trait_to_hud, list(
if(!hud_atom_to_remove || !hud_atoms_all_z_levels[hud_atom_to_remove])
return FALSE
+<<<<<<< HEAD
//make sure we arent unregistering a hud atom thats also a hud user mob
+=======
+ //make sure we aren't unregistering a hud atom that's also a hud user mob
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!hud_users_all_z_levels[hud_atom_to_remove])
UnregisterSignal(hud_atom_to_remove, COMSIG_MOVABLE_Z_CHANGED)
UnregisterSignal(hud_atom_to_remove, COMSIG_QDELETING)
@@ -280,12 +312,21 @@ GLOBAL_LIST_INIT(trait_to_hud, list(
for(var/mob/hud_user as anything in get_hud_users_for_z_level(atom_turf.z))
if(!hud_user.client)
continue
+<<<<<<< HEAD
hud_user.client.images -= hud_atom.active_hud_list[hud_category_to_remove]//by this point it shouldnt be in active_hud_list
return TRUE
///when a hud atom or hud user changes z levels this makes sure it gets the images it needs and removes the images it doesnt need.
///because of how signals work we need the same proc to handle both use cases because being a hud atom and being a hud user arent mutually exclusive
+=======
+ hud_user.client.images -= hud_atom.active_hud_list[hud_category_to_remove]//by this point it shouldn't be in active_hud_list
+
+ return TRUE
+
+///when a hud atom or hud user changes z levels this makes sure it gets the images it needs and removes the images it doesn't need.
+///because of how signals work we need the same proc to handle both use cases because being a hud atom and being a hud user aren't mutually exclusive
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/atom_hud/proc/on_atom_or_user_z_level_changed(atom/movable/moved_atom, turf/old_turf, turf/new_turf)
SIGNAL_HANDLER
if(old_turf)
@@ -302,7 +343,11 @@ GLOBAL_LIST_INIT(trait_to_hud, list(
if(new_turf)
if(hud_users_all_z_levels[moved_atom])
+<<<<<<< HEAD
hud_users[new_turf.z][moved_atom] = TRUE //hud users is associative, hud atoms isnt
+=======
+ hud_users[new_turf.z][moved_atom] = TRUE //hud users is associative, hud atoms isn't
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
add_all_atoms_to_single_mob_hud(moved_atom, get_hud_atoms_for_z_level(new_turf.z))
diff --git a/code/datums/id_trim/_id_trim.dm b/code/datums/id_trim/_id_trim.dm
index 067e2e38263..cd3d0a8f4a5 100644
--- a/code/datums/id_trim/_id_trim.dm
+++ b/code/datums/id_trim/_id_trim.dm
@@ -24,6 +24,14 @@
/// Accesses that this trim unlocks on a card that require wildcard slots to apply. If a card cannot accept all a trim's wildcard accesses, the card is incompatible with the trim.
var/list/wildcard_access = list()
+<<<<<<< HEAD
+=======
+ ///If true, IDs with this trim will grant wearers with bigger arrows when pointing
+ var/big_pointer = FALSE
+ ///If set, IDs with this trim will give wearers arrows of different colors when pointing
+ var/pointer_color
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Returns the SecHUD job icon state for whatever this object's ID card is, if it has one.
/obj/item/proc/get_sechud_job_icon_state()
var/obj/item/card/id/id_card = GetID()
diff --git a/code/datums/id_trim/admin.dm b/code/datums/id_trim/admin.dm
index 9de155c9a04..eaaf2a6b51d 100644
--- a/code/datums/id_trim/admin.dm
+++ b/code/datums/id_trim/admin.dm
@@ -5,6 +5,11 @@
department_color = COLOR_CENTCOM_BLUE
subdepartment_color = COLOR_SERVICE_LIME
threat_modifier = -INFINITY
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_GREEN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/admin/New()
. = ..()
diff --git a/code/datums/id_trim/centcom.dm b/code/datums/id_trim/centcom.dm
index 5cc24f4bd6e..a5b3505126e 100644
--- a/code/datums/id_trim/centcom.dm
+++ b/code/datums/id_trim/centcom.dm
@@ -7,6 +7,11 @@
department_color = COLOR_CENTCOM_BLUE
subdepartment_color = COLOR_CENTCOM_BLUE
threat_modifier = -10 // Centcom are legally allowed to do whatever they want
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_CENTCOM_BLUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Centcom VIPs
/datum/id_trim/centcom/vip
@@ -20,6 +25,10 @@
trim_state = "trim_janitor"
department_color = COLOR_CENTCOM_BLUE
subdepartment_color = COLOR_SERVICE_LIME
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Centcom Thunderdome Overseers.
/datum/id_trim/centcom/thunderdome_overseer
@@ -35,10 +44,18 @@
/datum/id_trim/centcom/intern
access = list(ACCESS_CENT_GENERAL, ACCESS_CENT_LIVING, ACCESS_WEAPONS)
assignment = "CentCom Intern"
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Centcom Head Interns. Different assignment, common station access added on.
/datum/id_trim/centcom/intern/head
assignment = "CentCom Head Intern"
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/intern/head/New()
. = ..()
@@ -49,11 +66,19 @@
/datum/id_trim/centcom/bounty_hunter
access = list(ACCESS_CENT_GENERAL)
assignment = "Bounty Hunter"
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Centcom Bartenders.
/datum/id_trim/centcom/bartender
access = list(ACCESS_CENT_GENERAL, ACCESS_CENT_LIVING, ACCESS_CENT_BAR)
assignment = JOB_CENTCOM_BARTENDER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Centcom Medical Officers.
/datum/id_trim/centcom/medical_officer
@@ -68,6 +93,10 @@
/// Trim for Centcom Specops Officers. All Centcom and Station Access.
/datum/id_trim/centcom/specops_officer
assignment = JOB_CENTCOM_SPECIAL_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/specops_officer/New()
. = ..()
@@ -129,6 +158,10 @@
trim_state = "trim_securityofficer"
subdepartment_color = COLOR_SECURITY_RED
sechud_icon_state = SECHUD_SECURITY_RESPONSE_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/ert/security/New()
. = ..()
@@ -141,6 +174,10 @@
trim_state = "trim_stationengineer"
subdepartment_color = COLOR_ENGINEERING_ORANGE
sechud_icon_state = SECHUD_ENGINEERING_RESPONSE_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/ert/engineer/New()
. = ..()
@@ -153,6 +190,10 @@
trim_state = "trim_medicaldoctor"
subdepartment_color = COLOR_MEDICAL_BLUE
sechud_icon_state = SECHUD_MEDICAL_RESPONSE_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/ert/medical/New()
. = ..()
@@ -165,6 +206,10 @@
trim_state = "trim_chaplain"
subdepartment_color = COLOR_SERVICE_LIME
sechud_icon_state = SECHUD_RELIGIOUS_RESPONSE_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/ert/chaplain/New()
. = ..()
@@ -177,6 +222,10 @@
trim_state = "trim_ert_janitor"
subdepartment_color = COLOR_SERVICE_LIME
sechud_icon_state = SECHUD_JANITORIAL_RESPONSE_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/ert/janitor/New()
. = ..()
@@ -189,6 +238,10 @@
trim_state = "trim_clown"
subdepartment_color = COLOR_MAGENTA
sechud_icon_state = SECHUD_ENTERTAINMENT_RESPONSE_OFFICER
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/centcom/ert/clown/New()
. = ..()
@@ -197,6 +250,14 @@
/datum/id_trim/centcom/ert/militia
assignment = "Frontier Militia"
+<<<<<<< HEAD
/datum/id_trim/centcom/ert/militia/general
assignment = "Frontier Militia General"
+=======
+ big_pointer = FALSE
+
+/datum/id_trim/centcom/ert/militia/general
+ assignment = "Frontier Militia General"
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/id_trim/jobs.dm b/code/datums/id_trim/jobs.dm
index b5893380fde..00d8b38ea6c 100644
--- a/code/datums/id_trim/jobs.dm
+++ b/code/datums/id_trim/jobs.dm
@@ -238,6 +238,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/captain
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_COMMAND_BLUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Captain gets all station accesses hardcoded in because it's the Captain.
/datum/id_trim/job/captain/New()
@@ -360,6 +365,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/chief_engineer
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_ENGINEERING_ORANGE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/chief_medical_officer
assignment = JOB_CHIEF_MEDICAL_OFFICER
@@ -399,6 +409,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/chief_medical_officer
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_MEDICAL_BLUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/clown
assignment = JOB_CLOWN
@@ -612,6 +627,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/head_of_personnel
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SERVICE_LIME
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/head_of_security
assignment = JOB_HEAD_OF_SECURITY
@@ -661,6 +681,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/head_of_security
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SECURITY_RED
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/head_of_security/refresh_trim_access()
. = ..()
@@ -893,6 +918,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/quartermaster
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_CARGO_BROWN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/research_director
assignment = JOB_RESEARCH_DIRECTOR
@@ -941,6 +971,11 @@
ACCESS_CHANGE_IDS,
)
job = /datum/job/research_director
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SCIENCE_PINK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/roboticist
assignment = JOB_ROBOTICIST
@@ -1206,6 +1241,10 @@
extra_access = list()
template_access = list()
job = /datum/job/veteran_advisor
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/job/veteran_advisor/refresh_trim_access()
. = ..()
@@ -1275,3 +1314,8 @@
extra_access = list()
template_access = list()
job = /datum/job/human_ai
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_MODERATE_BLUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/id_trim/ruins.dm b/code/datums/id_trim/ruins.dm
index e308287ec5c..13fd7ba0213 100644
--- a/code/datums/id_trim/ruins.dm
+++ b/code/datums/id_trim/ruins.dm
@@ -72,6 +72,10 @@
/datum/id_trim/centcom/corpse/commander
assignment = "Commander"
access = list(ACCESS_CENT_CAPTAIN, ACCESS_CENT_GENERAL, ACCESS_CENT_SPECOPS, ACCESS_CENT_MEDICAL, ACCESS_CENT_STORAGE)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for various Centcom corpses.
/datum/id_trim/centcom/corpse/private_security
@@ -115,6 +119,10 @@
/datum/id_trim/pirate/captain
assignment = "Pirate Captain"
trim_state = "trim_captain"
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/pirate/silverscale
assignment = "Silver Scale Member"
@@ -130,6 +138,10 @@
/datum/id_trim/away/dangerous_research/head_occultist
assignment = "Head Occultist"
access = list(ACCESS_AWAY_SCIENCE, ACCESS_AWAY_COMMAND)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Trims for waystation.dmm space ruin
/datum/id_trim/away/waystation/cargo_technician
@@ -143,6 +155,10 @@
trim_state = "trim_quartermaster"
department_color = COLOR_CARGO_BROWN
access = list(ACCESS_AWAY_SUPPLY, ACCESS_AWAY_COMMAND)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/away/waystation/security
assignment = "Waystation Security Officer"
@@ -162,8 +178,14 @@
/datum/id_trim/away/the_outlet/mad_manager
assignment = "The Mad Manager"
access = list(ACCESS_AWAY_GENERAL, ACCESS_AWAY_MEDICAL, ACCESS_AWAY_SEC)
+<<<<<<< HEAD
//Haunted Trading Post IDs //
+=======
+ big_pointer = TRUE
+
+//Haunted Trading Post IDs
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/away/hauntedtradingpost
assignment = "Donk Co. Employee"
department_color = COLOR_ENGINEERING_ORANGE
@@ -174,4 +196,8 @@
/datum/id_trim/away/hauntedtradingpost/boss
assignment = "Donk Co. Executive"
access = list(ACCESS_SYNDICATE, ACCESS_AWAY_COMMAND)
+<<<<<<< HEAD
// //
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/id_trim/syndicate.dm b/code/datums/id_trim/syndicate.dm
index 9a3e0c5fc91..9aa6feae44e 100644
--- a/code/datums/id_trim/syndicate.dm
+++ b/code/datums/id_trim/syndicate.dm
@@ -7,11 +7,20 @@
sechud_icon_state = SECHUD_SYNDICATE
access = list(ACCESS_SYNDICATE)
threat_modifier = 5 // Bad guy on deck
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SYNDIE_RED
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Syndicate mobs, outfits and corpses.
/datum/id_trim/syndicom/crew
assignment = "Syndicate Operative"
access = list(ACCESS_SYNDICATE, ACCESS_ROBOTICS)
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Interdyne medical Staff
/datum/id_trim/syndicom/Interdyne/pharmacist
@@ -19,6 +28,11 @@
trim_state = "trim_medicaldoctor"
sechud_icon_state = SECHUD_SYNDICATE_INTERDYNE
access = list(ACCESS_SYNDICATE, ACCESS_ROBOTICS, ACCESS_SURGERY)
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+ pointer_color = null
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Interdyne head medical Staff
/datum/id_trim/syndicom/Interdyne/pharmacist_director
@@ -28,6 +42,11 @@
subdepartment_color = COLOR_SYNDIE_RED_HEAD
sechud_icon_state = SECHUD_SYNDICATE_INTERDYNE_HEAD
access = list(ACCESS_SYNDICATE, ACCESS_ROBOTICS, ACCESS_SURGERY)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SYNDIE_RED_HEAD
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for the space IRS agents (why are they syndie access? I wouldn't worry about it.)
/datum/id_trim/syndicom/irs
@@ -37,11 +56,20 @@
subdepartment_color = COLOR_COMMAND_BLUE
sechud_icon_state = SECHUD_DEATH_COMMANDO
access = list(ACCESS_SYNDICATE, ACCESS_MAINT_TUNNELS)
+<<<<<<< HEAD
+=======
+ big_pointer = FALSE
+ pointer_color = null
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/id_trim/syndicom/irs/auditor
assignment = "Internal Revenue Service Head Auditor"
trim_state = "trim_quartermaster"
sechud_icon_state = SECHUD_QUARTERMASTER
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Syndicate mobs, outfits and corpses.
/datum/id_trim/syndicom/captain
@@ -60,6 +88,11 @@
/datum/id_trim/battlecruiser/captain
assignment = "Syndicate Battlecruiser Captain"
access = list(ACCESS_SYNDICATE, ACCESS_SYNDICATE_LEADER)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SYNDIE_RED
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Chameleon ID cards. Many outfits, nuke ops and some corpses hold Chameleon ID cards.
/datum/id_trim/chameleon
@@ -79,6 +112,11 @@
/datum/id_trim/chameleon/operative/nuke_leader
assignment = "Syndicate Operative Leader"
access = list(ACCESS_MAINT_TUNNELS, ACCESS_SYNDICATE, ACCESS_SYNDICATE_LEADER)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SYNDIE_RED
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Trim for Chameleon ID cards. Many outfits, nuke ops and some corpses hold Chameleon ID cards.
/datum/id_trim/chameleon/operative/clown
@@ -89,3 +127,8 @@
/datum/id_trim/chameleon/operative/clown_leader
assignment = "Syndicate Entertainment Operative Leader"
access = list(ACCESS_MAINT_TUNNELS, ACCESS_SYNDICATE, ACCESS_SYNDICATE_LEADER)
+<<<<<<< HEAD
+=======
+ big_pointer = TRUE
+ pointer_color = COLOR_SYNDIE_RED
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/json_database.dm b/code/datums/json_database.dm
index ea3ff354b48..510be35898e 100644
--- a/code/datums/json_database.dm
+++ b/code/datums/json_database.dm
@@ -61,6 +61,19 @@
/datum/json_database/proc/get_key(key)
return cached_data[key]
+<<<<<<< HEAD
+=======
+/// Picks the data of a random key and then removes that key from the database.
+/// Since the list is no longer inside the database, you can mutate and use it as you like.
+/datum/json_database/proc/pick_and_take_key()
+ if(!length(cached_data))
+ return null
+ var/key = pick(cached_data)
+ . = cached_data[key]
+ cached_data -= key
+ queue_save()
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Sets the data at the key to the value, and queues a save.
/datum/json_database/proc/set_key(key, value)
cached_data[key] = value
diff --git a/code/datums/keybinding/communication.dm b/code/datums/keybinding/communication.dm
index 92c8f3c4984..9b120ea062c 100644
--- a/code/datums/keybinding/communication.dm
+++ b/code/datums/keybinding/communication.dm
@@ -15,8 +15,12 @@
return TRUE
/datum/keybinding/client/communication/radio
+<<<<<<< HEAD
//hotkey_keys = list("Y") // ORIGINAL
hotkey_keys = list(";") // SKYRAT EDIT CHANGE - CUSTOMIZATION
+=======
+ hotkey_keys = list("Y")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = RADIO_CHANNEL
full_name = "IC Radio (;)"
keybind_signal = COMSIG_KB_CLIENT_RADIO_DOWN
diff --git a/code/datums/keybinding/living.dm b/code/datums/keybinding/living.dm
index 84e3685f5f8..046528392fd 100644
--- a/code/datums/keybinding/living.dm
+++ b/code/datums/keybinding/living.dm
@@ -121,7 +121,11 @@
user_mob.set_combat_mode(FALSE, silent = FALSE)
/datum/keybinding/living/toggle_move_intent
+<<<<<<< HEAD
hotkey_keys = list("Alt") //SKYRAT EDIT CHANGE - C IS FOR COMBAT INDICATOR - ORIGINAL: hotkey_keys = list("C")
+=======
+ hotkey_keys = list("C")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "toggle_move_intent"
full_name = "Hold to toggle move intent"
description = "Held down to cycle to the other move intent, release to cycle back"
diff --git a/code/datums/map_config.dm b/code/datums/map_config.dm
index 9535bcf8576..066e668e1fe 100644
--- a/code/datums/map_config.dm
+++ b/code/datums/map_config.dm
@@ -34,7 +34,11 @@
"cargo" = "cargo_skyrat",
"ferry" = "ferry_fancy",
"whiteship" = "whiteship_meta",
+<<<<<<< HEAD
"emergency" = "emergency_skyrat") //SKYRAT EDIT CHANGE
+=======
+ "emergency" = "emergency_meta")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Dictionary of job sub-typepath to template changes dictionary
var/job_changes = list()
diff --git a/code/datums/mapgen/CaveGenerator.dm b/code/datums/mapgen/CaveGenerator.dm
index 2c8be2edaa8..dffa59d0789 100644
--- a/code/datums/mapgen/CaveGenerator.dm
+++ b/code/datums/mapgen/CaveGenerator.dm
@@ -114,10 +114,13 @@
string_gen = rustg_cnoise_generate("[initial_closed_chance]", "[smoothing_iterations]", "[birth_limit]", "[death_limit]", "[world.maxx]", "[world.maxy]") //Generate the raw CA data
for(var/turf/gen_turf as anything in turfs) //Go through all the turfs and generate them
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(istype(gen_turf, /turf/open/space/mirage))
continue
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/closed = string_gen[world.maxx * (gen_turf.y - 1) + gen_turf.x] != "0"
var/turf/new_turf = pick(closed ? closed_turf_types : open_turf_types)
@@ -300,7 +303,11 @@
CHECK_TICK
var/message = "[name] terrain population finished in [(REALTIMEOFDAY - start_time)/10]s!"
+<<<<<<< HEAD
add_startup_message(message) //SKYRAT EDIT CHANGE - ORIGINAL: to_chat(world, span_boldannounce("[message]"))
+=======
+ to_chat(world, span_boldannounce("[message]"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
log_world(message)
diff --git a/code/datums/mapgen/Cavegens/IcemoonCaves.dm b/code/datums/mapgen/Cavegens/IcemoonCaves.dm
index 1d983582625..d1cf2c2e457 100644
--- a/code/datums/mapgen/Cavegens/IcemoonCaves.dm
+++ b/code/datums/mapgen/Cavegens/IcemoonCaves.dm
@@ -72,7 +72,11 @@
/datum/map_generator/cave_generator/icemoon/surface/noruins //use this for when you don't want ruins to spawn in a certain area
/datum/map_generator/cave_generator/icemoon/deep
+<<<<<<< HEAD
weighted_closed_turf_types = list(/turf/closed/mineral/random/snow/underground = 1) // SKYRAT EDIT: Original: list(/turf/closed/mineral/random/snow = 1)
+=======
+ weighted_closed_turf_types = list(/turf/closed/mineral/random/snow = 1)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
weighted_mob_spawn_list = list(
SPAWN_MEGAFAUNA = 1,
/mob/living/basic/mining/ice_demon = 100,
diff --git a/code/datums/martial/_martial.dm b/code/datums/martial/_martial.dm
index e5dc7860b0b..27518952507 100644
--- a/code/datums/martial/_martial.dm
+++ b/code/datums/martial/_martial.dm
@@ -211,7 +211,11 @@
* Resets the current streak.
*
* Arguments
+<<<<<<< HEAD
* * mob/living/new_target - (Optional) The mob being attacked while the reset is occuring.
+=======
+ * * mob/living/new_target - (Optional) The mob being attacked while the reset is occurring.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* * update_icon - If TRUE, the combo display will be updated.
*/
/datum/martial_art/proc/reset_streak(mob/living/new_target, update_icon = TRUE)
diff --git a/code/datums/martial/boxing.dm b/code/datums/martial/boxing.dm
index 3465fe300a5..afb75a66484 100644
--- a/code/datums/martial/boxing.dm
+++ b/code/datums/martial/boxing.dm
@@ -232,7 +232,11 @@
/datum/martial_art/boxing/proc/check_block(mob/living/boxer, atom/movable/hitby, damage, attack_text, attack_type, ...)
SIGNAL_HANDLER
+<<<<<<< HEAD
if(!can_use(boxer) || !boxer.throw_mode || boxer.incapacitated(IGNORE_GRAB))
+=======
+ if(!can_use(boxer) || !boxer.throw_mode || INCAPACITATED_IGNORING(boxer, INCAPABLE_GRAB))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return NONE
if(attack_type != UNARMED_ATTACK)
diff --git a/code/datums/martial/cqc.dm b/code/datums/martial/cqc.dm
index 8e33ac5a851..b2ac63a788f 100644
--- a/code/datums/martial/cqc.dm
+++ b/code/datums/martial/cqc.dm
@@ -46,7 +46,11 @@
/datum/martial_art/cqc/proc/check_block(mob/living/cqc_user, atom/movable/hitby, damage, attack_text, attack_type, ...)
SIGNAL_HANDLER
+<<<<<<< HEAD
if(!can_use(cqc_user) || !cqc_user.throw_mode || cqc_user.incapacitated(IGNORE_GRAB))
+=======
+ if(!can_use(cqc_user) || !cqc_user.throw_mode || INCAPACITATED_IGNORING(cqc_user, INCAPABLE_GRAB))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return NONE
if(attack_type == PROJECTILE_ATTACK)
return NONE
diff --git a/code/datums/martial/plasma_fist.dm b/code/datums/martial/plasma_fist.dm
index 8a73f47093b..d7820ec2df5 100644
--- a/code/datums/martial/plasma_fist.dm
+++ b/code/datums/martial/plasma_fist.dm
@@ -112,7 +112,10 @@
human_attacker.underwear = "Nude"
human_attacker.undershirt = "Nude"
human_attacker.socks = "Nude"
+<<<<<<< HEAD
human_attacker.bra = "Nude" // SKYRAT EDIT ADDITION - Underwear and bra split
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
human_attacker.update_body()
var/turf/boomspot = get_turf(user)
diff --git a/code/datums/martial/sleeping_carp.dm b/code/datums/martial/sleeping_carp.dm
index 83c73dda0f6..bf351efaf9a 100644
--- a/code/datums/martial/sleeping_carp.dm
+++ b/code/datums/martial/sleeping_carp.dm
@@ -184,7 +184,11 @@
/datum/martial_art/the_sleeping_carp/proc/can_deflect(mob/living/carp_user)
if(!can_use(carp_user) || !carp_user.combat_mode)
return FALSE
+<<<<<<< HEAD
if(carp_user.incapacitated(IGNORE_GRAB)) //NO STUN
+=======
+ if(INCAPACITATED_IGNORING(carp_user, INCAPABLE_GRAB)) //NO STUN
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(!(carp_user.mobility_flags & MOBILITY_USE)) //NO UNABLE TO USE
return FALSE
diff --git a/code/datums/materials/_material.dm b/code/datums/materials/_material.dm
index b340d95e90f..1c6565a1350 100644
--- a/code/datums/materials/_material.dm
+++ b/code/datums/materials/_material.dm
@@ -70,7 +70,11 @@ Simple datum which is instanced once per type and is used for every object of sa
/** Handles initializing the material.
*
+<<<<<<< HEAD
* Arugments:
+=======
+ * Arguments:
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* - _id: The ID the material should use. Overrides the existing ID.
*/
/datum/material/proc/Initialize(_id, ...)
diff --git a/code/datums/memory/general_memories.dm b/code/datums/memory/general_memories.dm
index b8c44c6fca8..0a5324a677d 100644
--- a/code/datums/memory/general_memories.dm
+++ b/code/datums/memory/general_memories.dm
@@ -162,6 +162,31 @@
"[protagonist_name] [mood_verb] as they lick off some of the pie",
)
+<<<<<<< HEAD
+=======
+/// Witnessed someone get splashed with squid ink.
+/datum/memory/witnessed_inking
+ story_value = STORY_VALUE_OKAY
+ memory_flags = MEMORY_CHECK_BLINDNESS
+ // Protagonist - The mob that got pied
+
+/datum/memory/witnessed_inking/get_names()
+ return list("The inking of [protagonist_name].")
+
+/datum/memory/witnessed_inking/get_starts()
+ return list(
+ "[protagonist_name]'s face being covered in squid ink",
+ "[protagonist_name] getting squid-inked",
+ )
+
+/datum/memory/witnessed_inking/get_moods()
+ return list(
+ "[protagonist_name] [mood_verb] as ink drips off their face",
+ "[protagonist_name] [mood_verb] because of their now expanded laundry task.",
+ "[protagonist_name] [mood_verb] as they wipe the ink off their face.",
+ )
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Got slipped by something.
/datum/memory/was_slipped
story_value = STORY_VALUE_MEH
diff --git a/code/datums/mind/_mind.dm b/code/datums/mind/_mind.dm
index dddc99c0722..0139c291f83 100644
--- a/code/datums/mind/_mind.dm
+++ b/code/datums/mind/_mind.dm
@@ -505,6 +505,7 @@
log_admin("[key_name(usr)] tried and failed to give [current] an uplink.")
else
log_admin("[key_name(usr)] gave [current] an uplink.")
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN -- EXPLOITABLES
if("toggle_exploitables")
has_exploitables_override = !has_exploitables_override //First we set the override to be the opposite of whatever it was apon execution, then we
@@ -512,6 +513,8 @@
log_admin("[key_name(usr)] toggled [current]'s exploitables override to [(has_exploitables_override) ? "true" : "false"].")
message_admins("[key_name(usr)] toggled [current]'s exploitables override to [(has_exploitables_override) ? "true" : "false"].")
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if (href_list["obj_announce"])
announce_objectives()
@@ -560,12 +563,20 @@
/// Sets us to the passed job datum, then greets them to their new job.
/// Use this one for when you're assigning this mind to a new job for the first time,
/// or for when someone's receiving a job they'd really want to be greeted to.
+<<<<<<< HEAD
/datum/mind/proc/set_assigned_role_with_greeting(datum/job/new_role, client/incoming_client, alt_title) // SKYRAT EDIT CHANGE - ALTERNATIVE_JOB_TITLES - ORIGINAL: /datum/mind/proc/set_assigned_role_with_greeting(datum/job/new_role, client/incoming_client)
+=======
+/datum/mind/proc/set_assigned_role_with_greeting(datum/job/new_role, client/incoming_client)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = set_assigned_role(new_role)
if(assigned_role != new_role)
return
+<<<<<<< HEAD
var/intro_message = new_role.get_spawn_message(alt_title) // SKYRAT EDIT CHANGE - ALTERNATIVE_JOB_TITLES - ORIGINAL: var/intro_message = new_role.get_spawn_message()
+=======
+ var/intro_message = new_role.get_spawn_message()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(incoming_client && intro_message)
to_chat(incoming_client, intro_message)
diff --git a/code/datums/mind/antag.dm b/code/datums/mind/antag.dm
index b71a5325392..80923349707 100644
--- a/code/datums/mind/antag.dm
+++ b/code/datums/mind/antag.dm
@@ -25,7 +25,10 @@
antag_team.add_member(src)
INVOKE_ASYNC(A, TYPE_PROC_REF(/datum/antagonist, on_gain))
log_game("[key_name(src)] has gained antag datum [A.name]([A.type]).")
+<<<<<<< HEAD
handle_exploitables() //SKYRAT EDIT ADDITION - EXPLOITABLES MENU
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return A
/datum/mind/proc/remove_antag_datum(datum_type)
diff --git a/code/datums/mood.dm b/code/datums/mood.dm
index cdc7074fd5f..701cffeffeb 100644
--- a/code/datums/mood.dm
+++ b/code/datums/mood.dm
@@ -288,6 +288,7 @@
if (SANITY_LEVEL_INSANE)
mood_screen_object.color = "#f15d36"
+<<<<<<< HEAD
if (!conflicting_moodies.len) // theres no special icons, use the normal icon states
//SKYRAT EDIT ADDITION BEGIN - ALEXITHYMIA
if(HAS_TRAIT(mob_parent, TRAIT_MOOD_NOEXAMINE))
@@ -295,6 +296,9 @@
mood_screen_object.color = "#4b96c4"
return
//SKYRAT EDIT ADDITION END
+=======
+ if (!conflicting_moodies.len) // there's no special icons, use the normal icon states
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mood_screen_object.icon_state = "mood[mood_level]"
return
@@ -337,8 +341,11 @@
/datum/mood/proc/print_mood(mob/user)
var/msg = "[span_info("My current mental status: ")]\n"
msg += span_notice("My current sanity: ") //Long term
+<<<<<<< HEAD
//ORIGINAL
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
switch(sanity)
if(SANITY_GREAT to INFINITY)
msg += "[span_boldnicegreen("My mind feels like a temple!")]\n"
@@ -352,6 +359,7 @@
msg += "[span_warning("I'm freaking out!!")]\n"
if(SANITY_INSANE to SANITY_CRAZY)
msg += "[span_boldwarning("AHAHAHAHAHAHAHAHAHAH!!")]\n"
+<<<<<<< HEAD
*/
//SKYRAT EDIT CHANGE BEGIN - ALEXITHYMIA
if(!HAS_TRAIT(user, TRAIT_MOOD_NOEXAMINE))
@@ -375,6 +383,10 @@
msg += span_notice("My current mood: ") //Short term
//ORIGINAL
/*
+=======
+
+ msg += span_notice("My current mood: ") //Short term
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
switch(mood_level)
if(MOOD_LEVEL_SAD4)
msg += "[span_boldwarning("I wish I was dead!")]\n"
@@ -394,6 +406,7 @@
msg += "[span_boldnicegreen("I feel amazing!")]\n"
if(MOOD_LEVEL_HAPPY4)
msg += "[span_boldnicegreen("I love life!")]\n"
+<<<<<<< HEAD
*/
//SKYRAT EDIT CHANGE BEGIN - ALEXITHYMIA / ALCOHOL_PROCESSING
if(!HAS_TRAIT(user, TRAIT_MOOD_NOEXAMINE))
@@ -424,6 +437,11 @@
msg += get_drunk_mood(user)
if(mood_events.len && !HAS_TRAIT(user, TRAIT_MOOD_NOEXAMINE)) // ORIGINAL - //if(mood_events.len)
//SKYRAT EDIT CHANGE END
+=======
+
+ msg += "[span_notice("Moodlets:")]\n"//All moodlets
+ if(mood_events.len)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/category in mood_events)
var/datum/mood_event/event = mood_events[category]
switch(event.mood_change)
diff --git a/code/datums/mood_events/generic_negative_events.dm b/code/datums/mood_events/generic_negative_events.dm
index 6ad0580e555..82cd275aef2 100644
--- a/code/datums/mood_events/generic_negative_events.dm
+++ b/code/datums/mood_events/generic_negative_events.dm
@@ -33,6 +33,11 @@
mood_change = -2
timeout = 3 MINUTES
+/datum/mood_event/inked
+ description = "I've been splashed with squid ink. Tastes like salt."
+ mood_change = -3
+ timeout = 3 MINUTES
+
/datum/mood_event/slipped
description = "I slipped. I should be more careful next time..."
mood_change = -2
diff --git a/code/datums/mood_events/generic_positive_events.dm b/code/datums/mood_events/generic_positive_events.dm
index 8c760e8c4f8..910057c2daa 100644
--- a/code/datums/mood_events/generic_positive_events.dm
+++ b/code/datums/mood_events/generic_positive_events.dm
@@ -351,11 +351,14 @@
mood_change = 1
timeout = 2 MINUTES
+<<<<<<< HEAD
/datum/mood_event/it_was_on_the_mouse
description = "Heh heh. \"It's on the mouse\". What a play on words."
mood_change = 1
timeout = 2 MINUTES
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/mood_event/birthday
description = "It's my birthday!"
mood_change = 2
diff --git a/code/datums/mutations/_mutations.dm b/code/datums/mutations/_mutations.dm
index dc7b64089bd..7090f8911da 100644
--- a/code/datums/mutations/_mutations.dm
+++ b/code/datums/mutations/_mutations.dm
@@ -118,10 +118,13 @@
/datum/mutation/human/proc/on_acquiring(mob/living/carbon/human/acquirer)
if(!acquirer || !istype(acquirer) || acquirer.stat == DEAD || (src in acquirer.dna.mutations))
return TRUE
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
if(acquirer.has_borer())
to_chat(acquirer, span_warning("Something inside holds dearly to your humanity!"))
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(species_allowed && !species_allowed.Find(acquirer.dna.species.id))
return TRUE
if(health_req && acquirer.health < health_req)
diff --git a/code/datums/mutations/body.dm b/code/datums/mutations/body.dm
index d9cb4aabd25..9d1268185e2 100644
--- a/code/datums/mutations/body.dm
+++ b/code/datums/mutations/body.dm
@@ -172,8 +172,12 @@
// This is specifically happening because they're not used to their new height and are stumbling around into machinery made for normal humans
/datum/mutation/human/acromegaly/proc/head_bonk(mob/living/parent)
SIGNAL_HANDLER
+<<<<<<< HEAD
var/turf/airlock_turf = get_turf(parent)
var/atom/movable/whacked_by = locate(/obj/machinery/door/airlock) in airlock_turf || locate(/obj/machinery/door/firedoor) in airlock_turf || locate(/obj/structure/mineral_door) in airlock_turf
+=======
+ var/atom/movable/whacked_by = (locate(/obj/machinery/door/airlock) in parent.loc) || (locate(/obj/machinery/door/firedoor) in parent.loc) || (locate(/obj/structure/mineral_door) in parent.loc)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!whacked_by || prob(100 - (8 * GET_MUTATION_SYNCHRONIZER(src))))
return
to_chat(parent, span_danger("You hit your head on \the [whacked_by]'s header!"))
@@ -193,12 +197,15 @@
/datum/mutation/human/gigantism/on_acquiring(mob/living/carbon/human/owner)
if(..())
return
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN
if(owner.dna.features["body_size"] > 1)
to_chat(owner, "You feel your body expanding even further, but it feels like your bones are expanding too much!")
owner.adjustBruteLoss(25) // take some DAMAGE
return
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ADD_TRAIT(owner, TRAIT_GIANT, GENETIC_MUTATION)
owner.update_transform(1.25)
owner.visible_message(span_danger("[owner] suddenly grows!"), span_notice("Everything around you seems to shrink.."))
@@ -206,12 +213,18 @@
/datum/mutation/human/gigantism/on_losing(mob/living/carbon/human/owner)
if(..())
return
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN
if(owner.dna.features["body_size"] > 1)
to_chat(owner, "You feel relief as your bones cease their growth spurt.")
REMOVE_TRAIT(owner, TRAIT_GIANT, GENETIC_MUTATION)
return
// SKYRAT EDIT END
+=======
+ REMOVE_TRAIT(owner, TRAIT_GIANT, GENETIC_MUTATION)
+ owner.update_transform(0.8)
+ owner.visible_message(span_danger("[owner] suddenly shrinks!"), span_notice("Everything around you seems to grow.."))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Clumsiness has a very large amount of small drawbacks depending on item.
/datum/mutation/human/clumsy
diff --git a/code/datums/mutations/chameleon.dm b/code/datums/mutations/chameleon.dm
index 01932fcfc9a..42bc4cdd537 100644
--- a/code/datums/mutations/chameleon.dm
+++ b/code/datums/mutations/chameleon.dm
@@ -22,6 +22,7 @@
RegisterSignal(owner, COMSIG_LIVING_UNARMED_ATTACK, PROC_REF(on_attack_hand))
/datum/mutation/human/chameleon/on_life(seconds_per_tick, times_fired)
+<<<<<<< HEAD
/// SKYRAT EDIT BEGIN
if(HAS_TRAIT(owner, TRAIT_CHAMELEON_SKIN))
owner.alpha = max(owner.alpha - (12.5 * (GET_MUTATION_POWER(src)) * seconds_per_tick), 0)
@@ -65,6 +66,43 @@
/datum/mutation/human/chameleon/proc/on_attack_hand(mob/living/carbon/human/source, atom/target, proximity, list/modifiers)
SIGNAL_HANDLER
+=======
+ owner.alpha = max(owner.alpha - (12.5 * (GET_MUTATION_POWER(src)) * seconds_per_tick), 0)
+
+//Upgraded mutation of the base variant, used for changelings. No instability and better power_coeff
+/datum/mutation/human/chameleon/changeling
+ instability = 0
+ power_coeff = 2.5
+ locked = TRUE
+
+/**
+ * Resets the alpha of the host to the chameleon default if they move.
+ *
+ * Arguments:
+ * - [source][/atom/movable]: The source of the signal. Presumably the host mob.
+ * - [old_loc][/atom]: The location the host mob used to be in.
+ * - move_dir: The direction the host mob moved in.
+ * - forced: Whether the movement was caused by a forceMove or moveToNullspace.
+ * - [old_locs][/list/atom]: The locations the host mob used to be in.
+ */
+/datum/mutation/human/chameleon/proc/on_move(atom/movable/source, atom/old_loc, move_dir, forced, list/atom/old_locs)
+ SIGNAL_HANDLER
+
+ owner.alpha = CHAMELEON_MUTATION_DEFAULT_TRANSPARENCY
+
+/**
+ * Resets the alpha of the host if they click on something nearby.
+ *
+ * Arguments:
+ * - [source][/mob/living/carbon/human]: The host mob that just clicked on something.
+ * - [target][/atom]: The thing the host mob clicked on.
+ * - proximity: Whether the host mob can physically reach the thing that they clicked on.
+ * - [modifiers][/list]: The set of click modifiers associated with this attack chain call.
+ */
+/datum/mutation/human/chameleon/proc/on_attack_hand(mob/living/carbon/human/source, atom/target, proximity, list/modifiers)
+ SIGNAL_HANDLER
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!proximity) //stops tk from breaking chameleon
return
@@ -80,6 +118,9 @@
return
owner.alpha = 255
UnregisterSignal(owner, list(COMSIG_MOVABLE_MOVED, COMSIG_LIVING_UNARMED_ATTACK))
+<<<<<<< HEAD
/// SKYRAT EDIT BEGIN
REMOVE_TRAIT(owner, TRAIT_CHAMELEON_SKIN, GENETIC_MUTATION)
/// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/mutations/hulk.dm b/code/datums/mutations/hulk.dm
index 1a44c62ad8c..b627536887f 100644
--- a/code/datums/mutations/hulk.dm
+++ b/code/datums/mutations/hulk.dm
@@ -113,7 +113,11 @@
return
if(!user.throw_mode || user.get_active_held_item() || user.zone_selected != BODY_ZONE_PRECISE_GROIN)
return
+<<<<<<< HEAD
if(user.grab_state < GRAB_NECK || !iscarbon(user.pulling) || user.buckled || user.incapacitated())
+=======
+ if(user.grab_state < GRAB_NECK || !iscarbon(user.pulling) || user.buckled || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/mob/living/carbon/possible_throwable = user.pulling
@@ -122,8 +126,12 @@
if(ishuman(possible_throwable))
var/mob/living/carbon/human/human_throwable = possible_throwable
+<<<<<<< HEAD
//if(human_throwable.wear_suit && (human_throwable.wear_suit.flags_inv & HIDEJUMPSUIT)) // ORIGINAL
if(human_throwable.wear_suit && (human_throwable.wear_suit.flags_inv & HIDETAIL)) // SKYRAT EDIT CHANGE
+=======
+ if(human_throwable.wear_suit && (human_throwable.wear_suit.flags_inv & HIDEJUMPSUIT))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(user, span_warning("You can't reach [human_throwable]'s tail through [human_throwable.p_their()] [human_throwable.wear_suit.name]!"))
return
@@ -167,7 +175,11 @@
* For each step of the swinging, with the delay getting shorter along the way. Checks to see we still have them in our grasp at each step.
*/
/datum/mutation/human/hulk/proc/swing_loop(mob/living/carbon/human/the_hulk, mob/living/carbon/yeeted_person, step, original_dir)
+<<<<<<< HEAD
if(!yeeted_person || !the_hulk || the_hulk.incapacitated())
+=======
+ if(!yeeted_person || !the_hulk || the_hulk.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(get_dist(the_hulk, yeeted_person) > 1 || !isturf(the_hulk.loc) || !isturf(yeeted_person.loc))
to_chat(the_hulk, span_warning("You lose your grasp on [yeeted_person]!"))
@@ -238,7 +250,11 @@
/// Time to toss the victim at high speed
/datum/mutation/human/hulk/proc/finish_swing(mob/living/carbon/human/the_hulk, mob/living/carbon/yeeted_person, original_dir)
+<<<<<<< HEAD
if(!yeeted_person || !the_hulk || the_hulk.incapacitated())
+=======
+ if(!yeeted_person || !the_hulk || the_hulk.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(get_dist(the_hulk, yeeted_person) > 1 || !isturf(the_hulk.loc) || !isturf(yeeted_person.loc))
to_chat(the_hulk, span_warning("You lose your grasp on [yeeted_person]!"))
diff --git a/code/datums/mutations/reach.dm b/code/datums/mutations/reach.dm
index 829ed5bded2..70060673d38 100644
--- a/code/datums/mutations/reach.dm
+++ b/code/datums/mutations/reach.dm
@@ -13,7 +13,12 @@
/datum/mutation/human/telekinesis/New(class_ = MUT_OTHER, timer, datum/mutation/human/copymut)
..()
if(!(type in visual_indicators))
+<<<<<<< HEAD
visual_indicators[type] = list(mutable_appearance('modular_skyrat/master_files/icons/effects/tele_effects.dmi', "telekinesishead", -MUTATIONS_LAYER)) // SKYRAT EDIT CHANGE - ORIGINAL: visual_indicators[type] = list(mutable_appearance('icons/mob/effects/genetics.dmi', "telekinesishead", -MUTATIONS_LAYER))
+=======
+ visual_indicators[type] = list(mutable_appearance('icons/mob/effects/genetics.dmi', "telekinesishead", -MUTATIONS_LAYER))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/mutation/human/telekinesis/on_acquiring(mob/living/carbon/human/homan)
. = ..()
if(.)
diff --git a/code/datums/mutations/sight.dm b/code/datums/mutations/sight.dm
index 3aceb3e7d8a..4ee1de6771a 100644
--- a/code/datums/mutations/sight.dm
+++ b/code/datums/mutations/sight.dm
@@ -110,7 +110,11 @@
///X-ray Vision lets you see through walls.
/datum/mutation/human/xray
name = "X Ray Vision"
+<<<<<<< HEAD
desc = "A strange genome that allows the user to see between the spaces of walls." //actual x-ray would mean you'd constantly be blasting rads, wich might be fun for later //hmb
+=======
+ desc = "A strange genome that allows the user to see between the spaces of walls." //actual x-ray would mean you'd constantly be blasting rads, which might be fun for later //hmb
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
text_gain_indication = span_notice("The walls suddenly disappear!")
instability = POSITIVE_INSTABILITY_MAJOR
locked = TRUE
diff --git a/code/datums/outfit.dm b/code/datums/outfit.dm
index 9c32f5b1a9c..369f4e749b7 100644
--- a/code/datums/outfit.dm
+++ b/code/datums/outfit.dm
@@ -49,6 +49,16 @@
/// Type path of item to go in belt slot
var/belt = null
+<<<<<<< HEAD
+=======
+ /**
+ * list of items that should go in the belt of the user
+ *
+ * Format of this list should be: list(path=count,otherpath=count)
+ */
+ var/list/belt_contents = null
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Type path of item to go in ears slot
var/ears = null
@@ -219,12 +229,15 @@
if(socks)
user.socks = initial(socks.name)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Underwear and bra split
if(bra)
user.bra = initial(bra.name)
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(accessory)
var/obj/item/clothing/under/U = user.w_uniform
@@ -258,6 +271,17 @@
for(var/i in 1 to number)
EQUIP_OUTFIT_ITEM(path, ITEM_SLOT_BACKPACK)
+<<<<<<< HEAD
+=======
+ if(belt_contents)
+ for(var/path in belt_contents)
+ var/number = belt_contents[path]
+ if(!isnum(number))//Default to 1
+ number = 1
+ for(var/i in 1 to number)
+ EQUIP_OUTFIT_ITEM(path, ITEM_SLOT_BELTPACK)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
post_equip(user, visualsOnly)
if(!visualsOnly)
@@ -303,6 +327,7 @@
*/
/datum/outfit/proc/apply_fingerprints(mob/living/carbon/human/user)
if(!istype(user))
+<<<<<<< HEAD
return
if(user.back)
user.back.add_fingerprint(user, ignoregloves = TRUE)
@@ -375,6 +400,46 @@
belt = H.belt.type
return TRUE
// SKYRAT EDIT END
+=======
+ return
+ if(user.back)
+ user.back.add_fingerprint(user, ignoregloves = TRUE)
+ for(var/obj/item/item in user.back.contents)
+ item.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.wear_id)
+ user.wear_id.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.w_uniform)
+ user.w_uniform.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.wear_suit)
+ user.wear_suit.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.wear_mask)
+ user.wear_mask.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.wear_neck)
+ user.wear_neck.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.head)
+ user.head.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.shoes)
+ user.shoes.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.gloves)
+ user.gloves.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.ears)
+ user.ears.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.glasses)
+ user.glasses.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.belt)
+ user.belt.add_fingerprint(user, ignoregloves = TRUE)
+ for(var/obj/item/item in user.belt.contents)
+ item.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.s_store)
+ user.s_store.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.l_store)
+ user.l_store.add_fingerprint(user, ignoregloves = TRUE)
+ if(user.r_store)
+ user.r_store.add_fingerprint(user, ignoregloves = TRUE)
+ for(var/obj/item/item in user.held_items)
+ item.add_fingerprint(user, ignoregloves = TRUE)
+ return TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Return a list of all the types that are required to disguise as this outfit type
/datum/outfit/proc/get_chameleon_disguise_info()
@@ -400,6 +465,16 @@
num_to_load = 1
for(var/i in 1 to num_to_load)
preload += type_to_load
+<<<<<<< HEAD
+=======
+ //Load in belt gear and shit
+ for(var/type_to_load in belt_contents)
+ var/num_to_load = belt_contents[type_to_load]
+ if(!isnum(num_to_load))
+ num_to_load = 1
+ for(var/i in 1 to num_to_load)
+ preload += type_to_load
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
preload += belt
preload += ears
preload += glasses
@@ -419,8 +494,11 @@
for(var/skillpath in skillchips)
preload += skillpath
+<<<<<<< HEAD
preload -= typesof(/obj/item/clothing/under/color/random) // SKYRAT EDIT - Don't preload random jumpsuit spawners that delete themselves
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return preload
/// Return a json list of this outfit
@@ -448,6 +526,7 @@
.["l_hand"] = l_hand
.["internals_slot"] = internals_slot
.["backpack_contents"] = backpack_contents
+ .["belt_contents"] = belt_contents
.["box"] = box
.["implants"] = implants
.["accessory"] = accessory
@@ -475,6 +554,10 @@
l_hand = target.l_hand
internals_slot = target.internals_slot
backpack_contents = target.backpack_contents
+<<<<<<< HEAD
+=======
+ belt_contents = target.belt_contents
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
box = target.box
implants = target.implants
accessory = target.accessory
@@ -518,6 +601,12 @@
var/itype = text2path(item)
if(itype)
backpack_contents[itype] = backpack[item]
+ var/list/beltpack = outfit_data["belt_contents"]
+ belt_contents = list()
+ for(var/item in beltpack)
+ var/itype = text2path(item)
+ if(itype)
+ belt_contents[itype] = belt[item]
box = text2path(outfit_data["box"])
var/list/impl = outfit_data["implants"]
implants = list()
diff --git a/code/datums/pod_style.dm b/code/datums/pod_style.dm
index 853d7e05878..83dd90df9f0 100644
--- a/code/datums/pod_style.dm
+++ b/code/datums/pod_style.dm
@@ -67,7 +67,11 @@
/datum/pod_style/missile
name = "cruise missile"
ui_name = "Missile"
+<<<<<<< HEAD
desc = "A big ass missile that didn't seem to fully detonate. It was likely launched from some far-off deep space missile silo. There appears to be an auxillery payload hatch on the side, though manually opening it is likely impossible."
+=======
+ desc = "A big ass missile that didn't seem to fully detonate. It was likely launched from some far-off deep space missile silo. There appears to be an auxiliary payload hatch on the side, though manually opening it is likely impossible."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
shape = POD_SHAPE_OTHER
icon_state = "missile"
has_door = FALSE
@@ -79,7 +83,11 @@
/datum/pod_style/missile/syndicate
name = "\improper Syndicate cruise missile"
ui_name = "Syndie Missile"
+<<<<<<< HEAD
desc = "A big ass, blood-red missile that didn't seem to fully detonate. It was likely launched from some deep space Syndicate missile silo. There appears to be an auxillery payload hatch on the side, though manually opening it is likely impossible."
+=======
+ desc = "A big ass, blood-red missile that didn't seem to fully detonate. It was likely launched from some deep space Syndicate missile silo. There appears to be an auxiliary payload hatch on the side, though manually opening it is likely impossible."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "smissile"
id = "syndie_missile"
diff --git a/code/datums/quirks/_quirk.dm b/code/datums/quirks/_quirk.dm
index 4e11099989c..b5e79b888aa 100644
--- a/code/datums/quirks/_quirk.dm
+++ b/code/datums/quirks/_quirk.dm
@@ -28,7 +28,11 @@
var/abstract_parent_type = /datum/quirk
/// The icon to show in the preferences menu.
/// This references a tgui icon, so it can be FontAwesome or a tgfont (with a tg- prefix).
+<<<<<<< HEAD
var/icon = "bug" //SKYRAT EDIT CHANGE
+=======
+ var/icon
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// A lazylist of items people can receive from mail who have this quirk enabled
/// The base weight for the each quirk's mail goodies list to be selected is 5
/// then the item selected is determined by pick(selected_quirk.mail_goodies)
@@ -203,6 +207,7 @@
*/
/mob/living/proc/get_quirk_string(medical = FALSE, category = CAT_QUIRK_ALL, from_scan = FALSE)
var/list/dat = list()
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
// The health analyzer will first check if the target is a changeling, and if they are, load the quirks of the person they're disguising as.
@@ -215,6 +220,9 @@
// SKYRAT EDIT END
for(var/datum/quirk/candidate as anything in target_quirks) // SKYRAT EDIT CHANGE - ORIGINAL : for(var/datum/quirk/candidate as anything in quirks)
+=======
+ for(var/datum/quirk/candidate as anything in quirks)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(from_scan & candidate.quirk_flags & QUIRK_HIDE_FROM_SCAN)
continue
switch(category)
diff --git a/code/datums/quirks/_quirk_constant_data.dm b/code/datums/quirks/_quirk_constant_data.dm
index 1984acecec0..2b24351a783 100644
--- a/code/datums/quirks/_quirk_constant_data.dm
+++ b/code/datums/quirks/_quirk_constant_data.dm
@@ -35,7 +35,11 @@ GLOBAL_LIST_INIT_TYPED(all_quirk_constant_data, /datum/quirk_constant_data, gene
/datum/quirk_constant_data/New()
. = ..()
+<<<<<<< HEAD
ASSERT(abstract_type != type && !isnull(associated_typepath), "associated_typepath null - please set it! occured on: [src.type]")
+=======
+ ASSERT(abstract_type != type && !isnull(associated_typepath), "associated_typepath null - please set it! occurred on: [src.type]")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Returns a list of savefile_keys derived from the preference typepaths in [customization_options]. Used in quirks middleware to supply the preferences to render.
/datum/quirk_constant_data/proc/get_customization_data()
@@ -47,7 +51,11 @@ GLOBAL_LIST_INIT_TYPED(all_quirk_constant_data, /datum/quirk_constant_data, gene
var/datum/preference/pref_instance = GLOB.preference_entries[pref_type]
if (isnull(pref_instance))
stack_trace("get_customization_data was called before instantiation of [pref_type]!")
+<<<<<<< HEAD
continue // just in case its a fluke and its only this one thats not instantiated, we'll check the other pref entries
+=======
+ continue // just in case its a fluke and its only this one that's not instantiated, we'll check the other pref entries
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
customization_data += pref_instance.savefile_key
diff --git a/code/datums/quirks/negative_quirks/claustrophobia.dm b/code/datums/quirks/negative_quirks/claustrophobia.dm
index bafdcd656ff..994c0135730 100644
--- a/code/datums/quirks/negative_quirks/claustrophobia.dm
+++ b/code/datums/quirks/negative_quirks/claustrophobia.dm
@@ -1,6 +1,10 @@
/datum/quirk/claustrophobia
name = "Claustrophobia"
+<<<<<<< HEAD
desc = "You are terrified of small spaces. If you are placed inside any container, locker, or machinery, a panic attack sets in and you struggle to breathe." // SKYRAT EDIT CHANGE - ORIGINAL: desc = "You are terrified of small spaces and certain jolly figures. If you are placed inside any container, locker, or machinery, a panic attack sets in and you struggle to breathe."
+=======
+ desc = "You are terrified of small spaces and certain jolly figures. If you are placed inside any container, locker, or machinery, a panic attack sets in and you struggle to breathe."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon = FA_ICON_BOX_OPEN
value = -4
medical_record_text = "Patient demonstrates a fear of tight spaces."
@@ -20,12 +24,18 @@
var/nick_spotted = FALSE
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL START
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/mob/living/carbon/human/possible_claus in view(5, quirk_holder))
if(evaluate_jolly_levels(possible_claus))
nick_spotted = TRUE
break
+<<<<<<< HEAD
SKYRAT EDIT REMOVAL END */
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!nick_spotted && isturf(quirk_holder.loc))
quirk_holder.clear_mood_event("claustrophobia")
diff --git a/code/datums/quirks/negative_quirks/cursed.dm b/code/datums/quirks/negative_quirks/cursed.dm
index 4b99ff850b8..b5738b6110a 100644
--- a/code/datums/quirks/negative_quirks/cursed.dm
+++ b/code/datums/quirks/negative_quirks/cursed.dm
@@ -1,5 +1,8 @@
+<<<<<<< HEAD
/*
// SKYRAT EDIT REMOVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/quirk/cursed
name = "Cursed"
desc = "You are cursed with bad luck. You are much more likely to suffer from accidents and mishaps. When it rains, it pours."
@@ -13,5 +16,8 @@
/datum/quirk/cursed/add(client/client_source)
quirk_holder.AddComponent(/datum/component/omen/quirk)
+<<<<<<< HEAD
*/
// SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/quirks/neutral_quirks/colorist.dm b/code/datums/quirks/neutral_quirks/colorist.dm
index f82fd5bf6fe..c59fe7ee081 100644
--- a/code/datums/quirks/neutral_quirks/colorist.dm
+++ b/code/datums/quirks/neutral_quirks/colorist.dm
@@ -1,4 +1,7 @@
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/quirk/item_quirk/colorist
name = "Colorist"
desc = "You like carrying around a hair dye spray to quickly apply color patterns to your hair."
@@ -9,5 +12,8 @@
/datum/quirk/item_quirk/colorist/add_unique(client/client_source)
give_item_to_holder(/obj/item/dyespray, list(LOCATION_BACKPACK = ITEM_SLOT_BACKPACK, LOCATION_HANDS = ITEM_SLOT_HANDS))
+<<<<<<< HEAD
*/
//SKYRAT EDIT REMOVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/datums/quirks/neutral_quirks/transhumanist.dm b/code/datums/quirks/neutral_quirks/transhumanist.dm
index ea6494a6b32..523bd913af8 100644
--- a/code/datums/quirks/neutral_quirks/transhumanist.dm
+++ b/code/datums/quirks/neutral_quirks/transhumanist.dm
@@ -127,10 +127,17 @@
else if(isorgan(new_part))
var/obj/item/organ/new_organ = new_part
old_part = human_holder.get_organ_slot(new_organ.slot)
+<<<<<<< HEAD
if(new_organ.Insert(human_holder, special = TRUE))
old_part.moveToNullspace()
STOP_PROCESSING(SSobj, old_part)
slot_string = new_organ.name
+=======
+ new_organ.Insert(human_holder, special = TRUE)
+ old_part.moveToNullspace()
+ STOP_PROCESSING(SSobj, old_part)
+ slot_string = new_organ.name
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/quirk/transhumanist/post_add()
if(!slot_string)
diff --git a/code/datums/quirks/positive_quirks/empath.dm b/code/datums/quirks/positive_quirks/empath.dm
index 3379f8a97c4..57f10c08c9e 100644
--- a/code/datums/quirks/positive_quirks/empath.dm
+++ b/code/datums/quirks/positive_quirks/empath.dm
@@ -2,7 +2,11 @@
name = "Empath"
desc = "Whether it's a sixth sense or careful study of body language, it only takes you a quick glance at someone to understand how they feel."
icon = FA_ICON_SMILE_BEAM
+<<<<<<< HEAD
value = 6 // SKYRAT EDIT CHANGE - Quirk Rebalance - Original: value = 8
+=======
+ value = 8
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mob_trait = TRAIT_EMPATH
gain_text = span_notice("You feel in tune with those around you.")
lose_text = span_danger("You feel isolated from others.")
diff --git a/code/datums/quirks/positive_quirks/settler.dm b/code/datums/quirks/positive_quirks/settler.dm
index 37eff5cb03a..b4bede4c1d3 100644
--- a/code/datums/quirks/positive_quirks/settler.dm
+++ b/code/datums/quirks/positive_quirks/settler.dm
@@ -25,10 +25,14 @@
/datum/quirk/item_quirk/settler/add(client/client_source)
var/mob/living/carbon/human/human_quirkholder = quirk_holder
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN - This is so Teshari don't get the height decrease.
if(!isteshari(human_quirkholder))
human_quirkholder.set_mob_height(HUMAN_HEIGHT_SHORTEST)
//SKYRAT EDIT END
+=======
+ human_quirkholder.set_mob_height(HUMAN_HEIGHT_SHORTEST)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
human_quirkholder.add_movespeed_modifier(/datum/movespeed_modifier/settler)
human_quirkholder.physiology.hunger_mod *= 0.5 //good for you, shortass, you don't get hungry nearly as often
human_quirkholder.add_traits(settler_traits, QUIRK_TRAIT)
diff --git a/code/datums/quirks/positive_quirks/spacer.dm b/code/datums/quirks/positive_quirks/spacer.dm
index 47510703f5d..fbdcb8ae945 100644
--- a/code/datums/quirks/positive_quirks/spacer.dm
+++ b/code/datums/quirks/positive_quirks/spacer.dm
@@ -4,13 +4,21 @@
/datum/quirk/spacer_born
name = "Spacer"
desc = "You were born in space, and have never known the comfort of a planet's gravity. Your body has adapted to this. \
+<<<<<<< HEAD
You are more comfortable in zero and artifical gravity and are more resistant to the effects of space, \
+=======
+ You are more comfortable in zero and artificial gravity and are more resistant to the effects of space, \
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
but travelling to a planet's surface for an extended period of time will make you feel sick."
gain_text = span_notice("You feel at home in space.")
lose_text = span_danger("You feel homesick.")
icon = FA_ICON_USER_ASTRONAUT
value = 7
+<<<<<<< HEAD
quirk_flags = QUIRK_CHANGES_APPEARANCE //SKYRAT EDIT CHANGE - ORIGINAL: quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_CHANGES_APPEARANCE
+=======
+ quirk_flags = QUIRK_HUMAN_ONLY|QUIRK_CHANGES_APPEARANCE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
medical_record_text = "Patient is well-adapted to non-terrestrial environments."
mail_goodies = list(
/obj/item/storage/pill_bottle/ondansetron,
diff --git a/code/datums/quirks/positive_quirks/spiritual.dm b/code/datums/quirks/positive_quirks/spiritual.dm
index b08fe8b60c6..ad4d1482da2 100644
--- a/code/datums/quirks/positive_quirks/spiritual.dm
+++ b/code/datums/quirks/positive_quirks/spiritual.dm
@@ -2,7 +2,11 @@
name = "Spiritual"
desc = "You hold a spiritual belief, whether in God, nature or the arcane rules of the universe. You gain comfort from the presence of holy people, and believe that your prayers are more special than others. Being in the chapel makes you happy."
icon = FA_ICON_BIBLE
+<<<<<<< HEAD
value = 2 /// SKYRAT EDIT - Quirk Rebalance - Original: value = 4
+=======
+ value = 4
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mob_trait = TRAIT_SPIRITUAL
gain_text = span_notice("You have faith in a higher power.")
lose_text = span_danger("You lose faith!")
diff --git a/code/datums/records/manifest.dm b/code/datums/records/manifest.dm
index ddb92ea7629..d71a26b0dc7 100644
--- a/code/datums/records/manifest.dm
+++ b/code/datums/records/manifest.dm
@@ -15,7 +15,11 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
if(readied_player.new_character)
log_manifest(readied_player.ckey, readied_player.new_character.mind, readied_player.new_character)
if(ishuman(readied_player.new_character))
+<<<<<<< HEAD
inject(readied_player.new_character, readied_player.client) // SKYRAT EDIT - RP Records - ORIGINAL: inject(readied_player.new_character)
+=======
+ inject(readied_player.new_character)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CHECK_TICK
/// Gets the current manifest.
@@ -98,7 +102,11 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
/// Injects a record into the manifest.
+<<<<<<< HEAD
/datum/manifest/proc/inject(mob/living/carbon/human/person, client/person_client) // SKYRAT EDIT - RP Records - ORIGINAL: /datum/manifest/proc/inject(mob/living/carbon/human/person)
+=======
+/datum/manifest/proc/inject(mob/living/carbon/human/person)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
set waitfor = FALSE
if(!(person.mind?.assigned_role.job_flags & JOB_CREW_MANIFEST))
return
@@ -116,6 +124,7 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
var/datum/dna/stored/record_dna = new()
person.dna.copy_dna(record_dna)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - ALTERNATIVE_JOB_TITLES
// The alt job title, if user picked one, or the default
var/chosen_assignment = person_client?.prefs.alt_job_titles[assignment] || assignment
@@ -124,6 +133,10 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
var/datum/record/locked/lockfile = new(
age = person.age,
chrono_age = person.chrono_age, // SKYRAT EDIT ADDITION - Chronological age
+=======
+ var/datum/record/locked/lockfile = new(
+ age = person.age,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blood_type = record_dna.blood_type,
character_appearance = character_appearance,
dna_string = record_dna.unique_enzymes,
@@ -131,7 +144,11 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
gender = person_gender,
initial_rank = assignment,
name = person.real_name,
+<<<<<<< HEAD
rank = chosen_assignment, // SKYRAT EDIT - Alt job titles - ORIGINAL: rank = assignment,
+=======
+ rank = assignment,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
species = record_dna.species.name,
trim = assignment,
// Locked specifics
@@ -141,7 +158,10 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
new /datum/record/crew(
age = person.age,
+<<<<<<< HEAD
chrono_age = person.chrono_age, // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blood_type = record_dna.blood_type,
character_appearance = character_appearance,
dna_string = record_dna.unique_enzymes,
@@ -149,7 +169,11 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
gender = person_gender,
initial_rank = assignment,
name = person.real_name,
+<<<<<<< HEAD
rank = chosen_assignment, // SKYRAT EDIT - Alt job titles - ORIGINAL: rank = assignment,
+=======
+ rank = assignment,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
species = record_dna.species.name,
trim = assignment,
// Crew specific
@@ -159,6 +183,7 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
minor_disabilities = person.get_quirk_string(FALSE, CAT_QUIRK_MINOR_DISABILITY, from_scan = TRUE),
minor_disabilities_desc = person.get_quirk_string(TRUE, CAT_QUIRK_MINOR_DISABILITY),
quirk_notes = person.get_quirk_string(TRUE, CAT_QUIRK_NOTES),
+<<<<<<< HEAD
// SKYRAT EDIT START - RP Records
background_information = person_client?.prefs.read_preference(/datum/preference/text/background) || "",
exploitable_information = person_client?.prefs.read_preference(/datum/preference/text/exploitable) || "",
@@ -166,6 +191,8 @@ GLOBAL_DATUM_INIT(manifest, /datum/manifest, new)
past_medical_records = person_client?.prefs.read_preference(/datum/preference/text/medical) || "",
past_security_records = person_client?.prefs.read_preference(/datum/preference/text/security) || "",
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/// Edits the rank and trim of the found record.
diff --git a/code/datums/records/record.dm b/code/datums/records/record.dm
index 7c1e6be5568..53d972b341e 100644
--- a/code/datums/records/record.dm
+++ b/code/datums/records/record.dm
@@ -29,7 +29,10 @@
/datum/record/New(
age = 18,
+<<<<<<< HEAD
chrono_age = 18, // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blood_type = "?",
character_appearance,
dna_string = "Unknown",
@@ -43,7 +46,10 @@
voice = "?????",
)
src.age = age
+<<<<<<< HEAD
src.chrono_age = chrono_age // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
src.blood_type = blood_type
src.character_appearance = character_appearance
src.dna_string = dna_string
@@ -91,7 +97,10 @@
/datum/record/crew/New(
age = 18,
+<<<<<<< HEAD
chrono_age = 18, // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blood_type = "?",
character_appearance,
dna_string = "Unknown",
@@ -111,6 +120,7 @@
physical_status = PHYSICAL_ACTIVE,
mental_status = MENTAL_STABLE,
quirk_notes,
+<<<<<<< HEAD
// SKYRAT EDIT START - RP Records
background_information = "",
exploitable_information = "",
@@ -118,6 +128,8 @@
past_medical_records = "",
past_security_records = "",
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
. = ..()
src.lock_ref = lock_ref
@@ -128,6 +140,7 @@
src.physical_status = physical_status
src.mental_status = mental_status
src.quirk_notes = quirk_notes
+<<<<<<< HEAD
// SKYRAT EDIT START - RP Records
src.background_information = background_information
src.exploitable_information = exploitable_information
@@ -135,6 +148,8 @@
src.past_medical_records = past_medical_records
src.past_security_records = past_security_records
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOB.manifest.general += src
@@ -156,7 +171,10 @@
/datum/record/locked/New(
age = 18,
+<<<<<<< HEAD
chrono_age = 18, // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blood_type = "?",
character_appearance,
dna_string = "Unknown",
@@ -268,12 +286,16 @@
var/final_paper_text = "
SR-[print_count]: [header] "
final_paper_text += "Name: [name] Gender: [gender] Age: [age] "
+<<<<<<< HEAD
final_paper_text += "Chronological Age: [chrono_age] " // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(alias != name)
final_paper_text += "Alias: [alias] "
final_paper_text += "Species: [species] Fingerprint: [fingerprint] Wanted Status: [wanted_status] "
+<<<<<<< HEAD
//SKYRAT EDIT ADD - RP RECORDS
if(past_general_records != "")
final_paper_text += "General Records: "
@@ -287,6 +309,10 @@
final_paper_text += " [past_security_records] "
//SKYRAT EDIT END
+=======
+ final_paper_text += "Security Data "
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
final_paper_text += "Crimes: "
final_paper_text += {"
@@ -332,10 +358,14 @@
final_paper_text += "- [description] "
printed_paper.name = "SR-[print_count] '[name]'"
+<<<<<<< HEAD
/// SKYRAT EDIT ADD - TRUE
printed_paper.add_raw_text(final_paper_text,TRUE)
/// SKYRAT EDIT ADD END
+=======
+ printed_paper.add_raw_text(final_paper_text)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
printed_paper.update_appearance()
return printed_paper
diff --git a/code/datums/ruins/icemoon.dm b/code/datums/ruins/icemoon.dm
index 529a4a144ca..874a9835dc0 100644
--- a/code/datums/ruins/icemoon.dm
+++ b/code/datums/ruins/icemoon.dm
@@ -48,6 +48,35 @@
id = "abandoned_homestead"
description = "This homestead was once host to a happy homesteading family. It's now host to hungry bears."
suffix = "icemoon_underground_abandoned_homestead.dmm"
+<<<<<<< HEAD
+=======
+
+/datum/map_template/ruin/icemoon/entemology
+ name = "Ice-Ruin Insect Research Station"
+ id = "bug_habitat"
+ description = "An independently funded research outpost, long abandoned. Their mission, to boldly go where no insect life would ever live, ever, and look for bugs."
+ suffix = "icemoon_surface_bughabitat.dmm"
+
+/datum/map_template/ruin/icemoon/pizza
+ name = "Ice-Ruin Moffuchi's Pizzeria"
+ id = "pizzeria"
+ description = "Moffuchi's Family Pizzeria chain has a reputation for providing affordable artisanal meals of questionable edibility. This particular pizzeria seems to have been abandoned for some time."
+ suffix = "icemoon_surface_pizza.dmm"
+
+/datum/map_template/ruin/icemoon/frozen_phonebooth
+ name = "Ice-Ruin Frozen Phonebooth"
+ id = "frozen_phonebooth"
+ description = "A venture by nanotrasen to help popularize the use of holopads. This one was sent to a icemoon."
+ suffix = "icemoon_surface_phonebooth.dmm"
+
+/datum/map_template/ruin/icemoon/smoking_room
+ name = "Ice-Ruin Smoking Room"
+ id = "smoking_room"
+ description = "Here lies Charles Morlbaro. He died the way he lived."
+ suffix = "icemoon_surface_smoking_room.dmm"
+
+// above and below ground together
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/map_template/ruin/icemoon/entemology
name = "Ice-Ruin Insect Research Station"
diff --git a/code/datums/ruins/space.dm b/code/datums/ruins/space.dm
index 26981c4b176..d8e4cda86ec 100644
--- a/code/datums/ruins/space.dm
+++ b/code/datums/ruins/space.dm
@@ -179,7 +179,11 @@
/datum/map_template/ruin/space/spacehotel
id = "spacehotel"
+<<<<<<< HEAD
suffix = "spacehotel_skyrat.dmm" // SKYRAT EDIT CHANGE - ORIGINAL: suffix = "spacehotel.dmm"
+=======
+ suffix = "spacehotel.dmm"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "Space-Ruin The Twin-Nexus Hotel"
description = "An interstellar hotel, where the weary spaceman can rest their head and relax, assured that the residental staff will not murder them in their sleep. Probably."
@@ -286,6 +290,7 @@
// SKYRAT EDIT CHANGE START -- Reworked whiteship ruin
/* SKYRAT EDIT CHANGE -- ORIGINAL COMMENTED OUT
/datum/map_template/ruin/space/whiteshipruin_box
+<<<<<<< HEAD
id = "whiteshipruin_box"
suffix = "whiteshipruin_box.dmm"*/
@@ -293,6 +298,10 @@ suffix = "whiteshipruin_box.dmm"*/
id = "whiteshipruin_box_skyrat"
suffix = "whiteshipruin_box_skyrat.dmm"
// SKYRAT EDIT CHANGE END
+=======
+ id = "whiteshipruin_box"
+ suffix = "whiteshipruin_box.dmm"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "Space-Ruin NT Medical Ship"
description = "An ancient ship, said to be among the first discovered derelicts near Space Station 13 that was still in working order. \
Aged and deprecated by time, this relic of a vessel is now broken beyond repair."
diff --git a/code/datums/shuttles/emergency.dm b/code/datums/shuttles/emergency.dm
index 4c1dd016680..b8e6865511b 100644
--- a/code/datums/shuttles/emergency.dm
+++ b/code/datums/shuttles/emergency.dm
@@ -1,6 +1,10 @@
#define EMAG_LOCKED_SHUTTLE_COST (CARGO_CRATE_VALUE * 50)
+<<<<<<< HEAD
/datum/map_template/shuttle/emergency // SKYRAT EDIT OVERRIDE - OVERRIDDEN IN ADVANCED_SHUTTLES - shuttles.dm
+=======
+/datum/map_template/shuttle/emergency
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
port_id = "emergency"
name = "Base Shuttle Template (Emergency)"
///assoc list of shuttle events to add to this shuttle on spawn (typepath = weight)
@@ -130,7 +134,10 @@
credit_cost = EMAG_LOCKED_SHUTTLE_COST * 1.8
movement_force = list("KNOCKDOWN" = 3, "THROW" = 5)
occupancy_limit = "70"
+<<<<<<< HEAD
who_can_purchase = null //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/map_template/shuttle/emergency/luxury
suffix = "luxury"
diff --git a/code/datums/sprite_accessories.dm b/code/datums/sprite_accessories.dm
index 5f9869b7dda..c88b2a9ee53 100644
--- a/code/datums/sprite_accessories.dm
+++ b/code/datums/sprite_accessories.dm
@@ -34,8 +34,11 @@
* This is the source that this accessory will get its color from. Default is MUTCOLOR, but can also be HAIR, FACEHAIR, EYECOLOR and 0 if none.
*/
var/color_src = MUTANT_COLOR
+<<<<<<< HEAD
/// Decides if this sprite has an "inner" part, such as the fleshy parts on ears.
var/hasinner = FALSE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Is this part locked from roundstart selection? Used for parts that apply effects.
var/locked = FALSE
/// Should we center the sprite?
@@ -1893,7 +1896,10 @@
/datum/sprite_accessory/ears/cat
name = "Cat"
icon_state = "cat"
+<<<<<<< HEAD
hasinner = TRUE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
color_src = HAIR_COLOR
/datum/sprite_accessory/ears/cat/big
@@ -1920,7 +1926,10 @@
icon = 'icons/mob/human/fox_features.dmi'
name = "Fox"
icon_state = "fox"
+<<<<<<< HEAD
hasinner = TRUE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
color_src = HAIR_COLOR
locked = TRUE
@@ -2083,10 +2092,13 @@
icon = 'icons/mob/human/species/lizard/lizard_spines.dmi'
em_block = TRUE
+<<<<<<< HEAD
/datum/sprite_accessory/spines/none
name = SPRITE_ACCESSORY_NONE
icon_state = "none"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/sprite_accessory/tail_spines
icon = 'icons/mob/human/species/lizard/lizard_spines.dmi'
em_block = TRUE
@@ -2131,6 +2143,7 @@
name = "Aquatic"
icon_state = "aqua"
+<<<<<<< HEAD
/datum/sprite_accessory/legs //legs are a special case, they aren't actually sprite_accessories but are updated with them.
icon = null //These datums exist for selecting legs on preference, and little else
em_block = TRUE
@@ -2141,6 +2154,8 @@
/datum/sprite_accessory/legs/digitigrade_lizard
name = DIGITIGRADE_LEGS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/sprite_accessory/caps
icon = 'icons/mob/human/species/mush_cap.dmi'
color_src = HAIR_COLOR
diff --git a/code/datums/station_alert.dm b/code/datums/station_alert.dm
index 5b969afb005..ff4a00d51dd 100644
--- a/code/datums/station_alert.dm
+++ b/code/datums/station_alert.dm
@@ -61,7 +61,11 @@
data["alarms"] += list(nominal_category)
return data
+<<<<<<< HEAD
/datum/station_alert/ui_act(action, params)
+=======
+/datum/station_alert/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/datums/station_traits/_station_trait.dm b/code/datums/station_traits/_station_trait.dm
index bae9540fa25..f4e89b6b256 100644
--- a/code/datums/station_traits/_station_trait.dm
+++ b/code/datums/station_traits/_station_trait.dm
@@ -92,7 +92,10 @@ GLOBAL_LIST_EMPTY(lobby_station_traits)
/datum/station_trait/proc/can_display_lobby_button(client/player)
return sign_up_button && !SSticker.HasRoundStarted()
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Apply any additional handling we need to our lobby button
/datum/station_trait/proc/setup_lobby_button(atom/movable/screen/lobby/button/sign_up/lobby_button)
SHOULD_CALL_PARENT(TRUE)
@@ -117,7 +120,10 @@ GLOBAL_LIST_EMPTY(lobby_station_traits)
/datum/station_trait/proc/on_lobby_button_destroyed(atom/movable/screen/lobby/button/sign_up/lobby_button)
SIGNAL_HANDLER
lobby_buttons -= lobby_button
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Proc ran when round starts. Use this for roundstart effects. By default we clean up our buttons here.
/datum/station_trait/proc/on_round_start()
diff --git a/code/datums/station_traits/job_traits.dm b/code/datums/station_traits/job_traits.dm
index 4ac95ced846..0236d476004 100644
--- a/code/datums/station_traits/job_traits.dm
+++ b/code/datums/station_traits/job_traits.dm
@@ -29,7 +29,11 @@
SSstation.antag_restricted_roles += job_to_add::title
blacklist += subtypesof(/datum/station_trait/job) - type // All but ourselves
RegisterSignal(SSdcs, COMSIG_GLOB_PRE_JOBS_ASSIGNED, PROC_REF(pre_jobs_assigned))
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/station_trait/job/setup_lobby_button(atom/movable/screen/lobby/button/sign_up/lobby_button)
RegisterSignal(lobby_button, COMSIG_ATOM_UPDATE_OVERLAYS, PROC_REF(on_lobby_button_update_overlays))
lobby_button.desc = button_desc
@@ -51,7 +55,11 @@
/datum/station_trait/job/proc/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
SIGNAL_HANDLER
overlays += LAZYFIND(lobby_candidates, lobby_button.get_mob()) ? "tick" : "cross"
+<<<<<<< HEAD
*/
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Called before we start assigning roles, assign ours first
/datum/station_trait/job/proc/pre_jobs_assigned()
SIGNAL_HANDLER
@@ -89,11 +97,18 @@
. = ..()
RegisterSignal(SSatoms, COMSIG_SUBSYSTEM_POST_INITIALIZE, PROC_REF(replace_cargo))
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
/datum/station_trait/job/cargorilla/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
. = ..()
overlays += LAZYFIND(lobby_candidates, lobby_button.get_mob()) ? "gorilla_on" : "gorilla_off"
*/
+=======
+/datum/station_trait/job/cargorilla/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
+ . = ..()
+ overlays += LAZYFIND(lobby_candidates, lobby_button.get_mob()) ? "gorilla_on" : "gorilla_off"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Remove the cargo equipment and personnel that are being replaced by a gorilla.
/datum/station_trait/job/cargorilla/proc/replace_cargo(datum/source)
SIGNAL_HANDLER
@@ -122,11 +137,19 @@
/datum/station_trait/job/bridge_assistant/New()
. = ..()
RegisterSignal(SSatoms, COMSIG_SUBSYSTEM_POST_INITIALIZE, PROC_REF(add_coffeemaker))
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
/datum/station_trait/job/bridge_assistant/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
. = ..()
overlays += "bridge_assistant"
*/
+=======
+
+/datum/station_trait/job/bridge_assistant/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
+ . = ..()
+ overlays += "bridge_assistant"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Creates a coffeemaker in the bridge, if we don't have one yet.
/datum/station_trait/job/bridge_assistant/proc/add_coffeemaker(datum/source)
SIGNAL_HANDLER
@@ -173,11 +196,17 @@
can_roll_antag = CAN_ROLL_PROTECTED
job_to_add = /datum/job/veteran_advisor
+<<<<<<< HEAD
/* SKYRAT EDIT -- REMOVAL -- We handle the lobby a bit differently for time being
/datum/station_trait/job/veteran_advisor/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
. = ..()
overlays += "veteran_advisor"
*/
+=======
+/datum/station_trait/job/veteran_advisor/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
+ . = ..()
+ overlays += "veteran_advisor"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/station_trait/job/human_ai
name = "Human AI"
@@ -200,11 +229,17 @@
UnregisterSignal(SSatoms, COMSIG_SUBSYSTEM_POST_INITIALIZE)
return ..()
+<<<<<<< HEAD
/* SKYRAT EDIT - REMOVAL
/datum/station_trait/job/human_ai/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
. = ..()
overlays += LAZYFIND(lobby_candidates, lobby_button.get_mob()) ? "human_ai_on" : "human_ai_off"
*/
+=======
+/datum/station_trait/job/human_ai/on_lobby_button_update_overlays(atom/movable/screen/lobby/button/sign_up/lobby_button, list/overlays)
+ . = ..()
+ overlays += LAZYFIND(lobby_candidates, lobby_button.get_mob()) ? "human_ai_on" : "human_ai_off"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/station_trait/job/human_ai/proc/remove_ai_job(datum/source)
SIGNAL_HANDLER
diff --git a/code/datums/station_traits/negative_traits.dm b/code/datums/station_traits/negative_traits.dm
index 14300bedf59..39485e37380 100644
--- a/code/datums/station_traits/negative_traits.dm
+++ b/code/datums/station_traits/negative_traits.dm
@@ -507,11 +507,14 @@
var/list/shielding = list()
/datum/station_trait/nebula/hostile/process(seconds_per_tick)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
if(!storms_enabled)
get_shielding_level() // So shields still produce tritium
return
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
calculate_nebula_strength()
apply_nebula_effect(nebula_intensity - get_shielding_level())
@@ -577,7 +580,11 @@
threat_reduction = 30
dynamic_threat_id = "Radioactive Nebula"
+<<<<<<< HEAD
intensity_increment_time = 10 MINUTES // SKYRAT EDIT longer shield duration - ORIGINAL: intensity_increment_time = 5 MINUTES /
+=======
+ intensity_increment_time = 5 MINUTES
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
maximum_nebula_intensity = 1 HOURS + 40 MINUTES
nebula_layer = /atom/movable/screen/parallax_layer/random/space_gas/radioactive
@@ -699,7 +706,10 @@
new /obj/effect/pod_landingzone (get_safe_random_station_turf(), new /obj/structure/closet/supplypod/centcompod (), new /obj/machinery/nebula_shielding/emergency/radiation ())
/datum/station_trait/nebula/hostile/radiation/send_instructions()
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL START - No more radiation storms on station
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/obj/machinery/nebula_shielding/shielder = /obj/machinery/nebula_shielding/radiation
var/obj/machinery/gravity_generator/main/innate_shielding = /obj/machinery/gravity_generator/main
//How long do we have untill the first shielding unit needs to be up?
@@ -718,12 +728,15 @@
You have [deadline] before the nebula enters the station. \
Every shielding unit will provide an additional [shielder_time] of protection, fully protecting the station with [max_shielders] shielding units.
"}
+<<<<<<< HEAD
SKYRAT EDIT REMOVAL END */
// SKYRAT EDIT CHANGE START - ORIGINAL: See above
var/announcement = {"Your station has been constructed inside a radioactive nebula. \
Standard spacesuits will not protect against the nebula and using them is strongly discouraged.
"}
// SKYRAT EDIT CHANGE END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
priority_announce(announcement, sound = 'sound/misc/notice1.ogg')
diff --git a/code/datums/station_traits/neutral_traits.dm b/code/datums/station_traits/neutral_traits.dm
index 4e00158df7d..18db6ef37f4 100644
--- a/code/datums/station_traits/neutral_traits.dm
+++ b/code/datums/station_traits/neutral_traits.dm
@@ -396,6 +396,10 @@
targets += pick_n_take(roundstart_closets)
GLOB.eigenstate_manager.create_new_link(targets)
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define PRO_SKUB "pro-skub"
#define ANTI_SKUB "anti-skub"
#define SKUB_IDFC "i don't frikkin' care"
@@ -415,7 +419,10 @@
. = ..()
RegisterSignal(SSdcs, COMSIG_GLOB_JOB_AFTER_SPAWN, PROC_REF(on_job_after_spawn))
+<<<<<<< HEAD
/* SKYRAT EDIT -- REMOVAL -- I swear, we need to update our UI in near future to account for the new buttons and shit
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/station_trait/skub/setup_lobby_button(atom/movable/screen/lobby/button/sign_up/lobby_button)
RegisterSignal(lobby_button, COMSIG_ATOM_UPDATE_OVERLAYS, PROC_REF(on_lobby_button_update_overlays))
lobby_button.desc = "Are you pro-skub or anti-skub? Click to cycle through pro-skub, anti-skub, random and neutral."
@@ -470,7 +477,11 @@
overlays += "neutral_skub"
if(RANDOM_SKUB)
overlays += "random_skub"
+<<<<<<< HEAD
*/
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/station_trait/skub/proc/on_job_after_spawn(datum/source, datum/job/job, mob/living/spawned, client/player_client)
SIGNAL_HANDLER
@@ -479,7 +490,11 @@
return
if((skub_stance == RANDOM_SKUB && prob(50)) || skub_stance == PRO_SKUB)
+<<<<<<< HEAD
var/obj/item/storage/box/skub/boxie = new(spawned.loc)
+=======
+ var/obj/item/storage/box/stickers/skub/boxie = new(spawned.loc)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
spawned.equip_to_slot_if_possible(boxie, ITEM_SLOT_BACKPACK, indirect_action = TRUE)
if(ishuman(spawned))
var/obj/item/clothing/suit/costume/wellworn_shirt/skub/shirt = new(spawned.loc)
@@ -496,6 +511,7 @@
shirt.forceMove(boxie)
/// A box containing a skub, for easier carry because skub is a bulky item.
+<<<<<<< HEAD
/obj/item/storage/box/skub
name = "skub box"
desc = "A box to store your skub and pro-skub shirt in. A label on the back reads: \"Skubtide, Stationwide\"."
@@ -507,13 +523,35 @@
atom_storage.exception_hold = typecacheof(list(/obj/item/skub, /obj/item/clothing/suit/costume/wellworn_shirt/skub))
/obj/item/storage/box/skub/PopulateContents()
+=======
+/obj/item/storage/box/stickers/skub
+ name = "skub fan pack"
+ desc = "A vinyl pouch to store your skub and pro-skub shirt in. A label on the back reads: \"Skubtide, Stationwide\"."
+ icon_state = "skubpack"
+ illustration = "label_skub"
+ w_class = WEIGHT_CLASS_SMALL
+
+/obj/item/storage/box/stickers/skub/Initialize(mapload)
+ . = ..()
+ atom_storage.max_slots = 3
+ atom_storage.exception_hold = typecacheof(list(/obj/item/skub, /obj/item/clothing/suit/costume/wellworn_shirt/skub))
+
+/obj/item/storage/box/stickers/skub/PopulateContents()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/skub(src)
new /obj/item/sticker/skub(src)
new /obj/item/sticker/skub(src)
/obj/item/storage/box/stickers/anti_skub
+<<<<<<< HEAD
name = "anti-skub stickers box"
desc = "The enemy may have been given a skub and a shirt, but I've more stickers! Plus the box can hold my anti-skub shirt."
+=======
+ name = "anti-skub stickers pack"
+ desc = "The enemy may have been given a skub and a shirt, but I've got more stickers! Plus the pack can hold my anti-skub shirt."
+ icon_state = "skubpack"
+ illustration = "label_anti_skub"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/stickers/anti_skub/Initialize(mapload)
. = ..()
diff --git a/code/datums/station_traits/positive_traits.dm b/code/datums/station_traits/positive_traits.dm
index dfa4fc2ce9c..c6183c95073 100644
--- a/code/datums/station_traits/positive_traits.dm
+++ b/code/datums/station_traits/positive_traits.dm
@@ -293,6 +293,7 @@
/datum/job/shaft_miner = /obj/item/organ/internal/monster_core/rush_gland,
/datum/job/station_engineer = /obj/item/organ/internal/cyberimp/arm/toolset,
/datum/job/warden = /obj/item/organ/internal/cyberimp/eyes/hud/security,
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - MODULAR JOBS
/datum/job/blueshield = /obj/item/organ/internal/cyberimp/brain/anti_stun,
/datum/job/nanotrasen_consultant = /obj/item/organ/internal/heart/cybernetic/tier3,
@@ -305,6 +306,8 @@
/datum/job/engineering_guard = /obj/item/organ/internal/cyberimp/arm/flash,
/datum/job/telecomms_specialist = /obj/item/organ/internal/ears/cybernetic/xray,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/datum/station_trait/cybernetic_revolution/New()
diff --git a/code/datums/status_effects/debuffs/debuffs.dm b/code/datums/status_effects/debuffs/debuffs.dm
index 72f2d0c757b..51b1e003e77 100644
--- a/code/datums/status_effects/debuffs/debuffs.dm
+++ b/code/datums/status_effects/debuffs/debuffs.dm
@@ -1,11 +1,20 @@
/// The damage healed per tick while sleeping without any modifiers
#define HEALING_SLEEP_DEFAULT 0.2
+<<<<<<< HEAD
/// The sleep healing multipler for organ passive healing (since organs heal slowly)
#define HEALING_SLEEP_ORGAN_MULTIPLIER 5
/// The sleep multipler for fitness xp conversion
#define SLEEP_QUALITY_WORKOUT_MULTIPLER 10
//Largely negative status effects go here, even if they have small benificial effects
+=======
+/// The sleep healing multiplier for organ passive healing (since organs heal slowly)
+#define HEALING_SLEEP_ORGAN_MULTIPLIER 5
+/// The sleep multiplier for fitness xp conversion
+#define SLEEP_QUALITY_WORKOUT_MULTIPLER 10
+
+//Largely negative status effects go here, even if they have small beneficial effects
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//STUN EFFECTS
/datum/status_effect/incapacitating
tick_interval = -1
@@ -280,8 +289,12 @@
. = ..()
if(!.)
return
+<<<<<<< HEAD
owner.add_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED, TRAIT_STASIS, TRAIT_ANALGESIA), TRAIT_STATUS_EFFECT(id)) // SKYRAT EDIT CHANGE - ORIGINAL: owner.add_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED, TRAIT_STASIS), TRAIT_STATUS_EFFECT(id))
owner.throw_alert("stasis numbed", /atom/movable/screen/alert/numbed) //SKYRAT EDIT ADDITION - STASIS APPLIES NUMBED
+=======
+ owner.add_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED, TRAIT_STASIS), TRAIT_STATUS_EFFECT(id))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
owner.add_filter("stasis_status_ripple", 2, list("type" = "ripple", "flags" = WAVE_BOUNDED, "radius" = 0, "size" = 2))
var/filter = owner.get_filter("stasis_status_ripple")
animate(filter, radius = 0, time = 0.2 SECONDS, size = 2, easing = JUMP_EASING, loop = -1, flags = ANIMATION_PARALLEL)
@@ -292,12 +305,18 @@
/datum/status_effect/grouped/stasis/tick(seconds_between_ticks)
update_time_of_death()
+<<<<<<< HEAD
if(owner.stat >= UNCONSCIOUS) //SKYRAT EDIT START - STASIS KEEPS SLEEP GOING
owner.Sleeping(15 SECONDS) //SKYRAT EDIT END
/datum/status_effect/grouped/stasis/on_remove()
owner.remove_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED, TRAIT_STASIS, TRAIT_ANALGESIA), TRAIT_STATUS_EFFECT(id)) // SKYRAT EDIT CHANGE - ORIGINAL: owner.remove_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED, TRAIT_STASIS), TRAIT_STATUS_EFFECT(id))
owner.clear_alert("stasis numbed") //SKYRAT EDIT ADDITION - STASIS APPLIED NUMBED
+=======
+
+/datum/status_effect/grouped/stasis/on_remove()
+ owner.remove_traits(list(TRAIT_IMMOBILIZED, TRAIT_HANDS_BLOCKED, TRAIT_STASIS), TRAIT_STATUS_EFFECT(id))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
owner.remove_filter("stasis_status_ripple")
update_time_of_death()
if(iscarbon(owner))
@@ -340,13 +359,20 @@
/datum/status_effect/cultghost/on_apply()
owner.set_invis_see(SEE_INVISIBLE_OBSERVER)
+<<<<<<< HEAD
+=======
+ return TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/status_effect/cultghost/tick(seconds_between_ticks)
if(owner.reagents)
owner.reagents.del_reagent(/datum/reagent/water/holywater) //can't be deconverted
+<<<<<<< HEAD
//SKYRAT EDIT START - OVERRIDEN IN MODULAR
/*
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/status_effect/crusher_mark
id = "crusher_mark"
duration = 300 //if you leave for 30 seconds you lose the mark, deal with it
@@ -360,7 +386,11 @@
boosted = was_boosted
/datum/status_effect/crusher_mark/on_apply()
+<<<<<<< HEAD
if(owner.mob_size >= MOB_SIZE_LARGE && !HAS_TRAIT(owner, TRAIT_OVERSIZED)) // SKYRAT EDIT CHANGE - Original: if(owner.mob_size >= MOB_SIZE_LARGE)
+=======
+ if(owner.mob_size >= MOB_SIZE_LARGE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
marked_underlay = mutable_appearance('icons/effects/effects.dmi', boosted ? "shield" : "shield2")
marked_underlay.pixel_x = -owner.pixel_x
marked_underlay.pixel_y = -owner.pixel_y
@@ -374,9 +404,12 @@
QDEL_NULL(marked_underlay)
return ..()
+<<<<<<< HEAD
*/
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/status_effect/stacking/saw_bleed
id = "saw_bleed"
tick_interval = 0.6 SECONDS
@@ -614,7 +647,11 @@
alert_type = null
/datum/status_effect/spasms/tick(seconds_between_ticks)
+<<<<<<< HEAD
if(owner.stat >= UNCONSCIOUS || owner.incapacitated() || HAS_TRAIT(owner, TRAIT_HANDS_BLOCKED) || HAS_TRAIT(owner, TRAIT_IMMOBILIZED))
+=======
+ if(owner.stat >= UNCONSCIOUS || owner.incapacitated || HAS_TRAIT(owner, TRAIT_HANDS_BLOCKED) || HAS_TRAIT(owner, TRAIT_IMMOBILIZED))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(!prob(15))
return
@@ -740,7 +777,11 @@
status_type = STATUS_EFFECT_REPLACE
tick_interval = 0.2 SECONDS
alert_type = null
+<<<<<<< HEAD
var/msg_stage = 0//so you dont get the most intense messages immediately
+=======
+ var/msg_stage = 0//so you don't get the most intense messages immediately
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/status_effect/fake_virus/on_apply()
if(HAS_TRAIT(owner, TRAIT_VIRUSIMMUNE))
diff --git a/code/datums/status_effects/debuffs/drunk.dm b/code/datums/status_effects/debuffs/drunk.dm
index 31a15c6a70b..f918f747668 100644
--- a/code/datums/status_effects/debuffs/drunk.dm
+++ b/code/datums/status_effects/debuffs/drunk.dm
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
// SKYRAT EDIT CHANGE BEGIN - ALCOHOL_PROCESSING
// Defines for the ballmer peak.
#define BALLMER_PEAK_LOW_END 25.8 // Original 12.9
@@ -7,6 +8,15 @@
/// The threshld which determine if someone is tipsy vs drunk
#define TIPSY_THRESHOLD 23.4 // Original 6
// SKYRAT EDIT CHANGE END - ALCOHOL_PROCESSING
+=======
+// Defines for the ballmer peak.
+#define BALLMER_PEAK_LOW_END 12.9
+#define BALLMER_PEAK_HIGH_END 13.8
+#define BALLMER_PEAK_WINDOWS_ME 26
+
+/// The threshld which determine if someone is tipsy vs drunk
+#define TIPSY_THRESHOLD 6
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* The drunk status effect.
@@ -71,7 +81,11 @@
// Every tick, the drunk value decrases by
// 4% the current drunk_value + 0.01
// (until it reaches 0 and terminates)
+<<<<<<< HEAD
set_drunk_value(drunk_value - (drunk_value * 0.0015)) // SKYRAT EDIT CHANGE - ALCOHOL_PROCESSING - ORIGINAL: set_drunk_value(drunk_value - (0.01 + drunk_value * 0.04)
+=======
+ set_drunk_value(drunk_value - (0.01 + drunk_value * 0.04))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(QDELETED(src))
return
@@ -146,8 +160,11 @@
if(drunk_value > BALLMER_PEAK_WINDOWS_ME) // by this point you're into windows ME territory
owner.say(pick_list_replacements(VISTA_FILE, "ballmer_windows_me_msg"), forced = "ballmer")
+<<<<<<< HEAD
// SKYRAT EDIT CHANGE BEGIN - ALCOHOL_PROCESSING
/* ORIGINAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Drunk slurring scales in intensity based on how drunk we are -at 16 you will likely not even notice it,
// but when we start to scale up you definitely will
if(drunk_value >= 16)
@@ -175,6 +192,7 @@
// Over 71, we will constantly have blurry eyes
if(drunk_value >= 71)
owner.set_eye_blur_if_lower((drunk_value * 2 SECONDS) - 140 SECONDS)
+<<<<<<< HEAD
*/
// And drunk people will always lose jitteriness
@@ -205,23 +223,39 @@
// Over 81, we will gain constant toxloss
if(drunk_value >= 83.4)
+=======
+
+ // Over 81, we will gain constant toxloss
+ if(drunk_value >= 81)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
owner.adjustToxLoss(1)
if(owner.stat == CONSCIOUS && prob(5))
to_chat(owner, span_warning("Maybe you should lie down for a bit..."))
// Over 91, we gain even more toxloss, brain damage, and have a chance of dropping into a long sleep
+<<<<<<< HEAD
if(drunk_value >= 93.4)
+=======
+ if(drunk_value >= 91)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
owner.adjustToxLoss(1)
owner.adjustOrganLoss(ORGAN_SLOT_BRAIN, 0.4)
if(owner.stat == CONSCIOUS)
attempt_to_blackout()
// And finally, over 100 - let's be honest, you shouldn't be alive by now.
+<<<<<<< HEAD
if(drunk_value >= 103.4)
owner.adjustToxLoss(2)
/datum/status_effect/inebriated/drunk/proc/attempt_to_blackout()
/* SKYRAT EDIT REMOVAL - Blackout drunk begone
+=======
+ if(drunk_value >= 101)
+ owner.adjustToxLoss(2)
+
+/datum/status_effect/inebriated/drunk/proc/attempt_to_blackout()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mob/living/carbon/drunkard = owner
if(drunkard.has_trauma_type(/datum/brain_trauma/severe/split_personality/blackout))// prevent ping spamming
if(prob(10))
@@ -231,7 +265,10 @@
if(drunkard.gain_trauma(/datum/brain_trauma/severe/split_personality/blackout, TRAUMA_LIMIT_ABSOLUTE))
drunk_value -= 70 //So that the drunk personality can spice things up without being killed by liver failure
return
+<<<<<<< HEAD
*/ // SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(SSshuttle.emergency.mode == SHUTTLE_DOCKED && is_station_level(owner.z))// Don't put us in a deep sleep if the shuttle's here. QoL, mainly.
to_chat(owner, span_warning("You're so tired... but you can't miss that shuttle..."))
else
diff --git a/code/datums/status_effects/debuffs/slime/slime_leech.dm b/code/datums/status_effects/debuffs/slime/slime_leech.dm
index 49bd0f7b82c..21eb241a61c 100644
--- a/code/datums/status_effects/debuffs/slime/slime_leech.dm
+++ b/code/datums/status_effects/debuffs/slime/slime_leech.dm
@@ -66,7 +66,11 @@
if(need_mob_update)
owner.updatehealth()
+<<<<<<< HEAD
if(totaldamage >= 0) // AdjustBruteLoss returns a negative value on succesful damage adjustment
+=======
+ if(totaldamage >= 0) // AdjustBruteLoss returns a negative value on successful damage adjustment
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
our_slime.balloon_alert(our_slime, "not food!")
our_slime.stop_feeding()
return
diff --git a/code/datums/status_effects/debuffs/stamcrit.dm b/code/datums/status_effects/debuffs/stamcrit.dm
index 0edd589ab9c..07ea19cc91a 100644
--- a/code/datums/status_effects/debuffs/stamcrit.dm
+++ b/code/datums/status_effects/debuffs/stamcrit.dm
@@ -15,7 +15,11 @@
// This should be in on apply but we need it to happen AFTER being added to the mob
// (Because we need to wait until the status effect is in their status effect list, or we'll add two)
+<<<<<<< HEAD
if(owner.getStaminaLoss() < 162) // SKYRAT EDIT CHANGE
+=======
+ if(owner.getStaminaLoss() < 120)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Puts you a little further into the initial stamcrit, makes stamcrit harder to outright counter with chems.
owner.adjustStaminaLoss(30, FALSE)
diff --git a/code/datums/status_effects/debuffs/strandling.dm b/code/datums/status_effects/debuffs/strandling.dm
index 6050a3df304..b9c06a73de1 100644
--- a/code/datums/status_effects/debuffs/strandling.dm
+++ b/code/datums/status_effects/debuffs/strandling.dm
@@ -57,7 +57,11 @@
* tool - the tool the user's using to remove the strange. Can be null.
*/
/datum/status_effect/strandling/proc/try_remove_effect(mob/user, obj/item/tool)
+<<<<<<< HEAD
if(user.incapacitated() || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED))
+=======
+ if(user.incapacitated || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
user.visible_message(
diff --git a/code/datums/status_effects/drug_effects.dm b/code/datums/status_effects/drug_effects.dm
index 1d37c8f0e43..b0d47abec30 100644
--- a/code/datums/status_effects/drug_effects.dm
+++ b/code/datums/status_effects/drug_effects.dm
@@ -52,7 +52,11 @@
owner.set_jitter_if_lower(100 SECONDS)
owner.Paralyze(duration)
owner.visible_message(span_warning("[owner] drops to the ground as [owner.p_they()] start seizing up."), \
+<<<<<<< HEAD
span_warning("[pick("You can't collect your thoughts...", "You suddenly feel extremely dizzy...", "You cant think straight...","You can't move your face properly anymore...")]"))
+=======
+ span_warning("[pick("You can't collect your thoughts...", "You suddenly feel extremely dizzy...", "You can't think straight...","You can't move your face properly anymore...")]"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
/atom/movable/screen/alert/status_effect/seizure
diff --git a/code/datums/status_effects/stacking_effect.dm b/code/datums/status_effects/stacking_effect.dm
index 98dd1c3ad14..67ff9d0ad34 100644
--- a/code/datums/status_effects/stacking_effect.dm
+++ b/code/datums/status_effects/stacking_effect.dm
@@ -8,7 +8,11 @@
/// How many stacks are currently accumulated.
/// Also, the default stacks number given on application.
var/stacks = 0
+<<<<<<< HEAD
// Deciseconds until ticks start occuring, which removes stacks
+=======
+ // Deciseconds until ticks start occurring, which removes stacks
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// (first stack will be removed at this time plus tick_interval)
var/delay_before_decay
/// How many stacks are lost per tick (decay trigger)
@@ -31,11 +35,19 @@
/// Put the state name without the number in these state vars
var/overlay_state
/// Icon state for underlays applied when the status effect is applied
+<<<<<<< HEAD
/// The number is concatonated onto the string based on the number of stacks to get the correct state name.
var/underlay_state
/// A reference to our overlay appearance
var/mutable_appearance/status_overlay
/// A referenceto our underlay appearance
+=======
+ /// The number is concatenated onto the string based on the number of stacks to get the correct state name.
+ var/underlay_state
+ /// A reference to our overlay appearance
+ var/mutable_appearance/status_overlay
+ /// A reference to our underlay appearance
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mutable_appearance/status_underlay
/// Effects that occur when the stack count crosses stack_threshold
@@ -90,7 +102,11 @@
owner.underlays -= status_underlay
stacks += stacks_added
if(stacks > 0)
+<<<<<<< HEAD
if(stacks >= stack_threshold && !threshold_crossed) //threshold_crossed check prevents threshold effect from occuring if changing from above threshold to still above threshold
+=======
+ if(stacks >= stack_threshold && !threshold_crossed) //threshold_crossed check prevents threshold effect from occurring if changing from above threshold to still above threshold
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
threshold_crossed = TRUE
on_threshold_cross()
if(consumed_on_threshold)
diff --git a/code/datums/storage/storage.dm b/code/datums/storage/storage.dm
index abf63eb3c75..453a87ade8e 100644
--- a/code/datums/storage/storage.dm
+++ b/code/datums/storage/storage.dm
@@ -389,7 +389,11 @@ GLOBAL_LIST_EMPTY(cached_storage_typecaches)
user.balloon_alert(user, "no room!")
return FALSE
+<<<<<<< HEAD
var/can_hold_it = isnull(can_hold) || is_type_in_typecache(to_insert, can_hold)
+=======
+ var/can_hold_it = isnull(can_hold) || is_type_in_typecache(to_insert, can_hold) || is_type_in_typecache(to_insert, exception_hold)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/cant_hold_it = is_type_in_typecache(to_insert, cant_hold)
var/trait_says_no = HAS_TRAIT(to_insert, TRAIT_NO_STORAGE_INSERT)
if(!can_hold_it || cant_hold_it || trait_says_no)
@@ -738,7 +742,11 @@ GLOBAL_LIST_EMPTY(cached_storage_typecaches)
/datum/storage/proc/on_mousedrop_onto(datum/source, atom/over_object, mob/user)
SIGNAL_HANDLER
+<<<<<<< HEAD
if(ismecha(user.loc) || !user.canUseStorage())
+=======
+ if(ismecha(user.loc) || user.incapacitated || !user.canUseStorage())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(istype(over_object, /atom/movable/screen/inventory/hand))
@@ -827,6 +835,12 @@ GLOBAL_LIST_EMPTY(cached_storage_typecaches)
return
if(!iscarbon(user) && !isdrone(user))
return
+<<<<<<< HEAD
+=======
+ var/mob/living/user_living = user
+ if(user_living.incapacitated)
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
attempt_insert(dropping, user)
return COMPONENT_CANCEL_MOUSEDROPPED_ONTO
diff --git a/code/datums/visual_data.dm b/code/datums/visual_data.dm
index 3915b613600..15bea475f8d 100644
--- a/code/datums/visual_data.dm
+++ b/code/datums/visual_data.dm
@@ -11,6 +11,11 @@
var/sight = NONE
/// see_invisible values
var/see_invis
+<<<<<<< HEAD
+=======
+ /// see_in_dark values
+ var/see_dark
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// What the client is seeing "out of", client.eye
var/datum/weakref/client_eye
/// Weakref to the mob we're mirroring off
@@ -39,6 +44,10 @@
// Note: we explicitly do NOT use setters here, since it would break the behavior
paint_to.sight = sight
paint_to.see_invisible = see_invis
+<<<<<<< HEAD
+=======
+ paint_to.see_in_dark = see_dark
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(paint_to.client)
var/atom/eye = client_eye?.resolve()
if(eye)
diff --git a/code/datums/votes/map_vote.dm b/code/datums/votes/map_vote.dm
index 2942a40b833..5e017ad6d87 100644
--- a/code/datums/votes/map_vote.dm
+++ b/code/datums/votes/map_vote.dm
@@ -14,7 +14,11 @@
var/list/maps = shuffle(global.config.maplist)
for(var/map in maps)
var/datum/map_config/possible_config = config.maplist[map]
+<<<<<<< HEAD
if(!possible_config.votable || (possible_config.map_name in SSpersistence.blocked_maps) || possible_config.map_name == SSmapping.config?.map_name) // SKYRAT EDIT - Can't vote for the current map
+=======
+ if(!possible_config.votable || (possible_config.map_name in SSpersistence.blocked_maps))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
continue
default_choices += possible_config.map_name
diff --git a/code/datums/weather/weather_types/radiation_storm.dm b/code/datums/weather/weather_types/radiation_storm.dm
index 12533845f90..e24b04856aa 100644
--- a/code/datums/weather/weather_types/radiation_storm.dm
+++ b/code/datums/weather/weather_types/radiation_storm.dm
@@ -20,7 +20,11 @@
protected_areas = list(/area/station/maintenance, /area/station/ai_monitored/turret_protected/ai_upload, /area/station/ai_monitored/turret_protected/ai_upload_foyer,
/area/station/ai_monitored/turret_protected/aisat/maint, /area/station/ai_monitored/command/storage/satellite,
/area/station/ai_monitored/turret_protected/ai, /area/station/commons/storage/emergency/starboard, /area/station/commons/storage/emergency/port,
+<<<<<<< HEAD
/area/shuttle, /area/station/security/prison/safe, /area/station/security/prison/toilet, /area/icemoon/underground, /area/ruin/comms_agent/maint)
+=======
+ /area/shuttle, /area/station/security/prison/safe, /area/station/security/prison/toilet, /area/mine/maintenance, /area/icemoon/underground, /area/ruin/comms_agent/maint)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
target_trait = ZTRAIT_STATION
immunity_type = TRAIT_RADSTORM_IMMUNE
diff --git a/code/datums/wires/_wires.dm b/code/datums/wires/_wires.dm
index c3c8a1c0e93..5cf73d1e047 100644
--- a/code/datums/wires/_wires.dm
+++ b/code/datums/wires/_wires.dm
@@ -348,7 +348,11 @@
data["proper_name"] = (proper_name != "Unknown") ? proper_name : null
return data
+<<<<<<< HEAD
/datum/wires/ui_act(action, params)
+=======
+/datum/wires/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(. || !interactable(usr))
return
diff --git a/code/datums/wires/mecha.dm b/code/datums/wires/mecha.dm
index 4e11eda65f7..843aadff496 100644
--- a/code/datums/wires/mecha.dm
+++ b/code/datums/wires/mecha.dm
@@ -95,12 +95,22 @@
if(mecha.Adjacent(target) && !TIMER_COOLDOWN_RUNNING(mecha, COOLDOWN_MECHA_MELEE_ATTACK) && target.mech_melee_attack(mecha))
TIMER_COOLDOWN_START(mecha, COOLDOWN_MECHA_MELEE_ATTACK, mecha.melee_cooldown)
+<<<<<<< HEAD
/datum/wires/mecha/ui_act(action, params)
. = ..()
if(.)
return
var/obj/vehicle/sealed/mecha/mecha = holder
if(!HAS_SILICON_ACCESS(usr) && mecha.internal_damage & MECHA_INT_SHORT_CIRCUIT && mecha.shock(usr))
+=======
+/datum/wires/mecha/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ if(.)
+ return
+ var/mob/user = ui.user
+ var/obj/vehicle/sealed/mecha/mecha = holder
+ if(!HAS_SILICON_ACCESS(user) && mecha.internal_damage & MECHA_INT_SHORT_CIRCUIT && mecha.shock(usr))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
/datum/wires/mecha/can_reveal_wires(mob/user)
diff --git a/code/datums/wires/mod.dm b/code/datums/wires/mod.dm
index 00d836a52eb..cfc5155292c 100644
--- a/code/datums/wires/mod.dm
+++ b/code/datums/wires/mod.dm
@@ -50,9 +50,16 @@
if(WIRE_INTERFACE)
mod.interface_break = !mend
+<<<<<<< HEAD
/datum/wires/mod/ui_act(action, params)
var/obj/item/mod/control/mod = holder
if(!HAS_SILICON_ACCESS(usr) && mod.seconds_electrified && mod.shock(usr))
+=======
+/datum/wires/mod/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ var/obj/item/mod/control/mod = holder
+ var/mob/user = ui.user
+ if(!HAS_SILICON_ACCESS(user) && mod.seconds_electrified && mod.shock(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return ..()
diff --git a/code/datums/wounds/_wound_static_data.dm b/code/datums/wounds/_wound_static_data.dm
index f996bb258c7..d5a780f49e7 100644
--- a/code/datums/wounds/_wound_static_data.dm
+++ b/code/datums/wounds/_wound_static_data.dm
@@ -1,6 +1,10 @@
// This datum is merely a singleton instance that allows for custom "can be applied" behaviors without instantiating a wound instance.
// For example: You can make a pregen_data subtype for your wound that overrides can_be_applied_to to only apply to specifically slimeperson limbs.
+<<<<<<< HEAD
// Without this, youre stuck with very static initial variables.
+=======
+// Without this, you're stuck with very static initial variables.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// A singleton datum that holds pre-gen and static data about a wound. Each wound datum should have a corresponding wound_pregen_data.
/datum/wound_pregen_data
@@ -56,9 +60,15 @@
if (!abstract)
if (required_limb_biostate == null)
+<<<<<<< HEAD
stack_trace("required_limb_biostate null - please set it! occured on: [src.type]")
if (wound_path_to_generate == null)
stack_trace("wound_path_to_generate null - please set it! occured on: [src.type]")
+=======
+ stack_trace("required_limb_biostate null - please set it! occurred on: [src.type]")
+ if (wound_path_to_generate == null)
+ stack_trace("wound_path_to_generate null - please set it! occurred on: [src.type]")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
scar_priorities = generate_scar_priorities()
@@ -82,8 +92,13 @@
* * random_roll = FALSE: If this is in the context of a random wound generation, and this wound wasn't specifically checked.
*
* Returns:
+<<<<<<< HEAD
* FALSE if the limb cannot be wounded, if the wounding types dont match ours (via wounding_types_valid()), if we have a higher severity wound already in our series,
* if we have a biotype mismatch, if the limb isnt in a viable zone, or if theres any duplicate wound types.
+=======
+ * FALSE if the limb cannot be wounded, if the wounding types don't match ours (via wounding_types_valid()), if we have a higher severity wound already in our series,
+ * if we have a biotype mismatch, if the limb isn't in a viable zone, or if there's any duplicate wound types.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* TRUE otherwise.
*/
/datum/wound_pregen_data/proc/can_be_applied_to(obj/item/bodypart/limb, list/suggested_wounding_types = required_wounding_types, datum/wound/old_wound, random_roll = FALSE, duplicates_allowed = src.duplicates_allowed, care_about_existing_wounds = TRUE)
diff --git a/code/datums/wounds/_wounds.dm b/code/datums/wounds/_wounds.dm
index 47f29a21e9d..64636299eb0 100644
--- a/code/datums/wounds/_wounds.dm
+++ b/code/datums/wounds/_wounds.dm
@@ -127,7 +127,11 @@
return ..()
+<<<<<<< HEAD
/// If we should have an actionspeed_mod, ensures we do and updates its slowdown. Otherwise, ensures we dont have one
+=======
+/// If we should have an actionspeed_mod, ensures we do and updates its slowdown. Otherwise, ensures we don't have one
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// by qdeleting any existing modifier.
/datum/wound/proc/update_actionspeed_modifier()
if (should_have_actionspeed_modifier())
@@ -323,7 +327,11 @@
SIGNAL_HANDLER
qdel(src)
+<<<<<<< HEAD
/// Remove the wound from whatever it's afflicting, and cleans up whateverstatus effects it had or modifiers it had on interaction times. ignore_limb is used for detachments where we only want to forget the victim
+=======
+/// Remove the wound from whatever it's afflicting, and cleans up whatever status effects it had or modifiers it had on interaction times. ignore_limb is used for detachments where we only want to forget the victim
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/wound/proc/remove_wound(ignore_limb, replaced = FALSE)
//TODO: have better way to tell if we're getting removed without replacement (full heal) scar stuff
var/old_victim = victim
@@ -341,7 +349,11 @@
if(limb && !ignore_limb)
set_limb(null, replaced) // since we're removing limb's ref to us, we should do the same
+<<<<<<< HEAD
// if you want to keep the ref, do it externally, theres no reason for us to remember it
+=======
+ // if you want to keep the ref, do it externally, there's no reason for us to remember it
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (ismob(old_victim))
var/mob/mob_victim = old_victim
@@ -688,7 +700,11 @@
/datum/wound/proc/get_limb_examine_description()
return
+<<<<<<< HEAD
/// Gets the flat percentage chance increment of a dismember occuring, if a dismember is attempted (requires mangled flesh and bone). returning 15 = +15%.
+=======
+/// Gets the flat percentage chance increment of a dismember occurring, if a dismember is attempted (requires mangled flesh and bone). returning 15 = +15%.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/wound/proc/get_dismember_chance_bonus(existing_chance)
SHOULD_BE_PURE(TRUE)
diff --git a/code/datums/wounds/bones.dm b/code/datums/wounds/bones.dm
index 13877c8223b..46ea0ed0bcc 100644
--- a/code/datums/wounds/bones.dm
+++ b/code/datums/wounds/bones.dm
@@ -13,7 +13,11 @@
/datum/wound/blunt/bone
name = "Blunt (Bone) Wound"
+<<<<<<< HEAD
wound_flags = (ACCEPTS_GAUZE | SPLINT_OVERLAY) // SKYRAT EDIT: MEDICAL -- Makes bone wounds have a splint overlay
+=======
+ wound_flags = (ACCEPTS_GAUZE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
default_scar_file = BONE_SCAR_FILE
@@ -336,7 +340,11 @@
brain_trauma_group = BRAIN_TRAUMA_MILD
trauma_cycle_cooldown = 1.5 MINUTES
internal_bleeding_chance = 40
+<<<<<<< HEAD
wound_flags = (ACCEPTS_GAUZE | MANGLES_INTERIOR | SPLINT_OVERLAY) // SKYRAT EDIT - MEDICAL (SPLINT_OVERLAY)
+=======
+ wound_flags = (ACCEPTS_GAUZE | MANGLES_INTERIOR)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
regen_ticks_needed = 120 // ticks every 2 seconds, 240 seconds, so roughly 4 minutes default
simple_desc = "Patient's bone has cracked in the middle, drastically reducing limb functionality."
@@ -372,7 +380,11 @@
brain_trauma_group = BRAIN_TRAUMA_SEVERE
trauma_cycle_cooldown = 2.5 MINUTES
internal_bleeding_chance = 60
+<<<<<<< HEAD
wound_flags = (ACCEPTS_GAUZE | MANGLES_INTERIOR | SPLINT_OVERLAY) // SKYRAT EDIT - MEDICAL (SPLINT_OVERLAY)
+=======
+ wound_flags = (ACCEPTS_GAUZE | MANGLES_INTERIOR)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
regen_ticks_needed = 240 // ticks every 2 seconds, 480 seconds, so roughly 8 minutes default
simple_desc = "Patient's bones have effectively shattered completely, causing total immobilization of the limb."
diff --git a/code/datums/wounds/burns.dm b/code/datums/wounds/burns.dm
index 6c35cedd33c..43a65e2b636 100644
--- a/code/datums/wounds/burns.dm
+++ b/code/datums/wounds/burns.dm
@@ -1,3 +1,7 @@
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/*
Burn wounds
*/
@@ -81,11 +85,17 @@
infestation += infestation_rate * seconds_per_tick
switch(infestation)
if(0 to WOUND_INFECTION_MODERATE)
+ return
+
if(WOUND_INFECTION_MODERATE to WOUND_INFECTION_SEVERE)
if(SPT_PROB(15, seconds_per_tick))
victim.adjustToxLoss(0.2)
if(prob(6))
to_chat(victim, span_warning("The blisters on your [limb.plaintext_zone] ooze a strange pus..."))
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(WOUND_INFECTION_SEVERE to WOUND_INFECTION_CRITICAL)
if(!disabling)
if(SPT_PROB(1, seconds_per_tick))
@@ -356,6 +366,10 @@
desc = "Patient is suffering extreme burns from a strange brand marking, creating serious risk of infection and greatly reduced limb integrity."
examine_desc = "appears to have holy symbols painfully branded into their flesh, leaving severe burns."
occur_text = "chars rapidly into a strange pattern of holy symbols, burned into the flesh."
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
simple_desc = "Patient's skin has had strange markings burned onto it, significantly weakening the limb and compounding further damage!!"
/datum/wound_pregen_data/flesh_burn/third_degree/holy
@@ -363,8 +377,13 @@
can_be_randomly_generated = FALSE
wound_path_to_generate = /datum/wound/burn/flesh/severe/brand
+<<<<<<< HEAD
/// special severe wound caused by the cursed slot machine.
+=======
+/// special severe wound caused by the cursed slot machine.
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/wound/burn/flesh/severe/cursed_brand
name = "Ancient Brand"
desc = "Patient is suffering extreme burns with oddly ornate brand markings, creating serious risk of infection and greatly reduced limb integrity."
diff --git a/code/datums/wounds/pierce.dm b/code/datums/wounds/pierce.dm
index c0be047b938..5a9cb50605c 100644
--- a/code/datums/wounds/pierce.dm
+++ b/code/datums/wounds/pierce.dm
@@ -1,3 +1,7 @@
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/*
Piercing wounds
*/
diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm
index 0c6847e7db3..9a413672981 100644
--- a/code/game/area/areas.dm
+++ b/code/game/area/areas.dm
@@ -128,7 +128,11 @@
* A list of teleport locations
*
* Adding a wizard area teleport list because motherfucking lag -- Urist
+<<<<<<< HEAD
* I am far too lazy to make it a proper list of areas so I'll just make it run the usual telepot routine at the start of the game
+=======
+ * I am far too lazy to make it a proper list of areas so I'll just make it run the usual teleport routine at the start of the game
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*/
GLOBAL_LIST_EMPTY(teleportlocs)
@@ -168,9 +172,15 @@ GLOBAL_LIST_EMPTY(teleportlocs)
return ..()
/*
+<<<<<<< HEAD
* Initalize this area
*
* intializes the dynamic area lighting and also registers the area with the z level via
+=======
+ * Initialize this area
+ *
+ * initializes the dynamic area lighting and also registers the area with the z level via
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* reg_in_areas_in_z
*
* returns INITIALIZE_HINT_LATELOAD
@@ -414,7 +424,11 @@ GLOBAL_LIST_EMPTY(teleportlocs)
/**
* Update the icon state of the area
*
+<<<<<<< HEAD
* Im not sure what the heck this does, somethign to do with weather being able to set icon
+=======
+ * I'm not sure what the heck this does, something to do with weather being able to set icon
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* states on areas?? where the heck would that even display?
*/
/area/update_icon_state()
@@ -439,7 +453,11 @@ GLOBAL_LIST_EMPTY(teleportlocs)
/**
* Returns int 1 or 0 if the area has power for the given channel
*
+<<<<<<< HEAD
* evalutes a mixture of variables mappers can set, requires_power, always_unpowered and then
+=======
+ * evaluates a mixture of variables mappers can set, requires_power, always_unpowered and then
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* per channel power_equip, power_light, power_environ
*/
/area/proc/powered(chan) // return true if the area has power to given channel
diff --git a/code/game/area/areas/away_content.dm b/code/game/area/areas/away_content.dm
index 14ea52648f8..919405c63f2 100644
--- a/code/game/area/areas/away_content.dm
+++ b/code/game/area/areas/away_content.dm
@@ -11,7 +11,11 @@ Unused icons for new areas are "awaycontent1" ~ "awaycontent30"
has_gravity = STANDARD_GRAVITY
ambience_index = AMBIENCE_AWAY
sound_environment = SOUND_ENVIRONMENT_ROOM
+<<<<<<< HEAD
area_flags = NOTELEPORT|UNIQUE_AREA //SKYRAT EDIT CHANGE
+=======
+ area_flags = UNIQUE_AREA
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/awaymission/museum
name = "Nanotrasen Museum"
diff --git a/code/game/area/areas/centcom.dm b/code/game/area/areas/centcom.dm
index f5ac4fac78e..5a47d7f6999 100644
--- a/code/game/area/areas/centcom.dm
+++ b/code/game/area/areas/centcom.dm
@@ -87,11 +87,14 @@
name = "Supplypod Loading Facility"
icon_state = "supplypod_loading"
var/loading_id = ""
+<<<<<<< HEAD
// SKYRAT EDIT START - Dynamic lights on CentCom
static_lighting = FALSE
base_lighting_color = COLOR_WHITE
base_lighting_alpha = 255
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/centcom/central_command_areas/supplypod/loading/Initialize(mapload)
. = ..()
diff --git a/code/game/area/areas/ruins/icemoon.dm b/code/game/area/areas/ruins/icemoon.dm
index fd983f763a3..4d829412707 100644
--- a/code/game/area/areas/ruins/icemoon.dm
+++ b/code/game/area/areas/ruins/icemoon.dm
@@ -44,7 +44,11 @@
mood_message = "I feel like I am being watched..."
/area/ruin/bughabitat
+<<<<<<< HEAD
name = "\improper Entemology Outreach Center"
+=======
+ name = "\improper Entomology Outreach Center"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mood_bonus = 1
mood_message = "This place seems strangely serene."
diff --git a/code/game/area/areas/ruins/lavaland.dm b/code/game/area/areas/ruins/lavaland.dm
index 2063775823a..387bd5929cc 100644
--- a/code/game/area/areas/ruins/lavaland.dm
+++ b/code/game/area/areas/ruins/lavaland.dm
@@ -98,12 +98,16 @@
//ash walker nest
/area/ruin/unpowered/ash_walkers
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - ASH WALKER MACHINES FIX
always_unpowered = FALSE
power_equip = TRUE
//SKYRAT EDIT ADDITION END
ambient_buzz = 'sound/ambience/magma.ogg'
+=======
+ ambient_buzz = 'sound/ambience/magma.ogg'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/ruin/unpowered/ratvar
outdoors = TRUE
ambient_buzz = 'sound/ambience/magma.ogg'
diff --git a/code/game/area/areas/ruins/space.dm b/code/game/area/areas/ruins/space.dm
index 1b697dc02b0..a5b498ce22b 100644
--- a/code/game/area/areas/ruins/space.dm
+++ b/code/game/area/areas/ruins/space.dm
@@ -89,7 +89,10 @@
/area/ruin/space/has_grav/hotel/pool
name = "\improper Hotel Pool Room"
+<<<<<<< HEAD
icon_state = "fitness"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/area/ruin/space/has_grav/hotel/bar
name = "\improper Hotel Bar"
diff --git a/code/game/area/areas/shuttles.dm b/code/game/area/areas/shuttles.dm
index 78b887173b9..e15d5a52a93 100644
--- a/code/game/area/areas/shuttles.dm
+++ b/code/game/area/areas/shuttles.dm
@@ -154,7 +154,11 @@
name = "Labor Camp Shuttle"
/area/shuttle/supply
+<<<<<<< HEAD
name = "NLV Consign" //SKYRAT EDIT CHANGE
+=======
+ name = "Supply Shuttle"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
area_flags = NOTELEPORT
/area/shuttle/escape
diff --git a/code/game/atom/_atom.dm b/code/game/atom/_atom.dm
index 6198370dc24..ea0f6835804 100644
--- a/code/game/atom/_atom.dm
+++ b/code/game/atom/_atom.dm
@@ -186,6 +186,16 @@
if(smoothing_flags & SMOOTH_QUEUED)
SSicon_smooth.remove_from_queues(src)
+<<<<<<< HEAD
+=======
+ // These lists cease existing when src does, so we need to clear any lua refs to them that exist.
+ if(!(datum_flags & DF_STATIC_OBJECT))
+ DREAMLUAU_CLEAR_REF_USERDATA(contents)
+ DREAMLUAU_CLEAR_REF_USERDATA(filters)
+ DREAMLUAU_CLEAR_REF_USERDATA(overlays)
+ DREAMLUAU_CLEAR_REF_USERDATA(underlays)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ..()
/atom/proc/handle_ricochet(obj/projectile/ricocheting_projectile)
@@ -852,11 +862,14 @@
var/mob/user = client?.mob
if (isnull(user))
return
+<<<<<<< HEAD
///SKYRAT EDIT ADDITION BEGIN
// Face directions on combat mode. No procs, no typechecks, just a var for speed
if(user.face_mouse)
user.face_atom(src)
///SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Screentips
var/datum/hud/active_hud = user.hud_used
diff --git a/code/game/atom/atom_act.dm b/code/game/atom/atom_act.dm
index 53269c5538c..56628b881e2 100644
--- a/code/game/atom/atom_act.dm
+++ b/code/game/atom/atom_act.dm
@@ -67,8 +67,12 @@
* We then return the protection value
*/
/atom/proc/emp_act(severity)
+<<<<<<< HEAD
// SKYRAT EDIT - REMOVAL
//SHOULD_CALL_PARENT(TRUE)
+=======
+ SHOULD_CALL_PARENT(TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/protection = SEND_SIGNAL(src, COMSIG_ATOM_PRE_EMP_ACT, severity)
if(!(protection & EMP_PROTECT_WIRES) && istype(wires))
wires.emp_pulse()
@@ -116,11 +120,21 @@
* Im not sure why this the case, maybe to prevent lots of hitby's if the thrown object is
* deleted shortly after hitting something (during explosions or other massive events that
* throw lots of items around - singularity being a notable example)
+<<<<<<< HEAD
+=======
+ *
+ * Worth of note: If hitby returns TRUE, it means the object has been blocked or catched by src.
+ * So far, this is only possible for living mobs and carbons, who can hold shields and catch thrown items.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
*/
/atom/proc/hitby(atom/movable/hitting_atom, skipcatch, hitpush, blocked, datum/thrownthing/throwingdatum)
SEND_SIGNAL(src, COMSIG_ATOM_HITBY, hitting_atom, skipcatch, hitpush, blocked, throwingdatum)
if(density && !has_gravity(hitting_atom)) //thrown stuff bounces off dense stuff in no grav, unless the thrown stuff ends up inside what it hit(embedding, bola, etc...).
addtimer(CALLBACK(src, PROC_REF(hitby_react), hitting_atom), 0.2 SECONDS)
+<<<<<<< HEAD
+=======
+ return FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* We have have actually hit the passed in atom
@@ -209,7 +223,11 @@
///wrapper proc that passes our mob's rust_strength to the target we are rusting
/mob/living/proc/do_rust_heretic_act(atom/target)
+<<<<<<< HEAD
var/datum/antagonist/heretic/heretic_data = IS_HERETIC(src)
+=======
+ var/datum/antagonist/heretic/heretic_data = GET_HERETIC(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
target.rust_heretic_act(heretic_data?.rust_strength)
/mob/living/basic/heretic_summon/rust_walker/do_rust_heretic_act(atom/target)
diff --git a/code/game/atom/atom_defense.dm b/code/game/atom/atom_defense.dm
index d2280fd2b59..1f0a25bae70 100644
--- a/code/game/atom/atom_defense.dm
+++ b/code/game/atom/atom_defense.dm
@@ -94,29 +94,42 @@
CRASH("/atom/proc/run_atom_armor was called on [src] without being implemented as a type that uses integrity!")
if(damage_flag == MELEE && damage_amount < damage_deflection)
return 0
+<<<<<<< HEAD
switch(damage_type)
if(BRUTE)
if(BURN)
else
return 0
+=======
+ if(damage_type != BRUTE && damage_type != BURN)
+ return 0
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/armor_protection = 0
if(damage_flag)
armor_protection = get_armor_rating(damage_flag)
if(armor_protection) //Only apply weak-against-armor/hollowpoint effects if there actually IS armor.
armor_protection = clamp(PENETRATE_ARMOUR(armor_protection, armour_penetration), min(armor_protection, 0), 100)
+<<<<<<< HEAD
return round(damage_amount * (100 - armor_protection)*0.01, DAMAGE_PRECISION)
+=======
+ return round(damage_amount * (100 - armor_protection) * 0.01, DAMAGE_PRECISION)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///the sound played when the atom is damaged.
/atom/proc/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0)
switch(damage_type)
if(BRUTE)
if(damage_amount)
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION - CREDITS TO WHITEDREAM(valtos)
playsound(src, pick('modular_skyrat/master_files/sound/effects/metalblock1.wav', 'modular_skyrat/master_files/sound/effects/metalblock2.wav', \
'modular_skyrat/master_files/sound/effects/metalblock3.wav', 'modular_skyrat/master_files/sound/effects/metalblock4.wav', \
'modular_skyrat/master_files/sound/effects/metalblock5.wav', 'modular_skyrat/master_files/sound/effects/metalblock6.wav', \
'modular_skyrat/master_files/sound/effects/metalblock7.wav', 'modular_skyrat/master_files/sound/effects/metalblock8.wav'), 50, TRUE)
//SKYRAT EDIT END
+=======
+ playsound(src, 'sound/weapons/smash.ogg', 50, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
playsound(src, 'sound/weapons/tap.ogg', 50, TRUE)
if(BURN)
diff --git a/code/game/atom/atom_examine.dm b/code/game/atom/atom_examine.dm
index e728781ee01..8b5e7c9b753 100644
--- a/code/game/atom/atom_examine.dm
+++ b/code/game/atom/atom_examine.dm
@@ -13,7 +13,11 @@
/atom/proc/examine(mob/user)
var/examine_string = get_examine_string(user, thats = TRUE)
if(examine_string)
+<<<<<<< HEAD
. = list("[examine_string].", EXAMINE_SECTION_BREAK) // SKYRAT EDIT CHANGE
+=======
+ . = list("[examine_string].")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
. = list()
@@ -22,19 +26,25 @@
. += desc
if(custom_materials)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - HR sections
if(length(custom_materials) > 1)
. += EXAMINE_SECTION_BREAK //SKYRAT EDIT ADDITION
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/materials_list = list()
for(var/custom_material in custom_materials)
var/datum/material/current_material = GET_MATERIAL_REF(custom_material)
materials_list += "[current_material.name]"
. += "It is made out of [english_list(materials_list)] ."
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - HR sections
if(length(custom_materials) > 1)
. += EXAMINE_SECTION_BREAK //SKYRAT EDIT ADDITION
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(reagents)
var/user_sees_reagents = user.can_see_reagents()
diff --git a/code/game/atom/atom_tool_acts.dm b/code/game/atom/atom_tool_acts.dm
index abe580958a4..dbb32985083 100644
--- a/code/game/atom/atom_tool_acts.dm
+++ b/code/game/atom/atom_tool_acts.dm
@@ -109,6 +109,7 @@
act_result = is_left_clicking ? welder_act(user, tool) : welder_act_secondary(user, tool)
if(TOOL_ANALYZER)
act_result = is_left_clicking ? analyzer_act(user, tool) : analyzer_act_secondary(user, tool)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - SKYRAT TOOLS
if(TOOL_BILLOW)
act_result = is_left_clicking ? billow_act(user, tool) : billow_act_secondary(user, tool)
@@ -119,6 +120,8 @@
if(TOOL_BLOWROD)
act_result = is_left_clicking ? blowrod_act(user, tool) : blowrod_act_secondary(user, tool)
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!act_result)
return NONE
diff --git a/code/game/atom/atoms_initializing_EXPENSIVE.dm b/code/game/atom/atoms_initializing_EXPENSIVE.dm
index f76f00670d2..3857cfd331b 100644
--- a/code/game/atom/atoms_initializing_EXPENSIVE.dm
+++ b/code/game/atom/atoms_initializing_EXPENSIVE.dm
@@ -1,5 +1,9 @@
/// Init this specific atom
/datum/controller/subsystem/atoms/proc/InitAtom(atom/A, from_template = FALSE, list/arguments)
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/the_type = A.type
if(QDELING(A))
@@ -24,7 +28,11 @@
switch(result)
if (INITIALIZE_HINT_NORMAL)
+<<<<<<< HEAD
// pass
+=======
+ EMPTY_BLOCK_GUARD // Pass
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(INITIALIZE_HINT_LATELOAD)
if(arguments[1]) //mapload
late_loaders += A
diff --git a/code/game/atoms_movable.dm b/code/game/atoms_movable.dm
index 6ba0d0fc045..a2766cdbe6c 100644
--- a/code/game/atoms_movable.dm
+++ b/code/game/atoms_movable.dm
@@ -101,9 +101,12 @@
/// The degree of pressure protection that mobs in list/contents have from the external environment, between 0 and 1
var/contents_pressure_protection = 0
+<<<<<<< HEAD
/// Whether a user will face atoms on entering them with a mouse. Despite being a mob variable, it is here for performances //SKYRAT EDIT ADDITION
var/face_mouse = FALSE //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The voice that this movable makes when speaking
var/voice
@@ -234,6 +237,13 @@
LAZYNULL(client_mobs_in_contents)
+<<<<<<< HEAD
+=======
+ // These lists cease existing when src does, so we need to clear any lua refs to them that exist.
+ DREAMLUAU_CLEAR_REF_USERDATA(vis_contents)
+ DREAMLUAU_CLEAR_REF_USERDATA(vis_locs)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
for(var/movable_content in contents)
@@ -637,7 +647,11 @@
if(!direction)
direction = get_dir(src, newloc)
+<<<<<<< HEAD
if(set_dir_on_move && dir != direction && update_dir && !face_mouse) // SKYRAT EDIT - && !face_mouse
+=======
+ if(set_dir_on_move && dir != direction && update_dir)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
setDir(direction)
var/is_multi_tile_object = is_multi_tile_object(src)
@@ -764,7 +778,11 @@
moving_diagonally = SECOND_DIAG_STEP
. = step(src, SOUTH)
if(moving_diagonally == SECOND_DIAG_STEP)
+<<<<<<< HEAD
if(!. && set_dir_on_move && update_dir && !face_mouse) // SKYRAT EDIT CHANGE - && !face_mouse
+=======
+ if(!. && set_dir_on_move && update_dir)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
setDir(first_step_dir)
else if(!inertia_moving)
newtonian_move(direct)
@@ -811,7 +829,11 @@
last_move = direct
+<<<<<<< HEAD
if(set_dir_on_move && dir != direct && update_dir && !face_mouse) // SKYRAT EDIT CHANGE - && !face_mouse)
+=======
+ if(set_dir_on_move && dir != direct && update_dir)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
setDir(direct)
if(. && has_buckled_mobs() && !handle_buckled_mob_movement(loc, direct, glide_size_override)) //movement failed due to buckled mob(s)
. = FALSE
@@ -1256,9 +1278,12 @@
if(locate(/obj/structure/lattice) in range(1, get_turf(src))) //Not realistic but makes pushing things in space easier
return TRUE
+<<<<<<< HEAD
if(locate(/obj/structure/spacevine) in range(1, get_turf(src))) //SKYRAT EDIT: allow walking when vines are around
return TRUE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
@@ -1285,6 +1310,7 @@
/atom/movable/proc/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
set waitfor = FALSE
var/hitpush = TRUE
+<<<<<<< HEAD
var/impact_signal = SEND_SIGNAL(src, COMSIG_MOVABLE_PRE_IMPACT, hit_atom, throwingdatum)
if(impact_signal & COMPONENT_MOVABLE_IMPACT_FLIP_HITPUSH)
hitpush = FALSE // hacky, tie this to something else or a proper workaround later
@@ -1295,6 +1321,24 @@
return
SEND_SIGNAL(src, COMSIG_MOVABLE_IMPACT, hit_atom, throwingdatum)
return hit_atom.hitby(src, throwingdatum=throwingdatum, hitpush=hitpush)
+=======
+ var/impact_flags = pre_impact(hit_atom, throwingdatum)
+ if(impact_flags & COMPONENT_MOVABLE_IMPACT_NEVERMIND)
+ return // in case a signal interceptor broke or deleted the thing before we could process our hit
+ if(impact_flags & COMPONENT_MOVABLE_IMPACT_FLIP_HITPUSH)
+ hitpush = FALSE
+ var/caught = hit_atom.hitby(src, throwingdatum=throwingdatum, hitpush=hitpush)
+ SEND_SIGNAL(src, COMSIG_MOVABLE_IMPACT, hit_atom, throwingdatum, caught)
+ return caught
+
+///Called before we attempt to call hitby and send the COMSIG_MOVABLE_IMPACT signal
+/atom/movable/proc/pre_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
+ var/impact_flags = SEND_SIGNAL(src, COMSIG_MOVABLE_PRE_IMPACT, hit_atom, throwingdatum)
+ var/target_flags = SEND_SIGNAL(hit_atom, COMSIG_ATOM_PREHITBY, src, throwingdatum)
+ if(target_flags & COMSIG_HIT_PREVENTED)
+ impact_flags |= COMPONENT_MOVABLE_IMPACT_NEVERMIND
+ return impact_flags
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/atom/movable/hitby(atom/movable/hitting_atom, skipcatch, hitpush = TRUE, blocked, datum/thrownthing/throwingdatum)
if(HAS_TRAIT(src, TRAIT_NO_THROW_HITPUSH))
diff --git a/code/game/communications.dm b/code/game/communications.dm
index 2c87c58b628..8da755a45b7 100644
--- a/code/game/communications.dm
+++ b/code/game/communications.dm
@@ -110,6 +110,7 @@ GLOBAL_LIST_INIT(radiochannels, list(
RADIO_CHANNEL_SUPPLY = FREQ_SUPPLY,
RADIO_CHANNEL_SERVICE = FREQ_SERVICE,
RADIO_CHANNEL_AI_PRIVATE = FREQ_AI_PRIVATE,
+ RADIO_CHANNEL_ENTERTAINMENT = FREQ_ENTERTAINMENT,
RADIO_CHANNEL_CTF_RED = FREQ_CTF_RED,
RADIO_CHANNEL_CTF_BLUE = FREQ_CTF_BLUE,
RADIO_CHANNEL_CTF_GREEN = FREQ_CTF_GREEN,
@@ -134,6 +135,7 @@ GLOBAL_LIST_INIT(reverseradiochannels, list(
"[FREQ_SUPPLY]" = RADIO_CHANNEL_SUPPLY,
"[FREQ_SERVICE]" = RADIO_CHANNEL_SERVICE,
"[FREQ_AI_PRIVATE]" = RADIO_CHANNEL_AI_PRIVATE,
+ "[FREQ_ENTERTAINMENT]" = RADIO_CHANNEL_ENTERTAINMENT,
"[FREQ_CTF_RED]" = RADIO_CHANNEL_CTF_RED,
"[FREQ_CTF_BLUE]" = RADIO_CHANNEL_CTF_BLUE,
"[FREQ_CTF_GREEN]" = RADIO_CHANNEL_CTF_GREEN,
@@ -152,10 +154,18 @@ GLOBAL_LIST_INIT(radiocolors, list(
RADIO_CHANNEL_SUPPLY = "#a8732b",
RADIO_CHANNEL_SERVICE = "#6eaa2c",
RADIO_CHANNEL_AI_PRIVATE = "#ff00ff",
+<<<<<<< HEAD
RADIO_CHANNEL_CTF_RED = "#ff0000",
RADIO_CHANNEL_CTF_BLUE = "#0000ff",
RADIO_CHANNEL_CTF_GREEN = "#00ff00",
RADIO_CHANNEL_CTF_YELLOW = "#d1ba22"
+=======
+ RADIO_CHANNEL_ENTERTAINMENT = "#00ff99",
+ RADIO_CHANNEL_CTF_RED = "#ff0000",
+ RADIO_CHANNEL_CTF_BLUE = "#0000ff",
+ RADIO_CHANNEL_CTF_GREEN = "#00ff00",
+ RADIO_CHANNEL_CTF_YELLOW = "#d1ba22",
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
/datum/radio_frequency
diff --git a/code/game/data_huds.dm b/code/game/data_huds.dm
index c24f6156a61..6aa98d9158e 100644
--- a/code/game/data_huds.dm
+++ b/code/game/data_huds.dm
@@ -18,7 +18,11 @@
/datum/atom_hud/data
/datum/atom_hud/data/human/medical
+<<<<<<< HEAD
hud_icons = list(STATUS_HUD, HEALTH_HUD, DNR_HUD) // SKYRAT EDIT ADDITION - DNR_HUD
+=======
+ hud_icons = list(STATUS_HUD, HEALTH_HUD)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/atom_hud/data/human/medical/basic
@@ -47,7 +51,11 @@
hud_icons = list(ID_HUD)
/datum/atom_hud/data/human/security/advanced
+<<<<<<< HEAD
hud_icons = list(ID_HUD, IMPSEC_FIRST_HUD, IMPLOYAL_HUD, IMPSEC_SECOND_HUD, WANTED_HUD, PERMIT_HUD, DNR_HUD) //SKYRAT EDIT ADDITION - PERMIT_HUD, DNR_HUD
+=======
+ hud_icons = list(ID_HUD, IMPSEC_FIRST_HUD, IMPLOYAL_HUD, IMPSEC_SECOND_HUD, WANTED_HUD)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/atom_hud/data/human/fan_hud
hud_icons = list(FAN_HUD)
diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm
index 4e7410eef67..5ba5c82c7b6 100644
--- a/code/game/gamemodes/objective.dm
+++ b/code/game/gamemodes/objective.dm
@@ -19,13 +19,19 @@ GLOBAL_LIST_EMPTY(objectives) //SKYRAT EDIT ADDITION
var/admin_grantable = FALSE
/datum/objective/New(text)
+<<<<<<< HEAD
GLOB.objectives += src //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(text)
explanation_text = text
//Apparently objectives can be qdel'd. Learn a new thing every day
/datum/objective/Destroy()
+<<<<<<< HEAD
GLOB.objectives -= src //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ..()
/datum/objective/proc/get_owners() // Combine owner and team into a single list.
@@ -140,6 +146,7 @@ GLOBAL_LIST_EMPTY(objectives) //SKYRAT EDIT ADDITION
if(!HAS_TRAIT(SSstation, STATION_TRAIT_LATE_ARRIVALS) && istype(target_area, /area/shuttle/arrival))
return FALSE
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
if(SSticker.IsRoundInProgress() && istype(target_area, /area/centcom/interlink))
return FALSE
@@ -148,6 +155,8 @@ GLOBAL_LIST_EMPTY(objectives) //SKYRAT EDIT ADDITION
return FALSE
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
//dupe_search_range is a list of antag datums / minds / teams
@@ -241,7 +250,11 @@ GLOBAL_LIST_EMPTY(objectives) //SKYRAT EDIT ADDITION
/datum/objective/assassinate/update_explanation_text()
..()
if(target?.current)
+<<<<<<< HEAD
explanation_text = "Assassinate [target.name], the [!target_role_type ? target.assigned_role.title : target.special_role] ONCE." //SKYRAT EDIT CHANGE
+=======
+ explanation_text = "Assassinate [target.name], the [!target_role_type ? target.assigned_role.title : target.special_role]."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
explanation_text = "Free objective."
diff --git a/code/game/gamemodes/objective_items.dm b/code/game/gamemodes/objective_items.dm
index 2e82e549cd5..dc9d4d46565 100644
--- a/code/game/gamemodes/objective_items.dm
+++ b/code/game/gamemodes/objective_items.dm
@@ -388,10 +388,15 @@
return add_item_to_steal(src, /obj/item/clothing/accessory/medal/gold/captain)
/datum/objective_item/steal/hypo
+<<<<<<< HEAD
//name = "the hypospray" // ORIGINAL
name = "the Chief Medical Officer's hypospray" // SKYRAT EDIT CHANGE
//targetitem = /obj/item/reagent_containers/hypospray/cmo // ORIGINAL
targetitem = /obj/item/hypospray/mkii/deluxe/cmo // SKYRAT EDIT CHANGE
+=======
+ name = "the hypospray"
+ targetitem = /obj/item/reagent_containers/hypospray/cmo
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
excludefromjob = list(JOB_CHIEF_MEDICAL_OFFICER)
item_owner = list(JOB_CHIEF_MEDICAL_OFFICER)
exists_on_map = TRUE
@@ -399,8 +404,13 @@
steal_hint = "The Chief Medical Officer's personal medical injector. \
Usually found amongst their medical supplies on their person, in their belt, or otherwise in their locker."
+<<<<<<< HEAD
/obj/item/hypospray/mkii/deluxe/cmo/add_stealing_item_objective() // SKYRAT EDIT CHANGE
return add_item_to_steal(src, /obj/item/hypospray/mkii/deluxe/cmo) // SKYRAT EDIT CHANGE
+=======
+/obj/item/reagent_containers/hypospray/cmo/add_stealing_item_objective()
+ return add_item_to_steal(src, /obj/item/reagent_containers/hypospray/cmo)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/objective_item/steal/nukedisc
name = "the nuclear authentication disk"
@@ -518,12 +528,19 @@
if(istype(potential_storage, /obj/item/aicard))
var/obj/item/aicard/card = potential_storage
being = card.AI // why is this one capitalized and the other one not? i wish i knew.
+<<<<<<< HEAD
// SKYRAT EDIT REMOVAL START - MOD PAI
/*else if(istype(potential_storage, /obj/item/mod/control))
var/obj/item/mod/control/suit = potential_storage
if(isAI(suit.ai_assistant))
being = suit.ai_assistant
*/ // SKYRAT EDIT REMOVAL END
+=======
+ else if(istype(potential_storage, /obj/item/mod/control))
+ var/obj/item/mod/control/suit = potential_storage
+ if(isAI(suit.ai_assistant))
+ being = suit.ai_assistant
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
stack_trace("check_special_completion() called on [src] with [potential_storage] ([potential_storage.type])! That's not supposed to happen!")
return FALSE
diff --git a/code/game/machinery/PDApainter.dm b/code/game/machinery/PDApainter.dm
index 679a3182a57..b652b9147f0 100644
--- a/code/game/machinery/PDApainter.dm
+++ b/code/game/machinery/PDApainter.dm
@@ -279,7 +279,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/pdapainter/ui_act(action, params)
+=======
+/obj/machinery/pdapainter/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/_machinery.dm b/code/game/machinery/_machinery.dm
index 40e06362d97..7868bf1fe45 100644
--- a/code/game/machinery/_machinery.dm
+++ b/code/game/machinery/_machinery.dm
@@ -634,7 +634,10 @@
if(!.)
return FALSE
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if((interaction_flags_machine & INTERACT_MACHINE_REQUIRES_SIGHT) && user.is_blind())
to_chat(user, span_warning("This machine requires sight to use."))
return FALSE
@@ -687,10 +690,18 @@
return ..()
/obj/machinery/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+<<<<<<< HEAD
add_fingerprint(usr)
update_last_used(usr)
if(HAS_AI_ACCESS(usr) && !GLOB.cameranet.checkTurfVis(get_turf(src))) //We check if they're an AI specifically here, so borgs can still access off-camera stuff.
to_chat(usr, span_warning("You can no longer connect to this device!"))
+=======
+ var/mob/user = ui.user
+ add_fingerprint(user)
+ update_last_used(user)
+ if(isAI(user) && !GLOB.cameranet.checkTurfVis(get_turf(src))) //We check if they're an AI specifically here, so borgs/adminghosts/human wand can still access off-camera stuff.
+ to_chat(user, span_warning("You can no longer connect to this device!"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return ..()
diff --git a/code/game/machinery/cell_charger.dm b/code/game/machinery/cell_charger.dm
index bddc0492c3c..feb45cbadba 100644
--- a/code/game/machinery/cell_charger.dm
+++ b/code/game/machinery/cell_charger.dm
@@ -7,7 +7,11 @@
circuit = /obj/item/circuitboard/machine/cell_charger
pass_flags = PASSTABLE
var/obj/item/stock_parts/power_store/cell/charging = null
+<<<<<<< HEAD
var/charge_rate = STANDARD_CELL_RATE //SKYRAT EDIT CHANGE - ORIGINAL: 0.25 * STANDARD_CELL_RATE
+=======
+ var/charge_rate = 0.25 * STANDARD_CELL_RATE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/* OVERWRITTEN IN modular_skyrat\modules\aesthetics\cells\cell.dm
/obj/machinery/cell_charger/update_overlays()
@@ -25,7 +29,10 @@
. += "ccharger-[charging.connector_type]-on"
if((charging.charge > 0.01) && charging.charge_light_type)
. += mutable_appearance('icons/obj/machines/cell_charger.dmi', "cell-[charging.charge_light_type]-o[(charging.percent() >= 99.5) ? 2 : 1]")
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/cell_charger/examine(mob/user)
. = ..()
@@ -133,7 +140,11 @@
/obj/machinery/cell_charger/RefreshParts()
. = ..()
+<<<<<<< HEAD
charge_rate = STANDARD_CELL_RATE //SKYRAT EDIT CHANGE - ORIGINAL: 0.25 * STANDARD_CELL_RATE
+=======
+ charge_rate = 0.25 * STANDARD_CELL_RATE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/datum/stock_part/capacitor/capacitor in component_parts)
charge_rate *= capacitor.tier
diff --git a/code/game/machinery/civilian_bounties.dm b/code/game/machinery/civilian_bounties.dm
index fa0d28c999c..af495556bed 100644
--- a/code/game/machinery/civilian_bounties.dm
+++ b/code/game/machinery/civilian_bounties.dm
@@ -151,7 +151,11 @@
say("Requesting ID card has no job assignment registered!")
return FALSE
var/list/datum/bounty/crumbs = list(random_bounty(pot_acc.account_job.bounty_types), // We want to offer 2 bounties from their appropriate job catagories
+<<<<<<< HEAD
random_bounty(pot_acc.account_job.bounty_types), // and 1 guarenteed assistant bounty if the other 2 suck.
+=======
+ random_bounty(pot_acc.account_job.bounty_types), // and 1 guaranteed assistant bounty if the other 2 suck.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
random_bounty(CIV_JOB_BASIC))
COOLDOWN_START(pot_acc, bounty_timer, (5 MINUTES) - cooldown_reduction)
pot_acc.bounties = crumbs
@@ -203,7 +207,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/piratepad_control/civilian/ui_act(action, params)
+=======
+/obj/machinery/computer/piratepad_control/civilian/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/_computer.dm b/code/game/machinery/computer/_computer.dm
index e37e915aff6..efa31ad8c2f 100644
--- a/code/game/machinery/computer/_computer.dm
+++ b/code/game/machinery/computer/_computer.dm
@@ -132,11 +132,14 @@
/obj/machinery/computer/ui_interact(mob/user, datum/tgui/ui)
SHOULD_CALL_PARENT(TRUE)
+<<<<<<< HEAD
//SKYRAT EDIT ADDITON BEGIN - AESTHETICS
if(clicksound && world.time > next_clicksound && isliving(user))
next_clicksound = world.time + rand(50, 150)
playsound(src, get_sfx_skyrat(clicksound), clickvol)
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
update_use_power(ACTIVE_POWER_USE)
diff --git a/code/game/machinery/computer/aifixer.dm b/code/game/machinery/computer/aifixer.dm
index ba3041cc484..d6cafec3803 100644
--- a/code/game/machinery/computer/aifixer.dm
+++ b/code/game/machinery/computer/aifixer.dm
@@ -46,7 +46,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/aifixer/ui_act(action, params)
+=======
+/obj/machinery/computer/aifixer/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/arcade/orion.dm b/code/game/machinery/computer/arcade/orion.dm
index 85bebddd25c..a2bc73e0ac4 100644
--- a/code/game/machinery/computer/arcade/orion.dm
+++ b/code/game/machinery/computer/arcade/orion.dm
@@ -181,7 +181,11 @@
return static_data
+<<<<<<< HEAD
/obj/machinery/computer/arcade/orion_trail/ui_act(action, list/params)
+=======
+/obj/machinery/computer/arcade/orion_trail/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/atmos_alert.dm b/code/game/machinery/computer/atmos_alert.dm
index 5f3d7dd6e9e..a9a6e529461 100644
--- a/code/game/machinery/computer/atmos_alert.dm
+++ b/code/game/machinery/computer/atmos_alert.dm
@@ -28,7 +28,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/atmos_alert/ui_act(action, params)
+=======
+/obj/machinery/computer/atmos_alert/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/atmos_computers/_atmos_control.dm b/code/game/machinery/computer/atmos_computers/_atmos_control.dm
index cdd0349ac85..814f577ff8d 100644
--- a/code/game/machinery/computer/atmos_computers/_atmos_control.dm
+++ b/code/game/machinery/computer/atmos_computers/_atmos_control.dm
@@ -152,7 +152,11 @@
data["chambers"] += list(chamber_info)
return data
+<<<<<<< HEAD
/obj/machinery/computer/atmos_control/ui_act(action, params)
+=======
+/obj/machinery/computer/atmos_control/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(. || !(control || reconnecting))
return
diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm
index 750a1d5d53e..0292f30e1d9 100644
--- a/code/game/machinery/computer/buildandrepair.dm
+++ b/code/game/machinery/computer/buildandrepair.dm
@@ -304,10 +304,13 @@
new_machine.balloon_alert(user, "monitor connected")
new_machine.setDir(dir)
transfer_fingerprints_to(new_machine)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - Connecting Computers
for(var/obj/machinery/computer/selected in range(1,src))
selected.update_overlays()
// SKYRAT EDIT ADDITION END - Connecting Computers
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(istype(new_machine, /obj/machinery/computer))
var/obj/machinery/computer/new_computer = new_machine
diff --git a/code/game/machinery/computer/camera.dm b/code/game/machinery/computer/camera.dm
index 64955913e40..7197ab0683d 100644
--- a/code/game/machinery/computer/camera.dm
+++ b/code/game/machinery/computer/camera.dm
@@ -50,7 +50,11 @@
/obj/machinery/computer/security/ui_interact(mob/user, datum/tgui/ui)
. = ..()
+<<<<<<< HEAD
if(!user.can_perform_action(src, NEED_DEXTERITY|ALLOW_SILICON_REACH)) //prevents monkeys from using camera consoles
+=======
+ if(!user.client) //prevents errors by trying to pass clients that don't exist.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
// Update UI
ui = SStgui.try_update_ui(user, src, ui)
@@ -108,7 +112,7 @@
return data
-/obj/machinery/computer/security/ui_act(action, params)
+/obj/machinery/computer/security/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/camera_advanced.dm b/code/game/machinery/computer/camera_advanced.dm
index 45bfeb9fcef..11960116063 100644
--- a/code/game/machinery/computer/camera_advanced.dm
+++ b/code/game/machinery/computer/camera_advanced.dm
@@ -60,7 +60,11 @@
return ..()
/obj/machinery/computer/camera_advanced/process()
+<<<<<<< HEAD
if(!can_use(current_user) || (issilicon(current_user) && !current_user.has_unlimited_silicon_privilege))
+=======
+ if(!can_use(current_user) || (issilicon(current_user) && !HAS_SILICON_ACCESS(current_user)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
unset_machine()
return PROCESS_KILL
diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm
index 757c9df3d95..92b7bb7cb86 100755
--- a/code/game/machinery/computer/communications.dm
+++ b/code/game/machinery/computer/communications.dm
@@ -5,6 +5,7 @@
#define STATE_CHANGING_STATUS "changing_status"
#define STATE_MAIN "main"
#define STATE_MESSAGES "messages"
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
GLOBAL_VAR_INIT(cops_arrived, FALSE)
#define EMERGENCY_RESPONSE_POLICE "WOOP WOOP THAT'S THE SOUND OF THE POLICE"
@@ -12,6 +13,8 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
#define EMERGENCY_RESPONSE_EMT "AAAAAUGH, I'M DYING, I NEEEEEEEEEED A MEDIC BAG"
#define EMERGENCY_RESPONSE_EMAG "AYO THE PIZZA HERE"
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// The communications computer
/obj/machinery/computer/communications
@@ -116,12 +119,15 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
if (HAS_SILICON_ACCESS(user))
return TRUE
return authenticated
+<<<<<<< HEAD
/// Skyrat Edit Start - Are we the AI?
/obj/machinery/computer/communications/proc/authenticated_as_ai_or_captain(mob/user)
if (isAI(user))
return TRUE
return ACCESS_CAPTAIN in authorize_access //Skyrat Edit End
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/computer/communications/attackby(obj/I, mob/user, params)
if(isidcard(I))
@@ -144,7 +150,10 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
caller_card.use_charge(user)
addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(summon_battlecruiser), caller_card.team), rand(20 SECONDS, 1 MINUTES))
playsound(src, 'sound/machines/terminal_alert.ogg', 50, FALSE)
+<<<<<<< HEAD
priority_announce("Attention crew: deep-space sensors detect a Syndicate battlecruiser-class signature subspace rift forming near your station. Estimated time until arrival: three to five minutes.", "[command_name()] High-Priority Update") //SKYRAT EDIT ADDITION: announcement on battlecruiser call
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
if(obj_flags & EMAGGED)
@@ -156,7 +165,11 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
playsound(src, 'sound/machines/terminal_alert.ogg', 50, FALSE)
return TRUE
+<<<<<<< HEAD
/obj/machinery/computer/communications/ui_act(action, list/params)
+=======
+/obj/machinery/computer/communications/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/static/list/approved_states = list(STATE_BUYING_SHUTTLE, STATE_CHANGING_STATUS, STATE_MAIN, STATE_MESSAGES)
. = ..()
@@ -166,11 +179,19 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
if (!has_communication())
return
+<<<<<<< HEAD
+=======
+ var/mob/user = ui.user
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = TRUE
switch (action)
if ("answerMessage")
+<<<<<<< HEAD
if (!authenticated(usr))
+=======
+ if (!authenticated(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/answer_index = params["answer"]
@@ -178,7 +199,11 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
// If either of these aren't numbers, then bad voodoo.
if(!isnum(answer_index) || !isnum(message_index))
+<<<<<<< HEAD
message_admins("[ADMIN_LOOKUPFLW(usr)] provided an invalid index type when replying to a message on [src] [ADMIN_JMP(src)]. This should not happen. Please check with a maintainer and/or consult tgui logs.")
+=======
+ message_admins("[ADMIN_LOOKUPFLW(user)] provided an invalid index type when replying to a message on [src] [ADMIN_JMP(src)]. This should not happen. Please check with a maintainer and/or consult tgui logs.")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
CRASH("Non-numeric index provided when answering comms console message.")
if (!answer_index || !message_index || answer_index < 1 || message_index < 1)
@@ -189,11 +214,16 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
message.answered = answer_index
message.answer_callback.InvokeAsync()
if ("callShuttle")
+<<<<<<< HEAD
if (!authenticated(usr) || syndicate)
+=======
+ if (!authenticated(user) || syndicate)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/reason = trim(params["reason"], MAX_MESSAGE_LEN)
if (length(reason) < CALL_SHUTTLE_REASON_LENGTH)
return
+<<<<<<< HEAD
SSshuttle.requestEvac(usr, reason)
post_status("shuttle")
if ("changeSecurityLevel")
@@ -210,17 +240,40 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
return
if (!(ACCESS_CAPTAIN in id_card.access))
to_chat(usr, span_warning("You are not authorized to do this!"))
+=======
+ SSshuttle.requestEvac(user, reason)
+ post_status("shuttle")
+ if ("changeSecurityLevel")
+ if (!authenticated_as_silicon_or_captain(user))
+ return
+
+ // Check if they have
+ if (!HAS_SILICON_ACCESS(user))
+ var/obj/item/held_item = user.get_active_held_item()
+ var/obj/item/card/id/id_card = held_item?.GetID()
+ if (!istype(id_card))
+ to_chat(user, span_warning("You need to swipe your ID!"))
+ playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, FALSE)
+ return
+ if (!(ACCESS_CAPTAIN in id_card.access))
+ to_chat(user, span_warning("You are not authorized to do this!"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, FALSE)
return
var/new_sec_level = SSsecurity_level.text_level_to_number(params["newSecurityLevel"])
+<<<<<<< HEAD
if (new_sec_level < SEC_LEVEL_GREEN || new_sec_level > SEC_LEVEL_AMBER) //SKYRAT EDIT CHANGE - ALERTS
+=======
+ if (new_sec_level != SEC_LEVEL_GREEN && new_sec_level != SEC_LEVEL_BLUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if (SSsecurity_level.get_current_level_as_number() == new_sec_level)
return
SSsecurity_level.set_level(new_sec_level)
+<<<<<<< HEAD
to_chat(usr, span_notice("Authorization confirmed. Modifying security level."))
playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, FALSE)
@@ -232,17 +285,38 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
alert_level_tick += 1
if ("deleteMessage")
if (!authenticated(usr))
+=======
+ to_chat(user, span_notice("Authorization confirmed. Modifying security level."))
+ playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, FALSE)
+
+ // Only notify people if an actual change happened
+ user.log_message("changed the security level to [params["newSecurityLevel"]] with [src].", LOG_GAME)
+ message_admins("[ADMIN_LOOKUPFLW(user)] has changed the security level to [params["newSecurityLevel"]] with [src] at [AREACOORD(user)].")
+ deadchat_broadcast(" has changed the security level to [params["newSecurityLevel"]] with [src] at [span_name("[get_area_name(user, TRUE)]")].", span_name("[user.real_name]"), user, message_type=DEADCHAT_ANNOUNCEMENT)
+
+ alert_level_tick += 1
+ if ("deleteMessage")
+ if (!authenticated(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/message_index = text2num(params["message"])
if (!message_index)
return
LAZYREMOVE(messages, LAZYACCESS(messages, message_index))
if ("makePriorityAnnouncement")
+<<<<<<< HEAD
if (!authenticated_as_silicon_or_captain(usr) && !syndicate)
return
make_announcement(usr)
if ("messageAssociates")
if (!authenticated_as_ai_or_captain(usr)) //Skyrat edit | Allows AI and Captain to send messages
+=======
+ if (!authenticated_as_silicon_or_captain(user) && !syndicate)
+ return
+ make_announcement(user)
+ if ("messageAssociates")
+ if (!authenticated_as_non_silicon_captain(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if (!COOLDOWN_FINISHED(src, important_action_cooldown))
return
@@ -252,6 +326,7 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
var/emagged = obj_flags & EMAGGED
if (emagged)
+<<<<<<< HEAD
message_syndicate(message, usr)
to_chat(usr, span_danger("SYSERR @l(19833)of(transmit.dm): !@$ MESSAGE TRANSMITTED TO SYNDICATE COMMAND."))
else if(syndicate)
@@ -270,6 +345,26 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
if (can_buy_shuttles_or_fail_reason != TRUE)
if (can_buy_shuttles_or_fail_reason != FALSE)
to_chat(usr, span_alert("[can_buy_shuttles_or_fail_reason]"))
+=======
+ message_syndicate(message, user)
+ to_chat(user, span_danger("SYSERR @l(19833)of(transmit.dm): !@$ MESSAGE TRANSMITTED TO SYNDICATE COMMAND."))
+ else if(syndicate)
+ message_syndicate(message, user)
+ to_chat(user, span_danger("Message transmitted to Syndicate Command."))
+ else
+ message_centcom(message, user)
+ to_chat(user, span_notice("Message transmitted to Central Command."))
+
+ var/associates = (emagged || syndicate) ? "the Syndicate": "CentCom"
+ user.log_talk(message, LOG_SAY, tag = "message to [associates]")
+ deadchat_broadcast(" has messaged [associates], \"[message]\" at [span_name("[get_area_name(user, TRUE)]")].", span_name("[user.real_name]"), user, message_type = DEADCHAT_ANNOUNCEMENT)
+ COOLDOWN_START(src, important_action_cooldown, IMPORTANT_ACTION_COOLDOWN)
+ if ("purchaseShuttle")
+ var/can_buy_shuttles_or_fail_reason = can_buy_shuttles(user)
+ if (can_buy_shuttles_or_fail_reason != TRUE)
+ if (can_buy_shuttles_or_fail_reason != FALSE)
+ to_chat(user, span_alert("[can_buy_shuttles_or_fail_reason]"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/list/shuttles = flatten_list(SSmapping.shuttle_templates)
var/datum/map_template/shuttle/shuttle = locate(params["shuttle"]) in shuttles
@@ -278,7 +373,11 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
if (!can_purchase_this_shuttle(shuttle))
return
if (!shuttle.prerequisites_met())
+<<<<<<< HEAD
to_chat(usr, span_alert("You have not met the requirements for purchasing this shuttle."))
+=======
+ to_chat(user, span_alert("You have not met the requirements for purchasing this shuttle."))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/datum/bank_account/bank_account = SSeconomy.get_dep_account(ACCOUNT_CAR)
if (bank_account.account_balance < shuttle.credit_cost)
@@ -291,24 +390,41 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
SSshuttle.action_load(shuttle, replace = TRUE)
bank_account.adjust_money(-shuttle.credit_cost)
+<<<<<<< HEAD
var/purchaser_name = (obj_flags & EMAGGED) ? scramble_message_replace_chars("AUTHENTICATION FAILURE: CVE-2018-17107", 60) : usr.real_name
minor_announce("[purchaser_name] has purchased [shuttle.name] for [shuttle.credit_cost] credits.[shuttle.extra_desc ? " [shuttle.extra_desc]" : ""]" , "Shuttle Purchase")
message_admins("[ADMIN_LOOKUPFLW(usr)] purchased [shuttle.name].")
log_shuttle("[key_name(usr)] has purchased [shuttle.name].")
+=======
+ var/purchaser_name = (obj_flags & EMAGGED) ? scramble_message_replace_chars("AUTHENTICATION FAILURE: CVE-2018-17107", 60) : user.real_name
+ minor_announce("[purchaser_name] has purchased [shuttle.name] for [shuttle.credit_cost] credits.[shuttle.extra_desc ? " [shuttle.extra_desc]" : ""]" , "Shuttle Purchase")
+
+ message_admins("[ADMIN_LOOKUPFLW(user)] purchased [shuttle.name].")
+ log_shuttle("[key_name(user)] has purchased [shuttle.name].")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SSblackbox.record_feedback("text", "shuttle_purchase", 1, shuttle.name)
state = STATE_MAIN
if ("recallShuttle")
// AIs cannot recall the shuttle
+<<<<<<< HEAD
if (!authenticated(usr) || HAS_SILICON_ACCESS(usr) || syndicate)
return
SSshuttle.cancelEvac(usr)
if ("requestNukeCodes")
if (!authenticated_as_non_silicon_captain(usr))
+=======
+ if (!authenticated(user) || HAS_SILICON_ACCESS(user) || syndicate)
+ return
+ SSshuttle.cancelEvac(user)
+ if ("requestNukeCodes")
+ if (!authenticated_as_non_silicon_captain(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if (!COOLDOWN_FINISHED(src, important_action_cooldown))
return
var/reason = trim(html_encode(params["reason"]), MAX_MESSAGE_LEN)
+<<<<<<< HEAD
nuke_request(reason, usr)
to_chat(usr, span_notice("Request sent."))
usr.log_message("has requested the nuclear codes from CentCom with reason \"[reason]\"", LOG_SAY)
@@ -327,6 +443,26 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
if (!authenticated_as_non_silicon_captain(usr))
return
if (!can_send_messages_to_other_sectors(usr))
+=======
+ nuke_request(reason, user)
+ to_chat(user, span_notice("Request sent."))
+ user.log_message("has requested the nuclear codes from CentCom with reason \"[reason]\"", LOG_SAY)
+ priority_announce("The codes for the on-station nuclear self-destruct have been requested by [user]. Confirmation or denial of this request will be sent shortly.", "Nuclear Self-Destruct Codes Requested", SSstation.announcer.get_rand_report_sound())
+ playsound(src, 'sound/machines/terminal_prompt.ogg', 50, FALSE)
+ COOLDOWN_START(src, important_action_cooldown, IMPORTANT_ACTION_COOLDOWN)
+ if ("restoreBackupRoutingData")
+ if (!authenticated_as_non_silicon_captain(user))
+ return
+ if (!(obj_flags & EMAGGED))
+ return
+ to_chat(user, span_notice("Backup routing data restored."))
+ playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, FALSE)
+ obj_flags &= ~EMAGGED
+ if ("sendToOtherSector")
+ if (!authenticated_as_non_silicon_captain(user))
+ return
+ if (!can_send_messages_to_other_sectors(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if (!COOLDOWN_FINISHED(src, important_action_cooldown))
return
@@ -338,32 +474,52 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
GLOB.communications_controller.soft_filtering = FALSE
var/list/hard_filter_result = is_ic_filtered(message)
if(hard_filter_result)
+<<<<<<< HEAD
tgui_alert(usr, "Your message contains: (\"[hard_filter_result[CHAT_FILTER_INDEX_WORD]]\"), which is not allowed on this server.")
+=======
+ tgui_alert(user, "Your message contains: (\"[hard_filter_result[CHAT_FILTER_INDEX_WORD]]\"), which is not allowed on this server.")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/list/soft_filter_result = is_soft_ooc_filtered(message)
if(soft_filter_result)
+<<<<<<< HEAD
if(tgui_alert(usr,"Your message contains \"[soft_filter_result[CHAT_FILTER_INDEX_WORD]]\". \"[soft_filter_result[CHAT_FILTER_INDEX_REASON]]\", Are you sure you want to use it?", "Soft Blocked Word", list("Yes", "No")) != "Yes")
return
message_admins("[ADMIN_LOOKUPFLW(usr)] has passed the soft filter for \"[soft_filter_result[CHAT_FILTER_INDEX_WORD]]\". They may be using a disallowed term for a cross-station message. Increasing delay time to reject.\n\n Message: \"[html_encode(message)]\"")
log_admin_private("[key_name(usr)] has passed the soft filter for \"[soft_filter_result[CHAT_FILTER_INDEX_WORD]]\". They may be using a disallowed term for a cross-station message. Increasing delay time to reject.\n\n Message: \"[message]\"")
+=======
+ if(tgui_alert(user,"Your message contains \"[soft_filter_result[CHAT_FILTER_INDEX_WORD]]\". \"[soft_filter_result[CHAT_FILTER_INDEX_REASON]]\", Are you sure you want to use it?", "Soft Blocked Word", list("Yes", "No")) != "Yes")
+ return
+ message_admins("[ADMIN_LOOKUPFLW(user)] has passed the soft filter for \"[soft_filter_result[CHAT_FILTER_INDEX_WORD]]\". They may be using a disallowed term for a cross-station message. Increasing delay time to reject.\n\n Message: \"[html_encode(message)]\"")
+ log_admin_private("[key_name(user)] has passed the soft filter for \"[soft_filter_result[CHAT_FILTER_INDEX_WORD]]\". They may be using a disallowed term for a cross-station message. Increasing delay time to reject.\n\n Message: \"[message]\"")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOB.communications_controller.soft_filtering = TRUE
playsound(src, 'sound/machines/terminal_prompt_confirm.ogg', 50, FALSE)
var/destination = params["destination"]
+<<<<<<< HEAD
usr.log_message("is about to send the following message to [destination]: [message]", LOG_GAME)
to_chat(
GLOB.admins,
span_adminnotice( \
"CROSS-SECTOR MESSAGE (OUTGOING): [ADMIN_LOOKUPFLW(usr)] is about to send \
+=======
+ user.log_message("is about to send the following message to [destination]: [message]", LOG_GAME)
+ to_chat(
+ GLOB.admins,
+ span_adminnotice( \
+ "CROSS-SECTOR MESSAGE (OUTGOING): [ADMIN_LOOKUPFLW(user)] is about to send \
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
the following message to [destination] (will autoapprove in [GLOB.communications_controller.soft_filtering ? DisplayTimeText(EXTENDED_CROSS_SECTOR_CANCEL_TIME) : DisplayTimeText(CROSS_SECTOR_CANCEL_TIME)]): \
REJECT \
[html_encode(message)]" \
)
)
+<<<<<<< HEAD
send_cross_comms_message_timer = addtimer(CALLBACK(src, PROC_REF(send_cross_comms_message), usr, destination, message), GLOB.communications_controller.soft_filtering ? EXTENDED_CROSS_SECTOR_CANCEL_TIME : CROSS_SECTOR_CANCEL_TIME, TIMER_STOPPABLE)
COOLDOWN_START(src, important_action_cooldown, IMPORTANT_ACTION_COOLDOWN)
@@ -377,13 +533,32 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
set_state(usr, params["state"])
if ("setStatusMessage")
if (!authenticated(usr))
+=======
+ send_cross_comms_message_timer = addtimer(CALLBACK(src, PROC_REF(send_cross_comms_message), user, destination, message), GLOB.communications_controller.soft_filtering ? EXTENDED_CROSS_SECTOR_CANCEL_TIME : CROSS_SECTOR_CANCEL_TIME, TIMER_STOPPABLE)
+
+ COOLDOWN_START(src, important_action_cooldown, IMPORTANT_ACTION_COOLDOWN)
+ if ("setState")
+ if (!authenticated(user))
+ return
+ if (!(params["state"] in approved_states))
+ return
+ if (state == STATE_BUYING_SHUTTLE && can_buy_shuttles(user) != TRUE)
+ return
+ set_state(usr, params["state"])
+ if ("setStatusMessage")
+ if (!authenticated(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/line_one = reject_bad_text(params["upperText"] || "", MAX_STATUS_LINE_LENGTH)
var/line_two = reject_bad_text(params["lowerText"] || "", MAX_STATUS_LINE_LENGTH)
post_status("message", line_one, line_two)
last_status_display = list(line_one, line_two)
if ("setStatusPicture")
+<<<<<<< HEAD
if (!authenticated(usr))
+=======
+ if (!authenticated(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/picture = params["picture"]
if (!(picture in GLOB.status_display_approved_pictures))
@@ -409,10 +584,17 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
authenticated = TRUE
authorize_access = SSid_access.get_region_access_list(list(REGION_ALL_STATION))
authorize_name = "Unknown"
+<<<<<<< HEAD
to_chat(usr, span_warning("[src] lets out a quiet alarm as its login is overridden."))
playsound(src, 'sound/machines/terminal_alert.ogg', 25, FALSE)
else if(isliving(usr))
var/mob/living/L = usr
+=======
+ to_chat(user, span_warning("[src] lets out a quiet alarm as its login is overridden."))
+ playsound(src, 'sound/machines/terminal_alert.ogg', 25, FALSE)
+ else if(isliving(user))
+ var/mob/living/L = user
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/obj/item/card/id/id_card = L.get_idcard(hand_first = TRUE)
if (check_access(id_card))
authenticated = TRUE
@@ -424,6 +606,7 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
imprint_gps(gps_tag = "Encrypted Communications Channel")
if ("toggleEmergencyAccess")
+<<<<<<< HEAD
if(emergency_access_cooldown(usr)) //if were in cooldown, dont allow the following code
return
if (!authenticated_as_silicon_or_captain(usr))
@@ -516,6 +699,61 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
else if((last_toggled + EMERGENCY_ACCESS_COOLDOWN) < world.time)
toggle_uses = 0 //either cooldown is done, or we just havent touched it in 30 seconds, either way reset uses
+=======
+ if(emergency_access_cooldown(user)) //if were in cooldown, dont allow the following code
+ return
+ if (!authenticated_as_silicon_or_captain(user))
+ return
+ if (GLOB.emergency_access)
+ revoke_maint_all_access()
+ user.log_message("disabled emergency maintenance access.", LOG_GAME)
+ message_admins("[ADMIN_LOOKUPFLW(user)] disabled emergency maintenance access.")
+ deadchat_broadcast(" disabled emergency maintenance access at [span_name("[get_area_name(user, TRUE)]")].", span_name("[user.real_name]"), user, message_type = DEADCHAT_ANNOUNCEMENT)
+ else
+ make_maint_all_access()
+ user.log_message("enabled emergency maintenance access.", LOG_GAME)
+ message_admins("[ADMIN_LOOKUPFLW(user)] enabled emergency maintenance access.")
+ deadchat_broadcast(" enabled emergency maintenance access at [span_name("[get_area_name(user, TRUE)]")].", span_name("[user.real_name]"), user, message_type = DEADCHAT_ANNOUNCEMENT)
+ // Request codes for the Captain's Spare ID safe.
+ if("requestSafeCodes")
+ if(SSjob.assigned_captain)
+ to_chat(user, span_warning("There is already an assigned Captain or Acting Captain on deck!"))
+ return
+
+ if(SSjob.safe_code_timer_id)
+ to_chat(user, span_warning("The safe code has already been requested and is being delivered to your station!"))
+ return
+
+ if(SSjob.safe_code_requested)
+ to_chat(user, span_warning("The safe code has already been requested and delivered to your station!"))
+ return
+
+ if(!SSid_access.spare_id_safe_code)
+ to_chat(user, span_warning("There is no safe code to deliver to your station!"))
+ return
+
+ var/turf/pod_location = get_turf(src)
+
+ SSjob.safe_code_request_loc = pod_location
+ SSjob.safe_code_requested = TRUE
+ SSjob.safe_code_timer_id = addtimer(CALLBACK(SSjob, TYPE_PROC_REF(/datum/controller/subsystem/job, send_spare_id_safe_code), pod_location), 120 SECONDS, TIMER_UNIQUE | TIMER_STOPPABLE)
+ minor_announce("Due to staff shortages, your station has been approved for delivery of access codes to secure the Captain's Spare ID. Delivery via drop pod at [get_area(pod_location)]. ETA 120 seconds.")
+
+/obj/machinery/computer/communications/proc/emergency_access_cooldown(mob/user)
+ if(toggle_uses == toggle_max_uses) //you have used up free uses already, do it one more time and start a cooldown
+ to_chat(user, span_warning("This was your last free use without cooldown, you will not be able to use this again for [DisplayTimeText(EMERGENCY_ACCESS_COOLDOWN)]."))
+ COOLDOWN_START(src, emergency_access_cooldown, EMERGENCY_ACCESS_COOLDOWN)
+ ++toggle_uses //add a use so that this if() is false the next time you try this button
+ return FALSE
+
+ if(!COOLDOWN_FINISHED(src, emergency_access_cooldown))
+ var/time_left = DisplayTimeText(COOLDOWN_TIMELEFT(src, emergency_access_cooldown), 1)
+ to_chat(user, span_warning("Emergency Access is still in cooldown for [time_left]!"))
+ return TRUE //dont use the button, we are in cooldown
+ else if((last_toggled + EMERGENCY_ACCESS_COOLDOWN) < world.time)
+ toggle_uses = 0 //either cooldown is done, or we just havent touched it in 30 seconds, either way reset uses
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
++toggle_uses //add a use
last_toggled = world.time
return FALSE //if we are not in cooldown, allow using the button
@@ -525,13 +763,18 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
var/list/payload = list()
+<<<<<<< HEAD
payload["sender_ckey"] = usr.ckey
+=======
+ payload["sender_ckey"] = user.ckey
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/network_name = CONFIG_GET(string/cross_comms_network)
if(network_name)
payload["network"] = network_name
if(GLOB.communications_controller.soft_filtering)
payload["is_filtered"] = TRUE
+<<<<<<< HEAD
var/name_to_send = "[CONFIG_GET(string/cross_comms_name)]([station_name()])" //SKYRAT EDIT ADDITION
send2otherserver(html_decode(name_to_send), message, "Comms_Console", destination == "all" ? null : list(destination), additional_data = payload) //SKYRAT EDIT END
@@ -539,6 +782,13 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
usr.log_talk(message, LOG_SAY, tag = "message to the other server")
message_admins("[ADMIN_LOOKUPFLW(usr)] has sent a message to the other server\[s].")
deadchat_broadcast(" has sent an outgoing message to the other station(s).", "[usr.real_name]", usr, message_type = DEADCHAT_ANNOUNCEMENT)
+=======
+ send2otherserver(html_decode(station_name()), message, "Comms_Console", destination == "all" ? null : list(destination), additional_data = payload)
+ minor_announce(message, title = "Outgoing message to allied station")
+ user.log_talk(message, LOG_SAY, tag = "message to the other server")
+ message_admins("[ADMIN_LOOKUPFLW(user)] has sent a message to the other server\[s].")
+ deadchat_broadcast(" has sent an outgoing message to the other station(s). ", "[user.real_name]", user, message_type = DEADCHAT_ANNOUNCEMENT)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOB.communications_controller.soft_filtering = FALSE // set it to false at the end of the proc to ensure that everything prior reads as intended
/obj/machinery/computer/communications/ui_data(mob/user)
@@ -583,7 +833,10 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
data["canSendToSectors"] = FALSE
data["canSetAlertLevel"] = FALSE
data["canToggleEmergencyAccess"] = FALSE
+<<<<<<< HEAD
data["canToggleEngineeringOverride"] = FALSE //SKYRAT EDIT - Engineering Override
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
data["importantActionReady"] = COOLDOWN_FINISHED(src, important_action_cooldown)
data["shuttleCalled"] = FALSE
data["shuttleLastCalled"] = FALSE
@@ -615,17 +868,24 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
if (authenticated_as_silicon_or_captain(user))
data["canToggleEmergencyAccess"] = TRUE
data["emergencyAccess"] = GLOB.emergency_access
+<<<<<<< HEAD
data["canToggleEngineeringOverride"] = TRUE //SKYRAT EDIT - Engineering Override Toggle
data["engineeringOverride"] = GLOB.force_eng_override //SKYRAT EDIT - Engineering Override Toggle
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
data["alertLevelTick"] = alert_level_tick
data["canMakeAnnouncement"] = TRUE
data["canSetAlertLevel"] = HAS_SILICON_ACCESS(user) ? "NO_SWIPE_NEEDED" : "SWIPE_NEEDED"
else if(syndicate)
data["canMakeAnnouncement"] = TRUE
+<<<<<<< HEAD
if (authenticated_as_ai_or_captain(user))
data["canMessageAssociates"] = TRUE //Skyrat Edit | Allows AI to report to CC in the event of there being no command alive/to begin with
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (SSshuttle.emergency.mode != SHUTTLE_IDLE && SSshuttle.emergency.mode != SHUTTLE_RECALL)
data["shuttleCalled"] = TRUE
data["shuttleRecallable"] = SSshuttle.canRecall() || syndicate
@@ -799,7 +1059,11 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
var/list/players = get_communication_players()
GLOB.communications_controller.make_announcement(user, is_ai, input, syndicate || (obj_flags & EMAGGED), players)
+<<<<<<< HEAD
deadchat_broadcast(" made a priority announcement from [span_name("[get_area_name(usr, TRUE)]")].", span_name("[user.real_name]"), user, message_type=DEADCHAT_ANNOUNCEMENT)
+=======
+ deadchat_broadcast(" made a priority announcement from [span_name("[get_area_name(user, TRUE)]")].", span_name("[user.real_name]"), user, message_type=DEADCHAT_ANNOUNCEMENT)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/computer/communications/proc/get_communication_players()
return GLOB.player_list
@@ -997,6 +1261,7 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
#undef STATE_CHANGING_STATUS
#undef STATE_MAIN
#undef STATE_MESSAGES
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
#undef EMERGENCY_RESPONSE_POLICE
@@ -1004,3 +1269,5 @@ GLOBAL_VAR_INIT(cops_arrived, FALSE)
#undef EMERGENCY_RESPONSE_EMT
#undef EMERGENCY_RESPONSE_EMAG
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/machinery/computer/crew.dm b/code/game/machinery/computer/crew.dm
index 27ad25f1832..1c207551f09 100644
--- a/code/game/machinery/computer/crew.dm
+++ b/code/game/machinery/computer/crew.dm
@@ -44,7 +44,10 @@
. += create_table_notices(list(
"name",
"job",
+<<<<<<< HEAD
"is_robot", //SKYRAT EDIT ADDITION - Displaying robotic species Icon
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"life_status",
"suffocation",
"toxin",
@@ -65,7 +68,10 @@
var/list/entry = list()
entry["name"] = player_record["name"]
entry["job"] = player_record["assignment"]
+<<<<<<< HEAD
entry["is_robot"] = player_record["is_robot"] //SKYRAT EDIT ADDITION - Displaying robotic species Icon
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
entry["life_status"] = player_record["life_status"]
entry["suffocation"] = player_record["oxydam"]
entry["toxin"] = player_record["toxdam"]
@@ -103,40 +109,59 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
JOB_HEAD_OF_SECURITY = 10,
JOB_WARDEN = 11,
JOB_SECURITY_OFFICER = 12,
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL - We need those slots for our own jobs, these jobs aren't on Skyrat anymore anyway.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
JOB_SECURITY_OFFICER_MEDICAL = 13,
JOB_SECURITY_OFFICER_ENGINEERING = 14,
JOB_SECURITY_OFFICER_SCIENCE = 15,
JOB_SECURITY_OFFICER_SUPPLY = 16,
+<<<<<<< HEAD
*/
JOB_CORRECTIONS_OFFICER = 13, // SKYRAT EDIT ADDITION
JOB_DETECTIVE = 14,
+=======
+ JOB_DETECTIVE = 17,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// 20-29: Medbay
JOB_CHIEF_MEDICAL_OFFICER = 20,
JOB_CHEMIST = 21,
JOB_MEDICAL_DOCTOR = 22,
JOB_PARAMEDIC = 23,
JOB_CORONER = 24,
+<<<<<<< HEAD
JOB_ORDERLY = 25, // SKYRAT EDIT ADDITION
JOB_PSYCHOLOGIST = 26, // SKYRAT EDIT - ORIGINAL: JOB_PSYCHOLOGIST = 71,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// 30-39: Science
JOB_RESEARCH_DIRECTOR = 30,
JOB_SCIENTIST = 31,
JOB_ROBOTICIST = 32,
JOB_GENETICIST = 33,
+<<<<<<< HEAD
JOB_SCIENCE_GUARD = 34, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// 40-49: Engineering
JOB_CHIEF_ENGINEER = 40,
JOB_STATION_ENGINEER = 41,
JOB_ATMOSPHERIC_TECHNICIAN = 42,
+<<<<<<< HEAD
JOB_ENGINEERING_GUARD = 43, // SKYRAT EDIT ADDITION
JOB_TELECOMMS_SPECIALIST = 44, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// 50-59: Cargo
JOB_QUARTERMASTER = 50,
JOB_SHAFT_MINER = 51,
JOB_CARGO_TECHNICIAN = 52,
JOB_BITRUNNER = 53,
+<<<<<<< HEAD
JOB_CUSTOMS_AGENT = 54, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// 60+: Service
JOB_HEAD_OF_PERSONNEL = 60,
JOB_BARTENDER = 61,
@@ -149,8 +174,12 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
JOB_MIME = 68,
JOB_JANITOR = 69,
JOB_LAWYER = 71,
+<<<<<<< HEAD
JOB_BARBER = 72, // SKYRAT EDIT ADDITION
JOB_BOUNCER = 73, // SKYRAT EDIT ADDITION
+=======
+ JOB_PSYCHOLOGIST = 72,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// 200-229: Centcom
JOB_CENTCOM_ADMIRAL = 200,
JOB_CENTCOM = 201,
@@ -168,8 +197,11 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
JOB_ERT_CHAPLAIN = 225,
JOB_ERT_JANITOR = 226,
JOB_ERT_DEATHSQUAD = 227,
+<<<<<<< HEAD
JOB_NT_REP = 230, // SKYRAT EDIT ADDITION
JOB_BLUESHIELD = 231, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// ANYTHING ELSE = UNKNOWN_JOB_ID, Unknowns/custom jobs will appear after civilians, and before assistants
JOB_ASSISTANT = 999,
@@ -196,7 +228,11 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
z = T.z
. = list(
"sensors" = update_data(z),
+<<<<<<< HEAD
"link_allowed" = HAS_AI_ACCESS(user)
+=======
+ "link_allowed" = HAS_AI_ACCESS(user),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/datum/crewmonitor/proc/update_data(z)
@@ -259,6 +295,7 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
if (jobs[trim_assignment] != null)
entry["ijob"] = jobs[trim_assignment]
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN: Checking for robotic race
if (issynthetic(tracked_human))
entry["is_robot"] = TRUE
@@ -288,13 +325,42 @@ GLOBAL_DATUM_INIT(crewmonitor, /datum/crewmonitor, new)
results[++results.len] = entry
+=======
+ // Current status
+ if (sensor_mode >= SENSOR_LIVING)
+ entry["life_status"] = tracked_living_mob.stat
+
+ // Damage
+ if (sensor_mode >= SENSOR_VITALS)
+ entry += list(
+ "oxydam" = round(tracked_living_mob.getOxyLoss(), 1),
+ "toxdam" = round(tracked_living_mob.getToxLoss(), 1),
+ "burndam" = round(tracked_living_mob.getFireLoss(), 1),
+ "brutedam" = round(tracked_living_mob.getBruteLoss(), 1),
+ "health" = round(tracked_living_mob.health, 1),
+ )
+
+ // Location
+ if (sensor_mode >= SENSOR_COORDS)
+ entry["area"] = get_area_name(tracked_living_mob, format_text = TRUE)
+
+ // Trackability
+ entry["can_track"] = tracked_living_mob.can_track()
+
+ results[++results.len] = entry
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Cache result
data_by_z["[z]"] = results
last_update["[z]"] = world.time
return results
+<<<<<<< HEAD
/datum/crewmonitor/ui_act(action, params)
+=======
+/datum/crewmonitor/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/dna_console.dm b/code/game/machinery/computer/dna_console.dm
index 80f59501f02..fcee0761982 100644
--- a/code/game/machinery/computer/dna_console.dm
+++ b/code/game/machinery/computer/dna_console.dm
@@ -398,7 +398,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/scan_consolenew/ui_act(action, list/params)
+=======
+/obj/machinery/computer/scan_consolenew/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/static/list/gene_letters = list("A", "T", "C", "G");
var/static/gene_letter_count = length(gene_letters)
@@ -720,11 +724,14 @@
var/datum/mutation/human/matched_mutation = null
//Go through all sequences for matching gene, and set the mutation
for (var/M in subtypesof(/datum/mutation/human))
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
var/datum/mutation/human/iterating_mutation = M
if(initial(iterating_mutation.disabled))
continue
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/true_sequence = GET_SEQUENCE(M)
if (new_sequence == true_sequence)
matched_mutation = M
diff --git a/code/game/machinery/computer/launchpad_control.dm b/code/game/machinery/computer/launchpad_control.dm
index 7c6d1307b76..e729a65680d 100644
--- a/code/game/machinery/computer/launchpad_control.dm
+++ b/code/game/machinery/computer/launchpad_control.dm
@@ -116,7 +116,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/launchpad/ui_act(action, params)
+=======
+/obj/machinery/computer/launchpad/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/mechlaunchpad.dm b/code/game/machinery/computer/mechlaunchpad.dm
index 46c0045fb35..3ede8afd4d4 100644
--- a/code/game/machinery/computer/mechlaunchpad.dm
+++ b/code/game/machinery/computer/mechlaunchpad.dm
@@ -205,7 +205,11 @@
data["mechonly"] = current_pad.mech_only
return data
+<<<<<<< HEAD
/obj/machinery/computer/mechpad/ui_act(action, params)
+=======
+/obj/machinery/computer/mechpad/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/operating_computer.dm b/code/game/machinery/computer/operating_computer.dm
index 43a18c7081f..99586a2138e 100644
--- a/code/game/machinery/computer/operating_computer.dm
+++ b/code/game/machinery/computer/operating_computer.dm
@@ -163,7 +163,11 @@
))
return data
+<<<<<<< HEAD
/obj/machinery/computer/operating/ui_act(action, params)
+=======
+/obj/machinery/computer/operating/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/orders/order_computer/mining_order.dm b/code/game/machinery/computer/orders/order_computer/mining_order.dm
index 2ba9e00d9f5..775c8f6e0c1 100644
--- a/code/game/machinery/computer/orders/order_computer/mining_order.dm
+++ b/code/game/machinery/computer/orders/order_computer/mining_order.dm
@@ -62,7 +62,11 @@
/obj/machinery/computer/order_console/mining/retrieve_points(obj/item/card/id/id_card)
return round(id_card.registered_account.mining_points)
+<<<<<<< HEAD
/obj/machinery/computer/order_console/mining/ui_act(action, params)
+=======
+/obj/machinery/computer/order_console/mining/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(!.)
flick("mining-deny", src)
@@ -71,11 +75,14 @@
if(istype(weapon, /obj/item/mining_voucher))
redeem_voucher(weapon, user)
return
+<<<<<<< HEAD
//SKYRAT EDIT ADDITON BEGIN - SEVA
if(istype(weapon, /obj/item/suit_voucher))
redeem_suit_voucher(weapon, user)
return
//SKYRAT EDIT ADDITON END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ..()
/obj/machinery/computer/order_console/mining/update_icon_state()
@@ -126,7 +133,11 @@
/obj/machinery/computer/order_console/mining/proc/check_menu(obj/item/mining_voucher/voucher, mob/living/redeemer)
if(!istype(redeemer))
return FALSE
+<<<<<<< HEAD
if(redeemer.incapacitated())
+=======
+ if(redeemer.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(QDELETED(voucher))
return FALSE
diff --git a/code/game/machinery/computer/orders/order_computer/order_computer.dm b/code/game/machinery/computer/orders/order_computer/order_computer.dm
index 54fda957526..c547d91b5f5 100644
--- a/code/game/machinery/computer/orders/order_computer/order_computer.dm
+++ b/code/game/machinery/computer/orders/order_computer/order_computer.dm
@@ -124,7 +124,11 @@ GLOBAL_LIST_EMPTY(order_console_products)
))
return data
+<<<<<<< HEAD
/obj/machinery/computer/order_console/ui_act(action, params)
+=======
+/obj/machinery/computer/order_console/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/pod.dm b/code/game/machinery/computer/pod.dm
index 4cc32401704..6be8a5aaacc 100644
--- a/code/game/machinery/computer/pod.dm
+++ b/code/game/machinery/computer/pod.dm
@@ -78,7 +78,11 @@
break
return data
+<<<<<<< HEAD
/obj/machinery/computer/pod/ui_act(action, list/params)
+=======
+/obj/machinery/computer/pod/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/prisoner/gulag_teleporter.dm b/code/game/machinery/computer/prisoner/gulag_teleporter.dm
index 4c2f4dacde3..0323e66663f 100644
--- a/code/game/machinery/computer/prisoner/gulag_teleporter.dm
+++ b/code/game/machinery/computer/prisoner/gulag_teleporter.dm
@@ -67,7 +67,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/prisoner/gulag_teleporter_computer/ui_act(action, list/params)
+=======
+/obj/machinery/computer/prisoner/gulag_teleporter_computer/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/prisoner/management.dm b/code/game/machinery/computer/prisoner/management.dm
index ada71bad023..612761e9202 100644
--- a/code/game/machinery/computer/prisoner/management.dm
+++ b/code/game/machinery/computer/prisoner/management.dm
@@ -20,7 +20,11 @@ GLOBAL_LIST_EMPTY_TYPED(tracked_implants, /obj/item/implant)
/obj/machinery/computer/prisoner/management/ui_data(mob/user)
var/list/data = list()
+<<<<<<< HEAD
data["authorized"] = (authenticated && isliving(user)) || isAdminGhostAI(user) || issilicon(user)
+=======
+ data["authorized"] = (authenticated && isliving(user)) || HAS_SILICON_ACCESS(user)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
data["inserted_id"] = null
if(!isnull(contained_id))
data["inserted_id"] = list(
@@ -43,7 +47,11 @@ GLOBAL_LIST_EMPTY_TYPED(tracked_implants, /obj/item/implant)
return data
+<<<<<<< HEAD
/obj/machinery/computer/prisoner/management/ui_act(action, list/params)
+=======
+/obj/machinery/computer/prisoner/management/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/records/medical.dm b/code/game/machinery/computer/records/medical.dm
index 2043e129da3..3e0b5a71335 100644
--- a/code/game/machinery/computer/records/medical.dm
+++ b/code/game/machinery/computer/records/medical.dm
@@ -52,7 +52,10 @@
records += list(list(
age = target.age,
+<<<<<<< HEAD
chrono_age = target.chrono_age, // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
blood_type = target.blood_type,
crew_ref = REF(target),
dna = target.dna_string,
@@ -67,10 +70,13 @@
rank = target.rank,
species = target.species,
trim = target.trim,
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Expanded records!
past_medical_records = target.past_medical_records,
past_general_records = target.past_general_records,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
data["records"] = records
@@ -81,7 +87,10 @@
var/list/data = list()
data["min_age"] = AGE_MIN
data["max_age"] = AGE_MAX
+<<<<<<< HEAD
data["max_chrono_age"] = AGE_CHRONO_MAX // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
data["physical_statuses"] = PHYSICAL_STATUSES
data["mental_statuses"] = MENTAL_STATUSES
return data
@@ -147,7 +156,10 @@
return FALSE
target.age = 18
+<<<<<<< HEAD
target.chrono_age = 18 // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
target.blood_type = pick(list("A+", "A-", "B+", "B-", "O+", "O-", "AB+", "AB-"))
target.dna_string = "Unknown"
target.gender = "Unknown"
diff --git a/code/game/machinery/computer/records/security.dm b/code/game/machinery/computer/records/security.dm
index eda93ad579d..6de06b8db12 100644
--- a/code/game/machinery/computer/records/security.dm
+++ b/code/game/machinery/computer/records/security.dm
@@ -119,7 +119,10 @@
records += list(list(
age = target.age,
+<<<<<<< HEAD
chrono_age = target.chrono_age, // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
citations = citations,
crew_ref = REF(target),
crimes = crimes,
@@ -131,10 +134,13 @@
species = target.species,
trim = target.trim,
wanted_status = target.wanted_status,
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION - RP Records
past_general_records = target.past_general_records,
past_security_records = target.past_security_records,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
))
data["records"] = records
@@ -145,7 +151,10 @@
var/list/data = list()
data["min_age"] = AGE_MIN
data["max_age"] = AGE_MAX
+<<<<<<< HEAD
data["max_chrono_age"] = AGE_CHRONO_MAX // SKYRAT EDIT ADDITION - Chronological age
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return data
/obj/machinery/computer/records/security/ui_act(action, list/params, datum/tgui/ui)
@@ -375,12 +384,19 @@
printable = wanted_poster
if("rapsheet")
+<<<<<<< HEAD
/// SKYRAT EDIT REMOVE - REMOVE CRIMES REQUIREMENT FOR PRINTING RECORDS
//var/list/crimes = target.crimes
//if(!length(crimes))
//balloon_alert(user, "no crimes")
//return FALSE
/// SKYRAT EDIT REMOVE END
+=======
+ var/list/crimes = target.crimes
+ if(!length(crimes))
+ balloon_alert(user, "no crimes")
+ return FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/obj/item/paper/rapsheet = target.get_rapsheet(input_alias, input_header, input_description)
printable = rapsheet
diff --git a/code/game/machinery/computer/robot.dm b/code/game/machinery/computer/robot.dm
index 0c8b6e58d6e..6f83b4d3727 100644
--- a/code/game/machinery/computer/robot.dm
+++ b/code/game/machinery/computer/robot.dm
@@ -81,7 +81,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/robotics/ui_act(action, params)
+=======
+/obj/machinery/computer/robotics/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/station_alert.dm b/code/game/machinery/computer/station_alert.dm
index 53fda80f4fa..ca04ad79563 100644
--- a/code/game/machinery/computer/station_alert.dm
+++ b/code/game/machinery/computer/station_alert.dm
@@ -31,7 +31,11 @@
. = ..()
if(machine_stat & (NOPOWER|BROKEN))
return
+<<<<<<< HEAD
if(length(alert_control?.listener.alarms)) /// SKYRAT EDIT - Fixing master - Original: if(length(alert_control.listener.alarms))
+=======
+ if(length(alert_control.listener.alarms))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. += "alert:2"
/**
diff --git a/code/game/machinery/computer/teleporter.dm b/code/game/machinery/computer/teleporter.dm
index d00c5824d8b..e9f356df708 100644
--- a/code/game/machinery/computer/teleporter.dm
+++ b/code/game/machinery/computer/teleporter.dm
@@ -84,7 +84,11 @@
power_station.teleporter_hub.update_appearance()
power_station.teleporter_hub.calibrated = FALSE
+<<<<<<< HEAD
/obj/machinery/computer/teleporter/ui_act(action, params)
+=======
+/obj/machinery/computer/teleporter/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/computer/telescreen.dm b/code/game/machinery/computer/telescreen.dm
index deca4ec8245..d7839760366 100644
--- a/code/game/machinery/computer/telescreen.dm
+++ b/code/game/machinery/computer/telescreen.dm
@@ -40,6 +40,11 @@
circuit = null
interaction_flags_atom = INTERACT_ATOM_UI_INTERACT | INTERACT_ATOM_NO_FINGERPRINT_INTERACT | INTERACT_ATOM_NO_FINGERPRINT_ATTACK_HAND | INTERACT_MACHINE_REQUIRES_SIGHT
frame_type = /obj/item/wallframe/telescreen/entertainment
+<<<<<<< HEAD
+=======
+ /// Virtual radio inside of the entertainment monitor to broadcast audio
+ var/obj/item/radio/entertainment/speakers/speakers
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/icon_state_off = "entertainment_blank"
var/icon_state_on = "entertainment"
@@ -55,8 +60,18 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/security/telescreen/entertai
. = ..()
RegisterSignal(src, COMSIG_CLICK, PROC_REF(BigClick))
find_and_hang_on_wall()
+<<<<<<< HEAD
// Bypass clickchain to allow humans to use the telescreen from a distance
+=======
+ speakers = new(src)
+
+/obj/machinery/computer/security/telescreen/entertainment/Destroy()
+ . = ..()
+ QDEL_NULL(speakers)
+
+/// Bypass clickchain to allow humans to use the telescreen from a distance
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/computer/security/telescreen/entertainment/proc/BigClick()
SIGNAL_HANDLER
@@ -66,7 +81,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/computer/security/telescreen/entertai
INVOKE_ASYNC(src, TYPE_PROC_REF(/atom, interact), usr)
+<<<<<<< HEAD
///Sets the monitor's icon to the selected state, and says an announcement
+=======
+/// Sets the monitor's icon to the selected state, and says an announcement
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/computer/security/telescreen/entertainment/proc/notify(on, announcement)
if(on && icon_state == icon_state_off)
icon_state = icon_state_on
diff --git a/code/game/machinery/dance_machine.dm b/code/game/machinery/dance_machine.dm
index dea1972cea7..9e49a196297 100644
--- a/code/game/machinery/dance_machine.dm
+++ b/code/game/machinery/dance_machine.dm
@@ -68,7 +68,7 @@
/obj/machinery/jukebox/ui_data(mob/user)
return music_player.get_ui_data()
-/obj/machinery/jukebox/ui_act(action, list/params)
+/obj/machinery/jukebox/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
@@ -384,4 +384,7 @@
/obj/machinery/jukebox/disco/proc/dance4_revert(mob/living/dancer, matrix/starting_matrix)
animate(dancer, transform = starting_matrix, time = 5, loop = 0)
REMOVE_TRAIT(dancer, TRAIT_DISCO_DANCER, REF(src))
+<<<<<<< HEAD
SKYRAT EDIT END*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/machinery/dish_drive.dm b/code/game/machinery/dish_drive.dm
index fc74b18c03c..d49c379487b 100644
--- a/code/game/machinery/dish_drive.dm
+++ b/code/game/machinery/dish_drive.dm
@@ -11,8 +11,12 @@
pass_flags = PASSTABLE
interaction_flags_click = ALLOW_SILICON_REACH
/// List of dishes the drive can hold
+<<<<<<< HEAD
var/list/collectable_items = list(/obj/item/trash/waffles, // SKYRAT EDIT CHANGE - non-static list
/obj/item/trash/waffles,
+=======
+ var/static/list/collectable_items = list(
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/broken_bottle,
/obj/item/kitchen/fork,
/obj/item/plate,
@@ -23,8 +27,12 @@
/obj/item/trash/tray,
)
/// List of items the drive detects as trash
+<<<<<<< HEAD
var/static/list/disposable_items = list(/obj/item/trash/waffles,
/obj/item/trash/waffles,
+=======
+ var/static/list/disposable_items = list(
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/broken_bottle,
/obj/item/plate_shard,
/obj/item/shard,
@@ -38,7 +46,10 @@
var/list/dish_drive_contents
/// Distance this is capable of sucking dishes up over. (2 + servo tier)
var/suck_distance = 0
+<<<<<<< HEAD
var/binrange = 7 //SKYRAT EDIT ADDITION - SEC_HAUL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
COOLDOWN_DECLARE(time_since_dishes)
@@ -126,7 +137,10 @@
do_the_dishes()
if(!suction_enabled)
return
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/obj/item/dish in view(2 + suck_distance, src))
if(is_type_in_list(dish, collectable_items) && dish.loc != src && (!dish.reagents || !dish.reagents.total_volume) && (dish.contents.len < 1))
if(dish.Adjacent(src))
diff --git a/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_one_entries.dm b/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_one_entries.dm
index d24a951d76b..448e43303ff 100644
--- a/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_one_entries.dm
+++ b/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_one_entries.dm
@@ -1,6 +1,10 @@
/*
* Tier one entries are unlocked at the start, and are for dna mutants that are:
+<<<<<<< HEAD
* - easy to aquire (rats)
+=======
+ * - easy to acquire (rats)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* - have a bonus for getting past a threshold
* - might serve a job purpose for others (goliath) and thus should be gainable early enough
*/
diff --git a/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm b/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm
index 5eb13847bb5..83191d530da 100644
--- a/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm
+++ b/code/game/machinery/dna_infuser/infuser_entries/infuser_tier_two_entries.dm
@@ -1,6 +1,10 @@
/*
* Tier two entries are unlocked after infusing someone/being infused and achieving a bonus, and are for dna mutants that are:
+<<<<<<< HEAD
* - harder to aquire (gondolas) but not *necessarily* requiring job help
+=======
+ * - harder to acquire (gondolas) but not *necessarily* requiring job help
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* - have a bonus for getting past a threshold
*
* todos for the future:
diff --git a/code/game/machinery/dna_infuser/organ_sets/fly_organs.dm b/code/game/machinery/dna_infuser/organ_sets/fly_organs.dm
index f86a161b1ce..15f3ee6cd02 100644
--- a/code/game/machinery/dna_infuser/organ_sets/fly_organs.dm
+++ b/code/game/machinery/dna_infuser/organ_sets/fly_organs.dm
@@ -48,6 +48,7 @@
"s" = "z",
"S" = "Z",
)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Russian version
var/static/list/russian_speech_replacements = list(
new /regex("z+", "g") = "zzz",
@@ -64,6 +65,12 @@
/obj/item/organ/internal/tongue/fly/New(class, timer, datum/mutation/human/copymut)
. = ..()
AddComponent(/datum/component/speechmod, replacements = CONFIG_GET(flag/russian_text_formation) ? russian_speech_replacements : speech_replacements, should_modify_speech = CALLBACK(src, PROC_REF(should_modify_speech))) // SKYRAT EDIT CHANGE - ORIGINAL:AddComponent(/datum/component/speechmod, replacements = speech_replacements, should_modify_speech = CALLBACK(src, PROC_REF(should_modify_speech)))
+=======
+
+/obj/item/organ/internal/tongue/fly/New(class, timer, datum/mutation/human/copymut)
+ . = ..()
+ AddComponent(/datum/component/speechmod, replacements = speech_replacements, should_modify_speech = CALLBACK(src, PROC_REF(should_modify_speech)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/organ/internal/tongue/fly/Initialize(mapload)
. = ..()
@@ -137,7 +144,10 @@
//useless organs we throw in just to fuck with surgeons a bit more. they aren't part of a bonus, just the (absolute) state of flies
/obj/item/organ/internal/fly
desc = FLY_INFUSED_ORGAN_DESC
+<<<<<<< HEAD
visual = FALSE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/organ/internal/fly/Initialize(mapload)
. = ..()
diff --git a/code/game/machinery/dna_infuser/organ_sets/fox_organs.dm b/code/game/machinery/dna_infuser/organ_sets/fox_organs.dm
index a9d2d956f7f..ae7b9047855 100644
--- a/code/game/machinery/dna_infuser/organ_sets/fox_organs.dm
+++ b/code/game/machinery/dna_infuser/organ_sets/fox_organs.dm
@@ -6,6 +6,7 @@
visual = TRUE
damage_multiplier = 2
+<<<<<<< HEAD
//SKYRAT EDIT REMOVAL BEGIN - CUSTOMIZATION
/*
/obj/item/organ/internal/ears/fox/on_mob_insert(mob/living/carbon/human/ear_owner)
@@ -24,3 +25,6 @@
ear_owner.update_body()
*/
//SKYRAT EDIT REMOVAL END
+=======
+ sprite_accessory_override = /datum/sprite_accessory/ears/fox
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/machinery/dna_infuser/organ_sets/gondola_organs.dm b/code/game/machinery/dna_infuser/organ_sets/gondola_organs.dm
index 797c7839b2c..b91c899ce98 100644
--- a/code/game/machinery/dna_infuser/organ_sets/gondola_organs.dm
+++ b/code/game/machinery/dna_infuser/organ_sets/gondola_organs.dm
@@ -34,7 +34,11 @@ Fluoride Stare: After someone says 5 words, blah blah blah...
AddElement(/datum/element/noticable_organ, "%PRONOUN_They radiate%PRONOUN_s an aura of serenity.")
AddElement(/datum/element/update_icon_blocker)
+<<<<<<< HEAD
/obj/item/organ/internal/heart/gondola/Insert(mob/living/carbon/receiver, special, movement_flags)
+=======
+/obj/item/organ/internal/heart/gondola/mob_insert(mob/living/carbon/receiver, special, movement_flags)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(!(FACTION_HOSTILE in receiver.faction))
factions_to_remove += FACTION_HOSTILE
@@ -42,7 +46,11 @@ Fluoride Stare: After someone says 5 words, blah blah blah...
factions_to_remove += FACTION_MINING
receiver.faction |= list(FACTION_HOSTILE, FACTION_MINING)
+<<<<<<< HEAD
/obj/item/organ/internal/heart/gondola/Remove(mob/living/carbon/heartless, special, movement_flags)
+=======
+/obj/item/organ/internal/heart/gondola/mob_remove(mob/living/carbon/heartless, special, movement_flags)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
for(var/faction in factions_to_remove)
heartless.faction -= faction
@@ -64,11 +72,19 @@ Fluoride Stare: After someone says 5 words, blah blah blah...
AddElement(/datum/element/noticable_organ, "%PRONOUN_Their mouth is permanently affixed into a relaxed smile.", BODY_ZONE_PRECISE_MOUTH)
AddElement(/datum/element/organ_set_bonus, /datum/status_effect/organ_set_bonus/gondola)
+<<<<<<< HEAD
/obj/item/organ/internal/tongue/gondola/Insert(mob/living/carbon/tongue_owner, special, movement_flags)
. = ..()
tongue_owner.add_mood_event("gondola_zen", /datum/mood_event/gondola_serenity)
/obj/item/organ/internal/tongue/gondola/Remove(mob/living/carbon/tongue_owner, special, movement_flags)
+=======
+/obj/item/organ/internal/tongue/gondola/mob_insert(mob/living/carbon/tongue_owner, special, movement_flags)
+ . = ..()
+ tongue_owner.add_mood_event("gondola_zen", /datum/mood_event/gondola_serenity)
+
+/obj/item/organ/internal/tongue/gondola/mob_remove(mob/living/carbon/tongue_owner, special, movement_flags)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tongue_owner.clear_mood_event("gondola_zen")
return ..()
@@ -87,7 +103,11 @@ Fluoride Stare: After someone says 5 words, blah blah blah...
AddElement(/datum/element/noticable_organ, "%PRONOUN_Their left arm has small needles breaching the skin all over it.", BODY_ZONE_L_ARM)
AddElement(/datum/element/noticable_organ, "%PRONOUN_Their right arm has small needles breaching the skin all over it.", BODY_ZONE_R_ARM)
+<<<<<<< HEAD
/obj/item/organ/internal/liver/gondola/Insert(mob/living/carbon/liver_owner, special, movement_flags)
+=======
+/obj/item/organ/internal/liver/gondola/mob_insert(mob/living/carbon/liver_owner, special, movement_flags)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
var/has_left = liver_owner.has_left_hand(check_disabled = FALSE)
var/has_right = liver_owner.has_right_hand(check_disabled = FALSE)
@@ -102,7 +122,11 @@ Fluoride Stare: After someone says 5 words, blah blah blah...
RegisterSignal(liver_owner, COMSIG_LIVING_TRY_PULL, PROC_REF(on_owner_try_pull))
RegisterSignal(liver_owner, COMSIG_CARBON_HELPED, PROC_REF(on_hug))
+<<<<<<< HEAD
/obj/item/organ/internal/liver/gondola/Remove(mob/living/carbon/liver_owner, special, movement_flags)
+=======
+/obj/item/organ/internal/liver/gondola/mob_remove(mob/living/carbon/liver_owner, special, movement_flags)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
UnregisterSignal(liver_owner, list(COMSIG_HUMAN_EQUIPPING_ITEM, COMSIG_LIVING_TRY_PULL, COMSIG_CARBON_HELPED))
diff --git a/code/game/machinery/dna_scanner.dm b/code/game/machinery/dna_scanner.dm
index 0c84e401d6c..82154802d8e 100644
--- a/code/game/machinery/dna_scanner.dm
+++ b/code/game/machinery/dna_scanner.dm
@@ -117,7 +117,10 @@
return TRUE
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/dna_scannernew/relaymove(mob/living/user, direction)
if(user.stat || locked)
if(message_cooldown <= world.time)
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index 0b325951e29..1106ef65ad4 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -22,6 +22,7 @@
/// Someone, for the love of god, profile this. Is there a reason to cache mutable_appearance
/// if so, why are we JUST doing the airlocks when we can put this in mutable_appearance.dm for
/// everything
+<<<<<<< HEAD
/proc/get_airlock_overlay(icon_state, icon_file, atom/offset_spokesman, em_block, state_color = null) // SKYRAT EDIT - Airlock accent greyscale color support - Added `state_color = null`
var/static/list/airlock_overlays = list()
@@ -37,6 +38,14 @@
. = airlock_overlays[base_icon_key] = airlock_overlay
// SKYRAT EDIT END
+=======
+/proc/get_airlock_overlay(icon_state, icon_file, atom/offset_spokesman, em_block)
+ var/static/list/airlock_overlays = list()
+
+ var/base_icon_key = "[icon_state][REF(icon_file)]"
+ if(!(. = airlock_overlays[base_icon_key]))
+ . = airlock_overlays[base_icon_key] = mutable_appearance(icon_file, icon_state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(isnull(em_block))
return
@@ -61,6 +70,7 @@
#define AIRLOCK_FRAME_OPEN "open"
#define AIRLOCK_FRAME_OPENING "opening"
+<<<<<<< HEAD
#define AIRLOCK_SECURITY_NONE 0 //Normal airlock //Wires are not secured
#define AIRLOCK_SECURITY_IRON 1 //Medium security airlock //There is a simple iron plate over wires (use welder)
#define AIRLOCK_SECURITY_PLASTEEL_I_S 2 //Sliced inner plating (use crowbar), jumps to 0
@@ -69,6 +79,21 @@
#define AIRLOCK_SECURITY_PLASTEEL_O 5 //There is first layer of plasteel (use welder)
#define AIRLOCK_SECURITY_PLASTEEL 6 //Max security airlock //Fully secured wires (use wirecutters to remove grille, that is electrified)
+=======
+#define AIRLOCK_FRAME_CLOSED "closed"
+#define AIRLOCK_FRAME_CLOSING "closing"
+#define AIRLOCK_FRAME_OPEN "open"
+#define AIRLOCK_FRAME_OPENING "opening"
+
+#define AIRLOCK_SECURITY_NONE 0 //Normal airlock //Wires are not secured
+#define AIRLOCK_SECURITY_IRON 1 //Medium security airlock //There is a simple iron plate over wires (use welder)
+#define AIRLOCK_SECURITY_PLASTEEL_I_S 2 //Sliced inner plating (use crowbar), jumps to 0
+#define AIRLOCK_SECURITY_PLASTEEL_I 3 //Removed outer plating, second layer here (use welder)
+#define AIRLOCK_SECURITY_PLASTEEL_O_S 4 //Sliced outer plating (use crowbar)
+#define AIRLOCK_SECURITY_PLASTEEL_O 5 //There is first layer of plasteel (use welder)
+#define AIRLOCK_SECURITY_PLASTEEL 6 //Max security airlock //Fully secured wires (use wirecutters to remove grille, that is electrified)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define AIRLOCK_INTEGRITY_N 300 // Normal airlock integrity
#define AIRLOCK_INTEGRITY_MULTIPLIER 1.5 // How much reinforced doors health increases
/// How much extra health airlocks get when braced with a seal
@@ -81,8 +106,11 @@
#define DOOR_CLOSE_WAIT 60 /// Time before a door closes, if not overridden
#define DOOR_VISION_DISTANCE 11 ///The maximum distance a door will see out to
+<<<<<<< HEAD
*/
// SKYRAT EDIT REMOVAL END - moved to code/__DEFINES/~skyrat_defines/airlock.dm
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/airlock
name = "Airlock"
@@ -147,9 +175,15 @@
var/previous_airlock = /obj/structure/door_assembly
/// Material of inner filling; if its an airlock with glass, this should be set to "glass"
var/airlock_material
+<<<<<<< HEAD
var/overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi' //OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
/// Used for papers and photos pinned to the airlock
var/note_overlay_file = 'icons/obj/doors/airlocks/station/overlays.dmi'//OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ var/overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'
+ /// Used for papers and photos pinned to the airlock
+ var/note_overlay_file = 'icons/obj/doors/airlocks/station/overlays.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Airlock pump that overrides airlock controlls when set up for cycling
var/obj/machinery/atmospherics/components/unary/airlock_pump/cycle_pump
@@ -526,7 +560,10 @@
if(AIRLOCK_DENY, AIRLOCK_OPENING, AIRLOCK_CLOSING, AIRLOCK_EMAG)
icon_state = "nonexistenticonstate" //MADNESS
+<<<<<<< HEAD
/* SKYRAT EDIT MOVED TO AIRLOCK.DM IN AESTHETICS MODULE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/airlock/update_overlays()
. = ..()
@@ -605,7 +642,10 @@
floorlight.pixel_x = -32
floorlight.pixel_y = 0
. += floorlight
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/door/airlock/run_animation(animation)
switch(animation)
@@ -845,8 +885,12 @@
if(!istype(H.head, /obj/item/clothing/head/helmet))
H.visible_message(span_danger("[user] headbutts the airlock."), \
span_userdanger("You headbutt the airlock!"))
+<<<<<<< HEAD
//H.Paralyze(100) - SKYRAT EDIT REMOVAL - COMBAT
H.StaminaKnockdown(10, TRUE, TRUE)
+=======
+ H.Paralyze(100)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
H.apply_damage(10, BRUTE, BODY_ZONE_HEAD)
else
visible_message(span_danger("[user] headbutts the airlock. Good thing [user.p_theyre()] wearing a helmet."))
@@ -1318,8 +1362,12 @@
return TRUE
if(BYPASS_DOOR_CHECKS) // No power usage, special sound, get it open.
+<<<<<<< HEAD
//playsound(src, 'sound/machines/airlockforced.ogg', 30, TRUE) - ORIGINAL
playsound(src, forcedOpen, 30, TRUE) //SKYRAT EDIT CHANGE - AESTHETICS
+=======
+ playsound(src, 'sound/machines/airlockforced.ogg', 30, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
else
@@ -1579,9 +1627,14 @@
if(!disassembled)
A?.update_integrity(A.max_integrity * 0.5)
+<<<<<<< HEAD
else if(obj_flags & EMAGGED)
//no electronics nothing
else
+=======
+
+ else if(!(obj_flags & EMAGGED))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/obj/item/electronics/airlock/ae
if(!electronics)
ae = new/obj/item/electronics/airlock(loc)
@@ -1677,7 +1730,11 @@
data["wires"] = wire
return data
+<<<<<<< HEAD
/obj/machinery/door/airlock/ui_act(action, params)
+=======
+/obj/machinery/door/airlock/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -1801,6 +1858,733 @@
/obj/machinery/door/airlock/proc/get_wires()
var/area/source_area = get_area(src)
return source_area?.airlock_wires ? new source_area.airlock_wires(src) : new /datum/wires/airlock(src)
+<<<<<<< HEAD
+=======
+
+/obj/structure/fluff/airlock_filler/Destroy(force)
+ filled_airlock = null
+ return ..()
+
+/**
+ * Create a ref to our parent airlock and listen for a QDEL, which we will al
+ */
+/obj/structure/fluff/airlock_filler/proc/pair_airlock(obj/machinery/door/parent_airlock)
+ if(isnull(parent_airlock))
+ stack_trace("Attempted to pair an airlock filler with no parent airlock specified!")
+ return
+
+ filled_airlock = parent_airlock
+ RegisterSignal(filled_airlock, COMSIG_QDELETING, PROC_REF(no_airlock))
+
+/**
+ * Multi-tile airlocks pair with a filler panel, if one goes so does the other.
+ */
+/obj/structure/fluff/airlock_filler/proc/no_airlock()
+ SIGNAL_HANDLER
+
+ qdel(src)
+
+/**
+ * Multi-tile airlocks (using a filler panel) have special handling for movables with PASSGLASS
+ */
+/obj/structure/fluff/airlock_filler/CanAllowThrough(atom/movable/mover, turf/target)
+ . = ..()
+ if(.)
+ return
+
+ if(istype(mover) && (mover.pass_flags & PASSGLASS))
+ return !opacity
+
+/obj/structure/fluff/airlock_filler/can_be_pulled(user, grab_state, force)
+ return FALSE
+
+/obj/structure/fluff/airlock_filler/singularity_act()
+ return
+
+/obj/structure/fluff/airlock_filler/singularity_pull(S, current_size)
+ return
+
+/obj/machinery/door/airlock/proc/set_cycle_pump(obj/machinery/atmospherics/components/unary/airlock_pump/pump)
+ RegisterSignal(pump, COMSIG_QDELETING, PROC_REF(unset_cycle_pump))
+ cycle_pump = pump
+
+/obj/machinery/door/airlock/proc/unset_cycle_pump()
+ SIGNAL_HANDLER
+ if(locked)
+ unbolt()
+ say("Link broken, unbolting.")
+ cycle_pump = null
+
+// Station Airlocks Regular
+
+/obj/machinery/door/airlock/command
+ name = "command airlock"
+ icon = 'icons/obj/doors/airlocks/station/command.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_com
+ normal_integrity = 450
+
+/obj/machinery/door/airlock/security
+ name = "security airlock"
+ icon = 'icons/obj/doors/airlocks/station/security.dmi'
+ var/id = null
+ assemblytype = /obj/structure/door_assembly/door_assembly_sec
+ normal_integrity = 450
+
+/obj/machinery/door/airlock/engineering
+ name = "engineering airlock"
+ icon = 'icons/obj/doors/airlocks/station/engineering.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_eng
+
+/obj/machinery/door/airlock/medical
+ name = "medical airlock"
+ icon = 'icons/obj/doors/airlocks/station/medical.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_med
+
+/obj/machinery/door/airlock/hydroponics //Hydroponics front doors!
+ name = "hydroponics airlock"
+ icon = 'icons/obj/doors/airlocks/station/hydroponics.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_hydro
+
+/obj/machinery/door/airlock/maintenance
+ name = "maintenance access"
+ icon = 'icons/obj/doors/airlocks/station/maintenance.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_mai
+ normal_integrity = 250
+
+/obj/machinery/door/airlock/maintenance/external
+ name = "external airlock access"
+ icon = 'icons/obj/doors/airlocks/station/maintenanceexternal.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_extmai
+
+/obj/machinery/door/airlock/mining
+ name = "mining airlock"
+ icon = 'icons/obj/doors/airlocks/station/mining.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_min
+
+/obj/machinery/door/airlock/atmos
+ name = "atmospherics airlock"
+ icon = 'icons/obj/doors/airlocks/station/atmos.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_atmo
+
+/obj/machinery/door/airlock/research
+ name = "research airlock"
+ icon = 'icons/obj/doors/airlocks/station/research.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_research
+
+/obj/machinery/door/airlock/freezer
+ name = "freezer airlock"
+ icon = 'icons/obj/doors/airlocks/station/freezer.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_fre
+
+/obj/machinery/door/airlock/science
+ name = "science airlock"
+ icon = 'icons/obj/doors/airlocks/station/science.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_science
+
+/obj/machinery/door/airlock/virology
+ name = "virology airlock"
+ icon = 'icons/obj/doors/airlocks/station/virology.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_viro
+
+// Station Airlocks Glass
+
+/obj/machinery/door/airlock/glass
+ name = "glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/glass/incinerator
+ autoclose = FALSE
+ heat_proof = TRUE
+ req_access = list(ACCESS_SYNDICATE)
+
+/obj/machinery/door/airlock/glass/incinerator/syndicatelava_interior
+ name = "Turbine Interior Airlock"
+ id_tag = INCINERATOR_SYNDICATELAVA_AIRLOCK_INTERIOR
+
+/obj/machinery/door/airlock/glass/incinerator/syndicatelava_exterior
+ name = "Turbine Exterior Airlock"
+ id_tag = INCINERATOR_SYNDICATELAVA_AIRLOCK_EXTERIOR
+
+/obj/machinery/door/airlock/command/glass
+ name = "command glass airlock"
+ opacity = FALSE
+ glass = TRUE
+ normal_integrity = 400
+
+/obj/machinery/door/airlock/engineering/glass
+ name = "engineering glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/engineering/glass/critical
+ critical_machine = TRUE //stops greytide virus from opening & bolting doors in critical positions, such as the SM chamber.
+
+/obj/machinery/door/airlock/security/glass
+ name = "security glass airlock"
+ opacity = FALSE
+ glass = TRUE
+ normal_integrity = 400
+
+/obj/machinery/door/airlock/medical/glass
+ name = "medical glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/hydroponics/glass //Uses same icon as medical/glass, maybe update it with its own unique icon one day?
+ name = "hydroponics glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/research/glass
+ name = "research glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/research/glass/incinerator
+ autoclose = FALSE
+ heat_proof = TRUE
+
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior
+ name = "Mixing Room Interior Airlock"
+ id_tag = INCINERATOR_ORDMIX_AIRLOCK_INTERIOR
+
+/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior
+ name = "Mixing Room Exterior Airlock"
+ id_tag = INCINERATOR_ORDMIX_AIRLOCK_EXTERIOR
+
+/obj/machinery/door/airlock/mining/glass
+ name = "mining glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/atmos/glass
+ name = "atmospheric glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/atmos/glass/critical
+ critical_machine = TRUE //stops greytide virus from opening & bolting doors in critical positions, such as the SM chamber.
+
+/obj/machinery/door/airlock/science/glass
+ name = "science glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/virology/glass
+ name = "virology glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/maintenance/glass
+ name = "maintainence glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/maintenance/external/glass
+ name = "maintainence external glass airlock"
+ opacity = FALSE
+ glass = TRUE
+ normal_integrity = 200
+
+// Station Airlocks Mineral
+
+/obj/machinery/door/airlock/gold
+ name = "gold airlock"
+ icon = 'icons/obj/doors/airlocks/station/gold.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_gold
+
+/obj/machinery/door/airlock/gold/discoinferno
+ heat_proof = TRUE
+ resistance_flags = FIRE_PROOF
+ armor_type = /datum/armor/discoinferno_airlock
+
+/datum/armor/discoinferno_airlock
+ melee = 30
+ bullet = 30
+ laser = 20
+ energy = 20
+ bomb = 10
+ fire = 100
+ acid = 100
+
+/obj/machinery/door/airlock/gold/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/silver
+ name = "silver airlock"
+ icon = 'icons/obj/doors/airlocks/station/silver.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_silver
+
+/obj/machinery/door/airlock/silver/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/diamond
+ name = "diamond airlock"
+ icon = 'icons/obj/doors/airlocks/station/diamond.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_diamond
+ normal_integrity = 1000
+ explosion_block = 2
+
+/obj/machinery/door/airlock/diamond/glass
+ normal_integrity = 950
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/uranium
+ name = "uranium airlock"
+ icon = 'icons/obj/doors/airlocks/station/uranium.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_uranium
+ var/last_event = 0
+ //Is this airlock actually radioactive?
+ var/actually_radioactive = TRUE
+
+/obj/machinery/door/airlock/uranium/process()
+ if(actually_radioactive && world.time > last_event+20)
+ if(prob(50))
+ radiate()
+ last_event = world.time
+
+/obj/machinery/door/airlock/uranium/proc/radiate()
+ radiation_pulse(
+ src,
+ max_range = 2,
+ threshold = RAD_LIGHT_INSULATION,
+ chance = URANIUM_IRRADIATION_CHANCE,
+ minimum_exposure_time = URANIUM_RADIATION_MINIMUM_EXPOSURE_TIME,
+ )
+
+/obj/machinery/door/airlock/uranium/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/uranium/safe
+ actually_radioactive = FALSE
+
+/obj/machinery/door/airlock/uranium/glass/safe
+ actually_radioactive = FALSE
+
+/obj/machinery/door/airlock/plasma
+ name = "plasma airlock"
+ desc = "No way this can end badly."
+ icon = 'icons/obj/doors/airlocks/station/plasma.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_plasma
+ material_flags = MATERIAL_EFFECTS
+ material_modifier = 0.25
+
+/obj/machinery/door/airlock/plasma/Initialize(mapload)
+ custom_materials = custom_materials ? custom_materials : list(/datum/material/plasma = SHEET_MATERIAL_AMOUNT * 10)
+ . = ..()
+
+/obj/machinery/door/airlock/plasma/block_superconductivity() //we don't stop the heat~
+ return 0
+
+/obj/machinery/door/airlock/plasma/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/bananium
+ name = "bananium airlock"
+ desc = "Honkhonkhonk"
+ icon = 'icons/obj/doors/airlocks/station/bananium.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_bananium
+ doorOpen = 'sound/items/bikehorn.ogg'
+
+/obj/machinery/door/airlock/bananium/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/sandstone
+ name = "sandstone airlock"
+ icon = 'icons/obj/doors/airlocks/station/sandstone.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_sandstone
+
+/obj/machinery/door/airlock/sandstone/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/wood
+ name = "wooden airlock"
+ icon = 'icons/obj/doors/airlocks/station/wood.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_wood
+
+/obj/machinery/door/airlock/wood/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/titanium
+ name = "shuttle airlock"
+ assemblytype = /obj/structure/door_assembly/door_assembly_titanium
+ icon = 'icons/obj/doors/airlocks/shuttle/shuttle.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/shuttle/overlays.dmi'
+ normal_integrity = 400
+
+/obj/machinery/door/airlock/titanium/glass
+ normal_integrity = 350
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/bronze
+ name = "bronze airlock"
+ icon = 'icons/obj/doors/airlocks/clockwork/pinion_airlock.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/clockwork/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_bronze
+
+/obj/machinery/door/airlock/bronze/seethru
+ assemblytype = /obj/structure/door_assembly/door_assembly_bronze/seethru
+ opacity = FALSE
+ glass = TRUE
+
+
+// Public Airlocks
+
+/obj/machinery/door/airlock/public
+ name = "public airlock"
+ icon = 'icons/obj/doors/airlocks/public/glass.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/public/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_public
+
+/obj/machinery/door/airlock/public/glass
+ name = "public glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/public/glass/incinerator
+ autoclose = FALSE
+ heat_proof = TRUE
+
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior
+ name = "Turbine Interior Airlock"
+ id_tag = INCINERATOR_ATMOS_AIRLOCK_INTERIOR
+
+/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior
+ name = "Turbine Exterior Airlock"
+ id_tag = INCINERATOR_ATMOS_AIRLOCK_EXTERIOR
+
+// External Airlocks
+
+/obj/machinery/door/airlock/external
+ name = "external airlock"
+ icon = 'icons/obj/doors/airlocks/external/external.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/external/overlays.dmi'
+ note_overlay_file = 'icons/obj/doors/airlocks/external/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_ext
+
+ /// Whether or not the airlock can be opened without access from a certain direction while powered, or with bare hands from any direction while unpowered OR pressurized.
+ var/space_dir = null
+
+/obj/machinery/door/airlock/external/Initialize(mapload, ...)
+ // default setting is for mapping only, let overrides work
+ if(!mapload)
+ req_access = null
+
+ return ..()
+
+/obj/machinery/door/airlock/external/post_machine_initialize()
+ . = ..()
+ if(space_dir)
+ unres_sides |= space_dir
+
+/obj/machinery/door/airlock/external/examine(mob/user)
+ . = ..()
+ if(space_dir)
+ . += span_notice("It has labels indicating that it has an emergency mechanism to open from the [dir2text(space_dir)] side with just your hands even if there's no power.")
+
+/obj/machinery/door/airlock/external/cyclelinkairlock()
+ . = ..()
+ var/obj/machinery/door/airlock/external/cycle_linked_external_airlock = cyclelinkedairlock
+ if(istype(cycle_linked_external_airlock))
+ cycle_linked_external_airlock.space_dir |= space_dir
+ space_dir |= cycle_linked_external_airlock.space_dir
+
+/obj/machinery/door/airlock/external/try_safety_unlock(mob/user)
+ if(space_dir && density)
+ if(!hasPower())
+ to_chat(user, span_notice("You begin unlocking the airlock safety mechanism..."))
+ if(do_after(user, 15 SECONDS, target = src))
+ try_to_crowbar(null, user, TRUE)
+ return TRUE
+ else
+ // always open from the space side
+ // get_dir(src, user) & space_dir, checked in unresricted_sides
+ var/should_safety_open = shuttledocked || cyclelinkedairlock?.shuttledocked || is_safe_turf(get_step(src, space_dir), TRUE, FALSE)
+ return try_to_activate_door(user, should_safety_open)
+
+ return ..()
+
+// Access free external airlocks
+/obj/machinery/door/airlock/external/ruin
+
+/obj/machinery/door/airlock/external/glass
+ name = "external glass airlock"
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/external/glass/ruin
+
+// CentCom Airlocks
+
+/obj/machinery/door/airlock/centcom //Use grunge as a station side version, as these have special effects related to them via phobias and such.
+ icon = 'icons/obj/doors/airlocks/centcom/centcom.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/centcom/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_centcom
+ normal_integrity = 1000
+ security_level = 6
+ explosion_block = 2
+
+/obj/machinery/door/airlock/grunge
+ icon = 'icons/obj/doors/airlocks/centcom/centcom.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/centcom/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_grunge
+
+
+// Vault Airlocks
+
+/obj/machinery/door/airlock/vault
+ name = "vault door"
+ icon = 'icons/obj/doors/airlocks/vault/vault.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/vault/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_vault
+ explosion_block = 2
+ normal_integrity = 400 // reverse engieneerd: 400 * 1.5 (sec lvl 6) = 600 = original
+ security_level = 6
+
+
+// Hatch Airlocks
+
+/obj/machinery/door/airlock/hatch
+ name = "airtight hatch"
+ icon = 'icons/obj/doors/airlocks/hatch/centcom.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi'
+ note_overlay_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_hatch
+
+/obj/machinery/door/airlock/maintenance_hatch
+ name = "maintenance hatch"
+ icon = 'icons/obj/doors/airlocks/hatch/maintenance.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi'
+ note_overlay_file = 'icons/obj/doors/airlocks/hatch/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_mhatch
+
+// High Security Airlocks
+
+/obj/machinery/door/airlock/highsecurity
+ name = "high tech security airlock"
+ icon = 'icons/obj/doors/airlocks/highsec/highsec.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/highsec/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_highsecurity
+ explosion_block = 2
+ normal_integrity = 500
+ security_level = 1
+ damage_deflection = 30
+
+// Shuttle Airlocks
+
+/obj/machinery/door/airlock/shuttle
+ name = "shuttle airlock"
+ icon = 'icons/obj/doors/airlocks/shuttle/shuttle.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/shuttle/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_shuttle
+
+/obj/machinery/door/airlock/shuttle/glass
+ opacity = FALSE
+ glass = TRUE
+
+/obj/machinery/door/airlock/abductor
+ name = "alien airlock"
+ desc = "With humanity's current technological level, it could take years to hack this advanced airlock... or maybe we should give a screwdriver a try?"
+ icon = 'icons/obj/doors/airlocks/abductor/abductor_airlock.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/abductor/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_abductor
+ note_overlay_file = 'icons/obj/doors/airlocks/external/overlays.dmi'
+ damage_deflection = 30
+ explosion_block = 3
+ hackProof = TRUE
+ aiControlDisabled = AI_WIRE_DISABLED
+ normal_integrity = 700
+ security_level = 1
+
+// Cult Airlocks
+
+/obj/machinery/door/airlock/cult
+ name = "cult airlock"
+ icon = 'icons/obj/doors/airlocks/cult/runed/cult.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/cult/runed/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_cult
+ hackProof = TRUE
+ aiControlDisabled = AI_WIRE_DISABLED
+ req_access = list(ACCESS_BLOODCULT)
+ damage_deflection = 10
+ var/openingoverlaytype = /obj/effect/temp_visual/cult/door
+ var/friendly = FALSE
+ var/stealthy = FALSE
+
+/obj/machinery/door/airlock/cult/Initialize(mapload)
+ . = ..()
+ new openingoverlaytype(loc)
+ AddElement(/datum/element/empprotection, EMP_PROTECT_ALL)
+
+/obj/machinery/door/airlock/cult/canAIControl(mob/user)
+ return (IS_CULTIST(user) && !isAllPowerCut())
+
+/obj/machinery/door/airlock/cult/on_break()
+ set_panel_open(TRUE)
+
+/obj/machinery/door/airlock/cult/isElectrified()
+ return FALSE
+
+/obj/machinery/door/airlock/cult/hasPower()
+ return TRUE
+
+/obj/machinery/door/airlock/cult/allowed(mob/living/L)
+ if(!density)
+ return TRUE
+ if(friendly || IS_CULTIST(L) || isshade(L) || isconstruct(L))
+ if(!stealthy)
+ new openingoverlaytype(loc)
+ return TRUE
+ else
+ if(!stealthy)
+ new /obj/effect/temp_visual/cult/sac(loc)
+ var/atom/throwtarget
+ throwtarget = get_edge_target_turf(src, get_dir(src, get_step_away(L, src)))
+ SEND_SOUND(L, sound(pick('sound/hallucinations/turn_around1.ogg','sound/hallucinations/turn_around2.ogg'),0,1,50))
+ flash_color(L, flash_color=COLOR_CULT_RED, flash_time=20)
+ L.Paralyze(40)
+ L.throw_at(throwtarget, 5, 1)
+ return FALSE
+
+/obj/machinery/door/airlock/cult/proc/conceal()
+ icon = 'icons/obj/doors/airlocks/station/maintenance.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'
+ name = "Airlock"
+ desc = "It opens and closes."
+ stealthy = TRUE
+ update_appearance()
+
+/obj/machinery/door/airlock/cult/proc/reveal()
+ icon = initial(icon)
+ overlays_file = initial(overlays_file)
+ name = initial(name)
+ desc = initial(desc)
+ stealthy = initial(stealthy)
+ update_appearance()
+
+/obj/machinery/door/airlock/cult/narsie_act()
+ return
+
+/obj/machinery/door/airlock/cult/friendly
+ friendly = TRUE
+
+/obj/machinery/door/airlock/cult/glass
+ glass = TRUE
+ opacity = FALSE
+
+/obj/machinery/door/airlock/cult/glass/friendly
+ friendly = TRUE
+
+/obj/machinery/door/airlock/cult/unruned
+ icon = 'icons/obj/doors/airlocks/cult/unruned/cult.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/cult/unruned/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/door_assembly_cult/unruned
+ openingoverlaytype = /obj/effect/temp_visual/cult/door/unruned
+
+/obj/machinery/door/airlock/cult/unruned/friendly
+ friendly = TRUE
+
+/obj/machinery/door/airlock/cult/unruned/glass
+ glass = TRUE
+ opacity = FALSE
+
+/obj/machinery/door/airlock/cult/unruned/glass/friendly
+ friendly = TRUE
+
+/obj/machinery/door/airlock/cult/weak
+ name = "brittle cult airlock"
+ desc = "An airlock hastily corrupted by blood magic, it is unusually brittle in this state."
+ normal_integrity = 150
+ damage_deflection = 5
+ armor_type = /datum/armor/none
+
+// Material Airlocks
+
+/obj/machinery/door/airlock/material
+ name = "Airlock"
+ material_flags = MATERIAL_EFFECTS | MATERIAL_ADD_PREFIX | MATERIAL_GREYSCALE | MATERIAL_AFFECT_STATISTICS
+ greyscale_config = /datum/greyscale_config/material_airlock
+ assemblytype = /obj/structure/door_assembly/door_assembly_material
+
+/obj/machinery/door/airlock/material/close(forced, force_crush)
+ . = ..()
+ if(!.)
+ return
+ for(var/datum/material/mat in custom_materials)
+ if(mat.alpha < 255)
+ set_opacity(FALSE)
+ break
+
+/obj/machinery/door/airlock/material/prepare_deconstruction_assembly(obj/structure/door_assembly/assembly)
+ assembly.set_custom_materials(custom_materials)
+ ..()
+
+/obj/machinery/door/airlock/material/glass
+ opacity = FALSE
+ glass = TRUE
+
+// Multi-tile (Large) Airlocks
+
+/obj/machinery/door/airlock/multi_tile
+ icon = 'icons/obj/doors/airlocks/multi_tile/public/glass.dmi'
+ overlays_file = 'icons/obj/doors/airlocks/multi_tile/public/overlays.dmi'
+ assemblytype = /obj/structure/door_assembly/multi_tile/door_assembly_public
+ multi_tile = TRUE
+ opacity = FALSE
+ glass = TRUE
+
+/obj/structure/fluff/airlock_filler
+ name = "airlock fluff"
+ desc = "You shouldn't be able to see this fluff!"
+ icon = null
+ icon_state = null
+ density = TRUE
+ opacity = TRUE
+ anchored = TRUE
+ invisibility = INVISIBILITY_MAXIMUM
+ can_atmos_pass = ATMOS_PASS_DENSITY
+ /// The door/airlock this fluff panel is attached to
+ var/obj/machinery/door/filled_airlock
+
+/obj/machinery/door/airlock/multi_tile/public/glass
+
+/obj/machinery/door/airlock/multi_tile/narsie_act()
+ return
+
+/*
+ * Subtype used in unit tests to ensure instant airlock opening/closing.
+ *
+ * Pretty much just excises everything that would delay the process or is un-needed
+ * for the sake of the test (sleeps, icon animations).
+*/
+/obj/machinery/door/airlock/instant
+
+// set_density on both open and close procs has a check and return builtin.
+
+/obj/machinery/door/airlock/instant/open(forced = DEFAULT_DOOR_CHECKS)
+ operating = TRUE
+ SEND_SIGNAL(src, COMSIG_AIRLOCK_OPEN, forced)
+ set_density(FALSE)
+ operating = FALSE
+ return TRUE
+
+/obj/machinery/door/airlock/instant/close(forced = DEFAULT_DOOR_CHECKS, force_crush = FALSE)
+ operating = TRUE
+ SEND_SIGNAL(src, COMSIG_AIRLOCK_CLOSE, forced)
+ set_density(TRUE)
+ operating = FALSE
+ return TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/fluff/airlock_filler/Destroy(force)
filled_airlock = null
@@ -2551,5 +3335,8 @@
#undef AIRLOCK_FRAME_CLOSING
#undef AIRLOCK_FRAME_OPEN
#undef AIRLOCK_FRAME_OPENING
+<<<<<<< HEAD
*/
// SKYRAT EDIT REMOVAL END - moved to code/__DEFINES/~skyrat_defines/airlock.dm
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/machinery/doors/airlock_electronics.dm b/code/game/machinery/doors/airlock_electronics.dm
index 73ae0994eb5..aeb1eec4681 100644
--- a/code/game/machinery/doors/airlock_electronics.dm
+++ b/code/game/machinery/doors/airlock_electronics.dm
@@ -109,7 +109,11 @@
var/new_cycle_id = trim(params["passedCycleId"], 30)
passed_cycle_id = new_cycle_id
+<<<<<<< HEAD
/obj/item/electronics/airlock/ui_act(action, params)
+=======
+/obj/item/electronics/airlock/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/doors/brigdoors.dm b/code/game/machinery/doors/brigdoors.dm
index 30489173e67..7105d3bf483 100644
--- a/code/game/machinery/doors/brigdoors.dm
+++ b/code/game/machinery/doors/brigdoors.dm
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
//#define MAX_TIMER (15 MINUTES) //ORIGINAL
#define MAX_TIMER (60 MINUTES) //SKYRAT EDIT CHANGE
//#define PRESET_SHORT (2 MINUTES) //ORIGINAL
@@ -6,6 +7,12 @@
#define PRESET_MEDIUM (10 MINUTES) //SKYRAT EDIT CHANGE
//#define PRESET_LONG (5 MINUTES) //ORIGINAL
#define PRESET_LONG (15 MINUTES) //SKYRAT EDIT CHANGE
+=======
+#define MAX_TIMER (15 MINUTES)
+#define PRESET_SHORT (2 MINUTES)
+#define PRESET_MEDIUM (3 MINUTES)
+#define PRESET_LONG (5 MINUTES)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* Brig Door control displays.
@@ -78,7 +85,11 @@
if(!timing)
return PROCESS_KILL
+<<<<<<< HEAD
if(REALTIMEOFDAY - activation_time >= timer_duration) // SKYRAT EDIT CHANGE: original was world.time
+=======
+ if(world.time - activation_time >= timer_duration)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
timer_end() // open doors, reset timer, clear status screen
update_content()
@@ -177,7 +188,11 @@
* * seconds - Return the time in seconds if TRUE, else deciseconds.
*/
/obj/machinery/status_display/door_timer/proc/time_left(seconds = FALSE)
+<<<<<<< HEAD
. = max(0, timer_duration + (activation_time ? activation_time - REALTIMEOFDAY : 0)) // SKYRAT EDIT CHANGE, Original: . = max(0, timer_duration + (activation_time ? activation_time - world.time : 0))
+=======
+ . = max(0, timer_duration + (activation_time ? activation_time - world.time : 0))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(seconds)
. /= (1 SECONDS)
@@ -218,7 +233,11 @@
break
return data
+<<<<<<< HEAD
/obj/machinery/status_display/door_timer/ui_act(action, params)
+=======
+/obj/machinery/status_display/door_timer/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm
index 2edd188c6e8..5c3adb22cbf 100644
--- a/code/game/machinery/doors/door.dm
+++ b/code/game/machinery/doors/door.dm
@@ -576,11 +576,19 @@
else if(ismonkey(future_pancake)) //For monkeys
future_pancake.emote("screech")
future_pancake.adjustBruteLoss(DOOR_CRUSH_DAMAGE)
+<<<<<<< HEAD
future_pancake.StaminaKnockdown(20, TRUE, TRUE) // SKYRAT EDIT CHANGE - AIRLOCKS - ORIGINAL: future_pancake.Paralyze(100)
else if(ishuman(future_pancake)) //For humans
future_pancake.adjustBruteLoss(DOOR_CRUSH_DAMAGE)
future_pancake.emote("scream")
future_pancake.StaminaKnockdown(20, TRUE, TRUE) // SKYRAT EDIT CHANGE - AIRLOCKS - ORIGINAL: future_pancake.Paralyze(100)
+=======
+ future_pancake.Paralyze(100)
+ else if(ishuman(future_pancake)) //For humans
+ future_pancake.adjustBruteLoss(DOOR_CRUSH_DAMAGE)
+ future_pancake.emote("scream")
+ future_pancake.Paralyze(100)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else //for simple_animals & borgs
future_pancake.adjustBruteLoss(DOOR_CRUSH_DAMAGE)
var/turf/location = get_turf(src)
@@ -691,4 +699,8 @@
return ..()
return ..(0)
+<<<<<<< HEAD
// #undef DOOR_CLOSE_WAIT // SKYRAT EDIT REMOVAL - moved to code/__DEFINES/~skyrat_defines/airlock.dm
+=======
+#undef DOOR_CLOSE_WAIT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/machinery/doors/firedoor.dm b/code/game/machinery/doors/firedoor.dm
index e742eb2c020..1725ae4ffc2 100644
--- a/code/game/machinery/doors/firedoor.dm
+++ b/code/game/machinery/doors/firedoor.dm
@@ -279,11 +279,21 @@
/obj/machinery/door/firedoor/proc/check_atmos(turf/checked_turf)
var/datum/gas_mixture/environment = checked_turf.return_air()
+<<<<<<< HEAD
var/pressure = environment?.return_pressure() //SKYRAT EDIT ADDITION - Micro optimisation
if(environment?.temperature >= BODYTEMP_HEAT_DAMAGE_LIMIT || pressure > WARNING_HIGH_PRESSURE) //SKYRAT EDIT CHANGE - BETTER LOCKS
return FIRELOCK_ALARM_TYPE_HOT
if(environment?.temperature <= BODYTEMP_COLD_DAMAGE_LIMIT || pressure < WARNING_LOW_PRESSURE) //SKYRAT EDIT CHANGE - BETTER LOCKS
+=======
+ if(!environment)
+ stack_trace("We tried to check a gas_mixture that doesn't exist for its firetype, what are you DOING")
+ return
+
+ if(environment.temperature >= FIRE_MINIMUM_TEMPERATURE_TO_EXIST)
+ return FIRELOCK_ALARM_TYPE_HOT
+ if(environment.temperature <= BODYTEMP_COLD_DAMAGE_LIMIT)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FIRELOCK_ALARM_TYPE_COLD
return
diff --git a/code/game/machinery/embedded_controller/access_controller.dm b/code/game/machinery/embedded_controller/access_controller.dm
index be3730fd57c..2fc64ff1208 100644
--- a/code/game/machinery/embedded_controller/access_controller.dm
+++ b/code/game/machinery/embedded_controller/access_controller.dm
@@ -31,7 +31,11 @@
return TRUE
/obj/machinery/door_buttons/access_button
+<<<<<<< HEAD
icon = 'icons/obj/machines/wallmounts.dmi' // SKYRAT EDIT CHANGE - ICON OVERRIDDEN BY AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/machines/wallmounts.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "access_button_standby"
base_icon_state = "access_button"
name = "access button"
diff --git a/code/game/machinery/embedded_controller/airlock_controller.dm b/code/game/machinery/embedded_controller/airlock_controller.dm
index fe0ca05c760..1dbb0c473cb 100644
--- a/code/game/machinery/embedded_controller/airlock_controller.dm
+++ b/code/game/machinery/embedded_controller/airlock_controller.dm
@@ -6,7 +6,11 @@
#define AIRLOCK_STATE_OUTOPEN "outopen"
/obj/machinery/airlock_controller
+<<<<<<< HEAD
icon = 'icons/obj/machines/wallmounts.dmi' // SKYRAT EDIT CHANGE - ICON OVERRIDDEN BY AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/machines/wallmounts.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "airlock_control_standby"
base_icon_state = "airlock_control"
@@ -244,7 +248,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/airlock_controller/ui_act(action, params)
+=======
+/obj/machinery/airlock_controller/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/flatpacker.dm b/code/game/machinery/flatpacker.dm
index 182db1edc08..b58d27e86e3 100644
--- a/code/game/machinery/flatpacker.dm
+++ b/code/game/machinery/flatpacker.dm
@@ -112,7 +112,11 @@
/obj/machinery/flatpacker/proc/AfterMaterialInsert(container, obj/item/item_inserted, last_inserted_id, mats_consumed, amount_inserted, atom/context)
SIGNAL_HANDLER
+<<<<<<< HEAD
//we use initial(active_power_usage) because higher tier parts will have higher active usage but we have no benifit from it
+=======
+ //we use initial(active_power_usage) because higher tier parts will have higher active usage but we have no benefit from it
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(directly_use_energy(ROUND_UP((amount_inserted / (MAX_STACK_SIZE * SHEET_MATERIAL_AMOUNT)) * 0.4 * initial(active_power_usage))))
flick_overlay_view(mutable_appearance('icons/obj/machines/lathes.dmi', "flatpacker_bar"), 1 SECONDS)
@@ -292,7 +296,11 @@
if(isnull(amount))
return
+<<<<<<< HEAD
//we use initial(active_power_usage) because higher tier parts will have higher active usage but we have no benifit from it
+=======
+ //we use initial(active_power_usage) because higher tier parts will have higher active usage but we have no benefit from it
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!directly_use_energy(ROUND_UP((amount / MAX_STACK_SIZE) * 0.4 * initial(active_power_usage))))
say("No power to dispense sheets")
return
diff --git a/code/game/machinery/gulag_item_reclaimer.dm b/code/game/machinery/gulag_item_reclaimer.dm
index 72ac0e746f4..c7b046e15d9 100644
--- a/code/game/machinery/gulag_item_reclaimer.dm
+++ b/code/game/machinery/gulag_item_reclaimer.dm
@@ -82,7 +82,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/gulag_item_reclaimer/ui_act(action, params)
+=======
+/obj/machinery/gulag_item_reclaimer/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm
index a2d67f8be49..0bcdda80539 100644
--- a/code/game/machinery/hologram.dm
+++ b/code/game/machinery/hologram.dm
@@ -168,7 +168,11 @@ Possible to do for anyone motivated enough:
/obj/machinery/holopad/tutorial/attack_hand(mob/user, list/modifiers)
if(!istype(user))
return
+<<<<<<< HEAD
if(user.incapacitated() || !is_operational)
+=======
+ if(user.incapacitated || !is_operational)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(replay_mode)
replay_stop()
@@ -308,7 +312,7 @@ Possible to do for anyone motivated enough:
data["holo_calls"] += list(call_data)
return data
-/obj/machinery/holopad/ui_act(action, list/params)
+/obj/machinery/holopad/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
@@ -550,6 +554,7 @@ Possible to do for anyone motivated enough:
if(AI)
AI.eyeobj.setLoc(get_turf(src)) //ensure the AI camera moves to the holopad
+<<<<<<< HEAD
hologram.Impersonation = AI //SKYRAT EDIT -- ADDITION -- Customization; puts the AI core as the impersonated mob so that the examine proc can be redirected
else //make it like real life
hologram.Impersonation = user
@@ -559,6 +564,15 @@ Possible to do for anyone motivated enough:
hologram.set_anchored(TRUE)//So space wind cannot drag it.
//hologram.name = "[user.name] (Hologram)"//If someone decides to right click. // ORIGINAL
hologram.name = user.name //SKYRAT EDIT -- Make the name exact, so that the double-emotes are less jarring in the chat
+=======
+ else //make it like real life
+ hologram.Impersonation = user
+ hologram.mouse_opacity = MOUSE_OPACITY_TRANSPARENT//So you can't click on it.
+ hologram.layer = FLY_LAYER //Above all the other objects/mobs. Or the vast majority of them.
+ SET_PLANE_EXPLICIT(hologram, ABOVE_GAME_PLANE, src)
+ hologram.set_anchored(TRUE)//So space wind cannot drag it.
+ hologram.name = "[user.name] (Hologram)"//If someone decides to right click.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
set_holo(user, hologram)
set_holo(user, hologram)
@@ -677,7 +691,11 @@ For the other part of the code, check silicon say.dm. Particularly robot talk.*/
if(!isliving(owner))
return TRUE
var/mob/living/user = owner
+<<<<<<< HEAD
if(user.incapacitated() || !user.client)
+=======
+ if(user.incapacitated || !user.client)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/machinery/hypnochair.dm b/code/game/machinery/hypnochair.dm
index f8f3ed49be5..2a8d7b90cb5 100644
--- a/code/game/machinery/hypnochair.dm
+++ b/code/game/machinery/hypnochair.dm
@@ -63,7 +63,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/hypnochair/ui_act(action, params)
+=======
+/obj/machinery/hypnochair/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm
index 4ac2a177e76..1105aa34702 100644
--- a/code/game/machinery/iv_drip.dm
+++ b/code/game/machinery/iv_drip.dm
@@ -106,7 +106,11 @@
.["containerMaxVolume"] = drip_reagents.maximum_volume
.["containerReagentColor"] = mix_color_from_reagents(drip_reagents.reagent_list)
+<<<<<<< HEAD
/obj/machinery/iv_drip/ui_act(action, params)
+=======
+/obj/machinery/iv_drip/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -319,11 +323,19 @@
if(!isliving(usr))
to_chat(usr, span_warning("You can't do that!"))
+<<<<<<< HEAD
return
if(!usr.can_perform_action(src))
return
if(usr.incapacitated())
return
+=======
+ return
+ if(!usr.can_perform_action(src))
+ return
+ if(usr.incapacitated)
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(reagent_container)
if(attached)
visible_message(span_warning("[attached] is detached from [src]."))
@@ -340,7 +352,11 @@
if(!isliving(usr))
to_chat(usr, span_warning("You can't do that!"))
return
+<<<<<<< HEAD
if(!usr.can_perform_action(src) || usr.incapacitated())
+=======
+ if(!usr.can_perform_action(src) || usr.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(inject_only)
mode = IV_INJECTING
diff --git a/code/game/machinery/launch_pad.dm b/code/game/machinery/launch_pad.dm
index 8733ca54863..b12dcdcd341 100644
--- a/code/game/machinery/launch_pad.dm
+++ b/code/game/machinery/launch_pad.dm
@@ -417,7 +417,11 @@
return
pad.doteleport(user, sending)
+<<<<<<< HEAD
/obj/item/launchpad_remote/ui_act(action, params)
+=======
+/obj/item/launchpad_remote/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm
index 731b8f3a085..d9198a7ddb4 100644
--- a/code/game/machinery/lightswitch.dm
+++ b/code/game/machinery/lightswitch.dm
@@ -1,7 +1,11 @@
/// The light switch. Can have multiple per area.
/obj/machinery/light_switch
name = "light switch"
+<<<<<<< HEAD
icon = 'icons/obj/machines/wallmounts.dmi' //SKYRAT EDIT CHANGE - ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/machines/wallmounts.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "light-nopower"
base_icon_state = "light"
desc = "Make dark."
diff --git a/code/game/machinery/limbgrower.dm b/code/game/machinery/limbgrower.dm
index de676a8815a..9f3c1e66dad 100644
--- a/code/game/machinery/limbgrower.dm
+++ b/code/game/machinery/limbgrower.dm
@@ -149,7 +149,11 @@
if(user.combat_mode) //so we can hit the machine
return ..()
+<<<<<<< HEAD
/obj/machinery/limbgrower/ui_act(action, list/params)
+=======
+/obj/machinery/limbgrower/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/medical_kiosk.dm b/code/game/machinery/medical_kiosk.dm
index d9fe1f2c3a7..b51682ee070 100644
--- a/code/game/machinery/medical_kiosk.dm
+++ b/code/game/machinery/medical_kiosk.dm
@@ -263,10 +263,13 @@
var/list/trauma_text = list()
for(var/t in patient.get_traumas())
var/datum/brain_trauma/trauma = t
+<<<<<<< HEAD
//SKYRAT EDIT: Scary Traits (Bimbo)
if(!trauma.display_scanner)
continue
//SKYRAT EDIT: Scary Traits (Bimbo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/trauma_desc = ""
switch(trauma.resilience)
if(TRAUMA_RESILIENCE_SURGERY)
@@ -278,7 +281,10 @@
trauma_desc += "soul-bound "
if(TRAUMA_RESILIENCE_ABSOLUTE)
trauma_desc += "permanent "
+<<<<<<< HEAD
// SKYRAT EDIT CHANGE END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
trauma_desc += trauma.scan_desc
trauma_text += trauma_desc
trauma_status = "Cerebral traumas detected: patient appears to be suffering from [english_list(trauma_text)]."
diff --git a/code/game/machinery/modular_shield.dm b/code/game/machinery/modular_shield.dm
index 5c621be756d..8224b2e7fd7 100644
--- a/code/game/machinery/modular_shield.dm
+++ b/code/game/machinery/modular_shield.dm
@@ -276,7 +276,11 @@
data["initiating_field"] = initiating
return data
+<<<<<<< HEAD
/obj/machinery/modular_shield_generator/ui_act(action, params)
+=======
+/obj/machinery/modular_shield_generator/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/navbeacon.dm b/code/game/machinery/navbeacon.dm
index c15421cbf5a..f1139125c88 100644
--- a/code/game/machinery/navbeacon.dm
+++ b/code/game/machinery/navbeacon.dm
@@ -181,6 +181,7 @@
data["static_controls"] = static_controls
return data
+<<<<<<< HEAD
/obj/machinery/navbeacon/ui_act(action, params)
. = ..()
if(.)
@@ -228,6 +229,56 @@
codes[NAVBEACON_DELIVERY_DIRECTION] = "[text2dir(params["direction"])]"
return TRUE
+=======
+/obj/machinery/navbeacon/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ if(.)
+ return
+ var/mob/user = ui.user
+
+ if(action == "lock" && allowed(user))
+ controls_locked = !controls_locked
+ return TRUE
+
+ if(controls_locked && !HAS_SILICON_ACCESS(user))
+ return
+
+ switch(action)
+ if("reset_codes")
+ glob_lists_deregister()
+ location = original_location
+ set_codes()
+ glob_lists_register()
+ return TRUE
+ if("toggle_cover")
+ cover_locked = !cover_locked
+ return TRUE
+ if("toggle_patrol")
+ toggle_code(NAVBEACON_PATROL_MODE)
+ return TRUE
+ if("toggle_delivery")
+ toggle_code(NAVBEACON_DELIVERY_MODE)
+ return TRUE
+ if("set_location")
+ var/input_text = tgui_input_text(user, "Enter the beacon's location tag", "Beacon Location", location, 20)
+ if (!input_text || location == input_text)
+ return
+ glob_lists_deregister()
+ location = input_text
+ glob_lists_register()
+ return TRUE
+ if("set_patrol_next")
+ var/next_patrol = codes[NAVBEACON_PATROL_NEXT]
+ var/input_text = tgui_input_text(user, "Enter the tag of the next patrol location", "Beacon Location", next_patrol, 20)
+ if (!input_text || location == input_text)
+ return
+ codes[NAVBEACON_PATROL_NEXT] = input_text
+ return TRUE
+ if("set_delivery_direction")
+ codes[NAVBEACON_DELIVERY_DIRECTION] = "[text2dir(params["direction"])]"
+ return TRUE
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Adds or removes a specific code
/obj/machinery/navbeacon/proc/toggle_code(code)
if(codes[code])
diff --git a/code/game/machinery/newscaster/newscaster_machine.dm b/code/game/machinery/newscaster/newscaster_machine.dm
index 7f3d8ea806f..482c34187c2 100644
--- a/code/game/machinery/newscaster/newscaster_machine.dm
+++ b/code/game/machinery/newscaster/newscaster_machine.dm
@@ -64,7 +64,11 @@
acid = 30
/obj/machinery/newscaster/pai/ui_state(mob/user)
+<<<<<<< HEAD
return GLOB.reverse_contained_state
+=======
+ return GLOB.deep_inventory_state
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster, 30)
@@ -264,7 +268,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/newscaster, 30)
return data
+<<<<<<< HEAD
/obj/machinery/newscaster/ui_act(action, params)
+=======
+/obj/machinery/newscaster/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/pipe/construction.dm b/code/game/machinery/pipe/construction.dm
index ef18dc6b068..39d6fe7d2ea 100644
--- a/code/game/machinery/pipe/construction.dm
+++ b/code/game/machinery/pipe/construction.dm
@@ -175,7 +175,7 @@ Buildable meters
set name = "Invert Pipe"
set src in view(1)
- if ( usr.incapacitated() )
+ if ( usr.incapacitated )
return
do_a_flip()
diff --git a/code/game/machinery/pipe/pipe_dispenser.dm b/code/game/machinery/pipe/pipe_dispenser.dm
index eb5b499bce7..66889d8b3f5 100644
--- a/code/game/machinery/pipe/pipe_dispenser.dm
+++ b/code/game/machinery/pipe/pipe_dispenser.dm
@@ -62,7 +62,11 @@
data["init_directions"] = init_directions
return data
+<<<<<<< HEAD
/obj/machinery/pipedispenser/ui_act(action, params)
+=======
+/obj/machinery/pipedispenser/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(..())
return
switch(action)
@@ -187,6 +191,12 @@
//Allow you to drag-drop disposal pipes and transit tubes into it
/obj/machinery/pipedispenser/disposal/mouse_drop_receive(obj/structure/pipe, mob/user, params)
+<<<<<<< HEAD
+=======
+ if(user.incapacitated)
+ return
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (!istype(pipe, /obj/structure/disposalconstruct) && !istype(pipe, /obj/structure/c_transit_tube) && !istype(pipe, /obj/structure/c_transit_tube_pod))
return
diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm
index c9694730a3f..44ff9bc1b24 100644
--- a/code/game/machinery/porta_turret/portable_turret.dm
+++ b/code/game/machinery/porta_turret/portable_turret.dm
@@ -264,7 +264,7 @@ DEFINE_BITFIELD(turret_flags, list(
data["allow_manual_control"] = TRUE
return data
-/obj/machinery/porta_turret/ui_act(action, list/params)
+/obj/machinery/porta_turret/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
@@ -1025,34 +1025,40 @@ DEFINE_BITFIELD(turret_flags, list(
/obj/machinery/turretid/ui_data(mob/user)
var/list/data = list()
data["locked"] = locked
- data["siliconUser"] = user.has_unlimited_silicon_privilege
+ data["siliconUser"] = HAS_SILICON_ACCESS(user)
data["enabled"] = enabled
data["lethal"] = lethal
data["shootCyborgs"] = shoot_cyborgs
return data
-/obj/machinery/turretid/ui_act(action, list/params)
+/obj/machinery/turretid/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
+ var/mob/user = ui.user
+
switch(action)
if("lock")
- if(!usr.has_unlimited_silicon_privilege)
+ if(!HAS_SILICON_ACCESS(user))
return
if((obj_flags & EMAGGED) || (machine_stat & BROKEN))
+<<<<<<< HEAD
to_chat(usr, span_warning("The turret control is unresponsive!"))
+=======
+ to_chat(user, span_warning("The turret control is unresponsive!"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
locked = !locked
return TRUE
if("power")
- toggle_on(usr)
+ toggle_on(user)
return TRUE
if("mode")
- toggle_lethal(usr)
+ toggle_lethal(user)
return TRUE
if("shoot_silicons")
- shoot_silicons(usr)
+ shoot_silicons(user)
return TRUE
/obj/machinery/turretid/proc/toggle_lethal(mob/user)
diff --git a/code/game/machinery/recharger.dm b/code/game/machinery/recharger.dm
index 3469ddae3a9..2a914a6ca42 100755
--- a/code/game/machinery/recharger.dm
+++ b/code/game/machinery/recharger.dm
@@ -99,6 +99,7 @@
if(!energy_gun.can_charge)
to_chat(user, span_notice("Your gun has no external power connector."))
return TRUE
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if (istype(attacking_item, /obj/item/gun/microfusion))
@@ -114,6 +115,8 @@
return TRUE
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.transferItemToLoc(attacking_item, src)
return TRUE
diff --git a/code/game/machinery/rechargestation.dm b/code/game/machinery/rechargestation.dm
index 92a0e05f269..e1e0880aefe 100644
--- a/code/game/machinery/rechargestation.dm
+++ b/code/game/machinery/rechargestation.dm
@@ -72,7 +72,11 @@
recharge_speed = 0
repairs = 0
for(var/datum/stock_part/capacitor/capacitor in component_parts)
+<<<<<<< HEAD
recharge_speed += (capacitor.tier * STANDARD_CELL_CHARGE * 0.1)
+=======
+ recharge_speed += 5e-3 * capacitor.tier
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/datum/stock_part/servo/servo in component_parts)
repairs += servo.tier - 1
for(var/obj/item/stock_parts/power_store/cell in component_parts)
diff --git a/code/game/machinery/requests_console.dm b/code/game/machinery/requests_console.dm
index f2b1ba303eb..a0b7940460c 100644
--- a/code/game/machinery/requests_console.dm
+++ b/code/game/machinery/requests_console.dm
@@ -200,7 +200,11 @@ GLOBAL_LIST_EMPTY(req_console_ckey_departments)
var/mob/living/L = usr
message = L.treat_message(message)["message"]
+<<<<<<< HEAD
minor_announce(message, "[department] Announcement:", html_encode = FALSE, sound_override = ANNOUNCER_DEPARTMENTAL) // SKYRAT EDIT CHANGE - Announcer Sounds
+=======
+ minor_announce(message, "[department] Announcement:", html_encode = FALSE, sound_override = 'sound/misc/announce_dig.ogg')
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
GLOB.news_network.submit_article(message, department, "Station Announcements", null)
usr.log_talk(message, LOG_SAY, tag="station announcement from [src]")
message_admins("[ADMIN_LOOKUPFLW(usr)] has made a station announcement from [src] at [AREACOORD(usr)].")
diff --git a/code/game/machinery/roulette_machine.dm b/code/game/machinery/roulette_machine.dm
index 2a8dc8bb49b..8b0117176e3 100644
--- a/code/game/machinery/roulette_machine.dm
+++ b/code/game/machinery/roulette_machine.dm
@@ -98,7 +98,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/roulette/ui_act(action, params)
+=======
+/obj/machinery/roulette/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/satellite/satellite_control.dm b/code/game/machinery/satellite/satellite_control.dm
index c0875d9e26a..b85b14156b6 100644
--- a/code/game/machinery/satellite/satellite_control.dm
+++ b/code/game/machinery/satellite/satellite_control.dm
@@ -11,7 +11,11 @@
ui = new(user, src, "SatelliteControl", name)
ui.open()
+<<<<<<< HEAD
/obj/machinery/computer/sat_control/ui_act(action, params)
+=======
+/obj/machinery/computer/sat_control/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/scanner_gate.dm b/code/game/machinery/scanner_gate.dm
index ce5158828ca..db3f7c8b1eb 100644
--- a/code/game/machinery/scanner_gate.dm
+++ b/code/game/machinery/scanner_gate.dm
@@ -17,6 +17,7 @@
#define SCANGATE_POD "pod"
#define SCANGATE_GOLEM "golem"
#define SCANGATE_ZOMBIE "zombie"
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - MORE SCANNER GATE OPTIONS
#define SCANGATE_MAMMAL "mammal"
#define SCANGATE_VOX "vox"
@@ -32,6 +33,8 @@
#define SCANGATE_SNAIL "snail"
#define SCANGATE_GENDER "Gender"
//SKYRAT EDIT ADDITION END - MORE SCANNER GATE OPTIONS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/scanner_gate
name = "scanner gate"
@@ -61,7 +64,10 @@
var/light_fail = FALSE
///Does the scanner ignore light_pass and light_fail for sending signals?
var/ignore_signals = FALSE
+<<<<<<< HEAD
var/detect_gender = "male" //SKYRAT EDIT ADDITION - MORE SCANNER GATE OPTIONS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Modifier to the chance of scanner being false positive/negative
var/minus_false_beep = 0
///Base false positive/negative chance
@@ -248,6 +254,7 @@
if(SCANGATE_ZOMBIE)
detected_thing = "Zombie"
scan_species = /datum/species/zombie
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN - MORE SCANNER GATE OPTIONS
if(SCANGATE_MAMMAL)
scan_species = /datum/species/mammal
@@ -274,6 +281,8 @@
if(SCANGATE_SNAIL)
scan_species = /datum/species/snail
//SKYRAT EDIT END - MORE SCANNER GATE OPTIONS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(is_species(scanned_human, scan_species))
beep = TRUE
if(detect_species == SCANGATE_ZOMBIE) //Can detect dormant zombies
@@ -308,6 +317,7 @@
if(scanned_human.nutrition >= detect_nutrition && detect_nutrition == NUTRITION_LEVEL_FAT)
beep = TRUE
detected_thing = "Obesity"
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN - MORE SCANNER GATE OPTIONS
if(SCANGATE_GENDER)
detected_thing = detect_gender
@@ -317,6 +327,8 @@
if(scanned_human.gender == detect_gender)
beep = TRUE
//SKYRAT EDIT END - MORE SCANNER GATE OPTIONS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(SCANGATE_CONTRABAND)
for(var/obj/item/content in thing.get_all_contents_skipping_traits(TRAIT_CONTRABAND_BLOCKER))
detected_thing = "Contraband"
@@ -379,11 +391,18 @@
data["disease_threshold"] = disease_threshold
data["target_species"] = detect_species
data["target_nutrition"] = detect_nutrition
+<<<<<<< HEAD
data["target_gender"] = detect_gender //SKYRAT EDIT - MORE SCANNER GATE OPTIONS
data["contraband_enabled"] = !!n_spect
return data
/obj/machinery/scanner_gate/ui_act(action, params)
+=======
+ data["contraband_enabled"] = !!n_spect
+ return data
+
+/obj/machinery/scanner_gate/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -422,6 +441,7 @@
if("Obese")
detect_nutrition = NUTRITION_LEVEL_FAT
. = TRUE
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN - MORE SCANNER GATE OPTIONS
if("set_target_gender")
var/new_gender = params["new_gender"]
@@ -437,6 +457,8 @@
detect_gender = "female"
. = TRUE
//SKYRAT EDIT END - MORE SCANNER GATE OPTIONS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/scanner_gate/preset_guns
locked = TRUE
@@ -462,6 +484,7 @@
#undef SCANGATE_POD
#undef SCANGATE_GOLEM
#undef SCANGATE_ZOMBIE
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN - MORE SCANNER GATE OPTIONS
#undef SCANGATE_MAMMAL
#undef SCANGATE_VOX
@@ -478,3 +501,5 @@
#undef SCANGATE_GENDER
//SKYRAT EDIT END - MORE SCANNER GATE OPTIONS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/machinery/shieldgen.dm b/code/game/machinery/shieldgen.dm
index d5dc9e3a26e..462b107e44d 100644
--- a/code/game/machinery/shieldgen.dm
+++ b/code/game/machinery/shieldgen.dm
@@ -283,7 +283,11 @@
/obj/machinery/power/shieldwallgen
name = "shield wall generator"
desc = "A shield generator."
+<<<<<<< HEAD
icon ='icons/obj/machines/shield_generator.dmi' //SKYRAT EDIT CHANGE - ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/machines/shield_generator.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "shield_wall_gen"
base_icon_state = "shield_wall_gen"
light_on = FALSE
diff --git a/code/game/machinery/sleepers.dm b/code/game/machinery/sleepers.dm
index 63291035e78..34d416498f6 100644
--- a/code/game/machinery/sleepers.dm
+++ b/code/game/machinery/sleepers.dm
@@ -237,7 +237,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/sleeper/ui_act(action, params)
+=======
+/obj/machinery/sleeper/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -300,17 +304,33 @@
* Can be controlled from the inside and can be deconstructed.
*/
/obj/machinery/sleeper/syndie
+<<<<<<< HEAD
+=======
+ name = "syndicate sleeper"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "sleeper_s"
base_icon_state = "sleeper_s"
controls_inside = TRUE
deconstructable = TRUE
+<<<<<<< HEAD
///Fully upgraded variant, the circuit using tier 4 parts.
/obj/machinery/sleeper/syndie/fullupgrade
+=======
+ circuit = /obj/item/circuitboard/machine/sleeper/syndie
+
+///Fully upgraded variant, the circuit using tier 4 parts.
+/obj/machinery/sleeper/syndie/fullupgrade
+ name = "upgraded syndicate sleeper"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
circuit = /obj/item/circuitboard/machine/sleeper/fullupgrade
///Fully upgraded, not deconstructable, while using the normal sprite.
/obj/machinery/sleeper/syndie/fullupgrade/nt
+<<<<<<< HEAD
+=======
+ name = "\improper Nanotrasen sleeper"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "sleeper"
base_icon_state = "sleeper"
deconstructable = FALSE
diff --git a/code/game/machinery/slotmachine.dm b/code/game/machinery/slotmachine.dm
index bb93b7d00f5..b9eca3c52bc 100644
--- a/code/game/machinery/slotmachine.dm
+++ b/code/game/machinery/slotmachine.dm
@@ -109,7 +109,11 @@
else
if(!user.temporarilyRemoveItemFromInventory(inserted_coin))
return ITEM_INTERACT_BLOCKING
+<<<<<<< HEAD
balloon_alert(user, "coin insterted")
+=======
+ balloon_alert(user, "coin inserted")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
balance += inserted_coin.value
qdel(inserted_coin)
return ITEM_INTERACT_SUCCESS
diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm
index 90218cef96d..b597fd9e8c2 100644
--- a/code/game/machinery/spaceheater.dm
+++ b/code/game/machinery/spaceheater.dm
@@ -8,7 +8,11 @@
anchored = FALSE
density = TRUE
interaction_flags_machine = INTERACT_MACHINE_WIRES_IF_OPEN | INTERACT_MACHINE_ALLOW_SILICON | INTERACT_MACHINE_OPEN
+<<<<<<< HEAD
icon = 'icons/obj/pipes_n_cables/atmos.dmi' // SKYRAT EDIT CHANGE - ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/pipes_n_cables/atmos.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "sheater-off"
base_icon_state = "sheater"
name = "space heater"
@@ -262,7 +266,11 @@
data["currentTemp"] = round(current_temperature - T0C, 1)
return data
+<<<<<<< HEAD
/obj/machinery/space_heater/ui_act(action, params)
+=======
+/obj/machinery/space_heater/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -387,7 +395,11 @@
.["beaker"] = beaker
.["currentTemp"] = beaker ? (round(beaker.reagents.chem_temp - T0C)) : "N/A"
+<<<<<<< HEAD
/obj/machinery/space_heater/improvised_chem_heater/ui_act(action, params)
+=======
+/obj/machinery/space_heater/improvised_chem_heater/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm
index 7a6ce09206e..62643f1f924 100644
--- a/code/game/machinery/status_display.dm
+++ b/code/game/machinery/status_display.dm
@@ -14,7 +14,11 @@ GLOBAL_DATUM_INIT(status_font, /datum/font, new /datum/font/tiny_unicode/size_12
/obj/machinery/status_display
name = "status display"
desc = null
+<<<<<<< HEAD
icon = 'icons/obj/machines/status_display.dmi' //// SKYRAT EDIT CHANGE - ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/machines/status_display.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "frame"
verb_say = "beeps"
verb_ask = "beeps"
@@ -198,7 +202,11 @@ GLOBAL_LIST_EMPTY(key_to_status_display)
if(message1 == "" && message2 == "")
return
+<<<<<<< HEAD
. += emissive_appearance('modular_skyrat/modules/aesthetics/status_display/icons/status_display.dmi', "outline", src, alpha = src.alpha) // SKYRAT EDIT CHANGE - AESTHETICS
+=======
+ . += emissive_appearance(icon, "outline", src, alpha = src.alpha)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Timed process - performs nothing in the base class
/obj/machinery/status_display/process()
@@ -534,10 +542,13 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/status_display/ai, 32)
"Red Alert" = "redalert",
"Blue Alert" = "bluealert",
"Green Alert" = "greenalert",
+<<<<<<< HEAD
"Violet Alert" = "violetalert", // SKYRAT EDIT ADD - Alert Levels
"Orange Alert" = "orangealert", // SKYRAT EDIT ADD - Alert Levels
"Amber Alert" = "amberalert", // SKYRAT EDIT ADD - Alert Levels
"Gamma Alert" = "gammaalert", // SKYRAT EDIT ADD - Alert Levels
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"Biohazard" = "biohazard",
"Lockdown" = "lockdown",
"Radiation" = "radiation",
diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm
index 6b04b2c6f34..9b3a7666669 100644
--- a/code/game/machinery/suit_storage_unit.dm
+++ b/code/game/machinery/suit_storage_unit.dm
@@ -230,7 +230,11 @@
/obj/machinery/suit_storage_unit/update_overlays()
. = ..()
+<<<<<<< HEAD
//if things arent powered, these show anyways
+=======
+ //if things aren't powered, these show anyways
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(panel_open)
. += "[base_icon_state]_panel"
if(state_open)
@@ -793,7 +797,11 @@
*/
/obj/machinery/suit_storage_unit/default_deconstruction_screwdriver(mob/user, icon_state_open, icon_state_closed, obj/item/screwdriver)
if(screwdriver.tool_behaviour == TOOL_SCREWDRIVER && (uv || locked))
+<<<<<<< HEAD
to_chat(user, span_warning("You cant open the panel while its [locked ? "locked" : "decontaminating"]"))
+=======
+ to_chat(user, span_warning("You can't open the panel while its [locked ? "locked" : "decontaminating"]"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
return ..()
diff --git a/code/game/machinery/syndicatebomb.dm b/code/game/machinery/syndicatebomb.dm
index 3a7cc849acd..fa8529b2168 100644
--- a/code/game/machinery/syndicatebomb.dm
+++ b/code/game/machinery/syndicatebomb.dm
@@ -621,7 +621,11 @@
balloon_alert(user, "set to [chosen_theme?.name || DIMENSION_CHOICE_RANDOM]")
/obj/item/bombcore/dimensional/proc/check_menu(mob/user)
+<<<<<<< HEAD
if(!user.is_holding(src) || user.incapacitated())
+=======
+ if(!user.is_holding(src) || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/machinery/telecomms/broadcasting.dm b/code/game/machinery/telecomms/broadcasting.dm
index 2c31dcbd989..8b9211418d8 100644
--- a/code/game/machinery/telecomms/broadcasting.dm
+++ b/code/game/machinery/telecomms/broadcasting.dm
@@ -155,7 +155,11 @@
if (TRANSMISSION_SUPERSPACE)
// Only radios which are independent
for(var/obj/item/radio/independent_radio in GLOB.all_radios["[frequency]"])
+<<<<<<< HEAD
if(independent_radio.independent && independent_radio.can_receive(frequency, signal_reaches_every_z_level))
+=======
+ if((independent_radio.special_channels & RADIO_SPECIAL_CENTCOM) && independent_radio.can_receive(frequency, signal_reaches_every_z_level))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
radios += independent_radio
for(var/obj/item/radio/called_radio as anything in radios)
diff --git a/code/game/machinery/telecomms/computers/logbrowser.dm b/code/game/machinery/telecomms/computers/logbrowser.dm
index 25b5ddd2127..1958e7ae225 100644
--- a/code/game/machinery/telecomms/computers/logbrowser.dm
+++ b/code/game/machinery/telecomms/computers/logbrowser.dm
@@ -95,7 +95,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/telecomms/server/ui_act(action, params)
+=======
+/obj/machinery/computer/telecomms/server/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/telecomms/computers/message.dm b/code/game/machinery/telecomms/computers/message.dm
index a38f18231fb..10605434f89 100644
--- a/code/game/machinery/telecomms/computers/message.dm
+++ b/code/game/machinery/telecomms/computers/message.dm
@@ -117,7 +117,11 @@
data["requests"] = request_list
return data
+<<<<<<< HEAD
/obj/machinery/computer/message_monitor/ui_act(action, params)
+=======
+/obj/machinery/computer/message_monitor/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return .
diff --git a/code/game/machinery/telecomms/computers/telemonitor.dm b/code/game/machinery/telecomms/computers/telemonitor.dm
index abc2b7dbdbf..2828449d9f8 100644
--- a/code/game/machinery/telecomms/computers/telemonitor.dm
+++ b/code/game/machinery/telecomms/computers/telemonitor.dm
@@ -81,7 +81,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/computer/telecomms/monitor/ui_act(action, params)
+=======
+/obj/machinery/computer/telecomms/monitor/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/telecomms/machine_interactions.dm b/code/game/machinery/telecomms/machine_interactions.dm
index fb68631b766..3e94605eff0 100644
--- a/code/game/machinery/telecomms/machine_interactions.dm
+++ b/code/game/machinery/telecomms/machine_interactions.dm
@@ -82,7 +82,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/telecomms/ui_act(action, params)
+=======
+/obj/machinery/telecomms/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/machinery/telecomms/machines/bus.dm b/code/game/machinery/telecomms/machines/bus.dm
index 15d20b3d1eb..b56b4811083 100644
--- a/code/game/machinery/telecomms/machines/bus.dm
+++ b/code/game/machinery/telecomms/machines/bus.dm
@@ -60,8 +60,8 @@
/obj/machinery/telecomms/bus/preset_two
id = "Bus 2"
network = "tcommsat"
- freq_listening = list(FREQ_SUPPLY, FREQ_SERVICE)
- autolinkers = list("processor2", "supply", "service")
+ freq_listening = list(FREQ_SUPPLY, FREQ_SERVICE, FREQ_ENTERTAINMENT)
+ autolinkers = list("processor2", "supply", "service", "entertainment")
/obj/machinery/telecomms/bus/preset_three
id = "Bus 3"
diff --git a/code/game/machinery/telecomms/machines/hub.dm b/code/game/machinery/telecomms/machines/hub.dm
index 8136aed8435..600546679e0 100644
--- a/code/game/machinery/telecomms/machines/hub.dm
+++ b/code/game/machinery/telecomms/machines/hub.dm
@@ -70,6 +70,10 @@
"common",
"command",
"engineering",
+<<<<<<< HEAD
+=======
+ "entertainment",
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"security",
"receiverA",
"receiverB",
diff --git a/code/game/machinery/telecomms/machines/receiver.dm b/code/game/machinery/telecomms/machines/receiver.dm
index 8d6f8c85f43..875398fb8f2 100644
--- a/code/game/machinery/telecomms/machines/receiver.dm
+++ b/code/game/machinery/telecomms/machines/receiver.dm
@@ -57,7 +57,7 @@
id = "Receiver A"
network = "tcommsat"
autolinkers = list("receiverA") // link to relay
- freq_listening = list(FREQ_SCIENCE, FREQ_MEDICAL, FREQ_SUPPLY, FREQ_SERVICE)
+ freq_listening = list(FREQ_SCIENCE, FREQ_MEDICAL, FREQ_SUPPLY, FREQ_SERVICE, FREQ_ENTERTAINMENT)
//--PRESET RIGHT--//
diff --git a/code/game/machinery/telecomms/machines/server.dm b/code/game/machinery/telecomms/machines/server.dm
index 0c87a6101d1..1c7557b79de 100644
--- a/code/game/machinery/telecomms/machines/server.dm
+++ b/code/game/machinery/telecomms/machines/server.dm
@@ -100,9 +100,9 @@
autolinkers = list("supply")
/obj/machinery/telecomms/server/presets/service
- id = "Service Server"
- freq_listening = list(FREQ_SERVICE)
- autolinkers = list("service")
+ id = "Service & Entertainment Server"
+ freq_listening = list(FREQ_SERVICE, FREQ_ENTERTAINMENT)
+ autolinkers = list("service", "entertainment")
/obj/machinery/telecomms/server/presets/common
id = "Common Server"
diff --git a/code/game/objects/buckling.dm b/code/game/objects/buckling.dm
index c0435d2a0e6..2981dc58142 100644
--- a/code/game/objects/buckling.dm
+++ b/code/game/objects/buckling.dm
@@ -266,7 +266,11 @@
*/
/atom/movable/proc/is_user_buckle_possible(mob/living/target, mob/user, check_loc = TRUE)
// Standard adjacency and other checks.
+<<<<<<< HEAD
if(!Adjacent(user) || !Adjacent(target) || !isturf(user.loc) || user.incapacitated() || target.anchored)
+=======
+ if(!Adjacent(user) || !Adjacent(target) || !isturf(user.loc) || user.incapacitated || target.anchored)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(iscarbon(user))
diff --git a/code/game/objects/effects/anomalies/anomalies_bioscrambler.dm b/code/game/objects/effects/anomalies/anomalies_bioscrambler.dm
index ab53099ed34..87d10805300 100644
--- a/code/game/objects/effects/anomalies/anomalies_bioscrambler.dm
+++ b/code/game/objects/effects/anomalies/anomalies_bioscrambler.dm
@@ -103,3 +103,7 @@
/obj/effect/temp_visual/circle_wave/bioscrambler/light
max_alpha = 128
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/effects/anomalies/anomalies_bluespace.dm b/code/game/objects/effects/anomalies/anomalies_bluespace.dm
index 7721b509428..d6d89478b10 100644
--- a/code/game/objects/effects/anomalies/anomalies_bluespace.dm
+++ b/code/game/objects/effects/anomalies/anomalies_bluespace.dm
@@ -53,7 +53,11 @@
var/turf/TO = get_turf(chosen) // the turf of origin we're travelling TO
playsound(TO, 'sound/effects/phasein.ogg', 100, TRUE)
+<<<<<<< HEAD
priority_announce("Massive bluespace translocation detected.", "Anomaly Alert", ANNOUNCER_TRANSLOCATION) //SKYRAT EDIT CHANGE - ANNOUNCER
+=======
+ priority_announce("Massive bluespace translocation detected.", "Anomaly Alert")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/flashers = list()
for(var/mob/living/carbon/C in viewers(TO, null))
diff --git a/code/game/objects/effects/bump_teleporter.dm b/code/game/objects/effects/bump_teleporter.dm
index da7c4701230..8ece10922c7 100644
--- a/code/game/objects/effects/bump_teleporter.dm
+++ b/code/game/objects/effects/bump_teleporter.dm
@@ -29,7 +29,10 @@
/obj/effect/bump_teleporter/singularity_pull()
return
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL - MOVED TO BLACK_MESA
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/bump_teleporter/Bumped(atom/movable/bumper)
if(!validate_setup(bumper))
return
@@ -40,7 +43,10 @@
return
stack_trace("Bump_teleporter [src] could not find a teleporter with id [id_target]!")
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Check to see if our teleporter was set up correctly mapside. Return TRUE if everything is fine, FALSE if not.
/obj/effect/bump_teleporter/proc/validate_setup(atom/movable/checkable)
diff --git a/code/game/objects/effects/decals/cleanable/food.dm b/code/game/objects/effects/decals/cleanable/food.dm
index 0fc4352c78d..23c266ecb59 100644
--- a/code/game/objects/effects/decals/cleanable/food.dm
+++ b/code/game/objects/effects/decals/cleanable/food.dm
@@ -58,3 +58,14 @@
name = "flour"
desc = "It's still good. Four second rule!"
icon_state = "flour"
+
+/obj/effect/decal/cleanable/food/squid_ink
+ name = "ink smear"
+ desc = "a smear from some inky substance..."
+ icon = 'icons/mob/silicon/robots.dmi'
+ icon_state = "floor1"
+ color = COLOR_DARK
+
+/obj/effect/decal/cleanable/food/squid_ink/Initialize(mapload, list/datum/disease/diseases)
+ icon_state = "floor[rand(1, 7)]"
+ return ..()
diff --git a/code/game/objects/effects/decals/cleanable/humans.dm b/code/game/objects/effects/decals/cleanable/humans.dm
index 9c2890e924c..56a99f6cea7 100644
--- a/code/game/objects/effects/decals/cleanable/humans.dm
+++ b/code/game/objects/effects/decals/cleanable/humans.dm
@@ -136,7 +136,11 @@
. = ..()
if(!.)
return
+<<<<<<< HEAD
//AddComponent(/datum/component/rot, 0, 5 MINUTES, 0.7) skyrat edit
+=======
+ AddComponent(/datum/component/rot, 0, 5 MINUTES, 0.7)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/cleanable/blood/gibs/ex_act(severity, target)
return FALSE
diff --git a/code/game/objects/effects/decals/remains.dm b/code/game/objects/effects/decals/remains.dm
index 61f14f9d80e..09c9ed4e1b7 100644
--- a/code/game/objects/effects/decals/remains.dm
+++ b/code/game/objects/effects/decals/remains.dm
@@ -18,18 +18,36 @@
return !istype(here_turf, /obj/structure/closet/crate/grave/filled) && ..()
/obj/effect/decal/remains/human/smokey
+<<<<<<< HEAD
desc = "They look like human remains. They have a strange, smokey aura about them..."
+=======
+ name = "remains of Charles Morlbaro"
+ desc = "I guess we figured out what happened to the guy who lives here. You'd best tread lightly around this..."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///Our proximity monitor, for detecting nearby looters.
var/datum/proximity_monitor/proximity_monitor
///The reagent we will release when our remains are disturbed.
var/datum/reagent/that_shit_that_killed_saddam
+<<<<<<< HEAD
COOLDOWN_DECLARE(gas_cooldown)
+=======
+ ///A cooldown for how frequently the gas is released when disturbed.
+ COOLDOWN_DECLARE(gas_cooldown)
+ ///The length of the aforementioned cooldown.
+ var/gas_cooldown_length = (20 SECONDS)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/remains/human/smokey/Initialize(mapload)
. = ..()
+<<<<<<< HEAD
proximity_monitor = new(src, 0)
that_shit_that_killed_saddam = get_random_reagent_id()
+=======
+ proximity_monitor = new(src, 1)
+ var/list/blocked_reagents = subtypesof(/datum/reagent/medicine) + subtypesof(/datum/reagent/consumable) //Boooooriiiiing
+ that_shit_that_killed_saddam = get_random_reagent_id(blacklist = blocked_reagents)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/remains/human/smokey/HasProximity(atom/movable/tomb_raider)
if(!COOLDOWN_FINISHED(src, gas_cooldown))
@@ -37,10 +55,18 @@
if(iscarbon(tomb_raider))
var/mob/living/carbon/nearby_carbon = tomb_raider
+<<<<<<< HEAD
if (nearby_carbon.move_intent != MOVE_INTENT_WALK || prob(15))
release_smoke(nearby_carbon)
COOLDOWN_START(src, gas_cooldown, rand(20 SECONDS, 2 MINUTES))
+=======
+ if(nearby_carbon.move_intent != MOVE_INTENT_WALK || prob(5))
+ release_smoke(nearby_carbon)
+ COOLDOWN_START(src, gas_cooldown, gas_cooldown_length)
+
+///Releases a cloud of smoke based on the randomly generated reagent in Initialize().
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/remains/human/smokey/proc/release_smoke(mob/living/smoke_releaser)
visible_message(span_warning("[smoke_releaser] disturbs the [src], which releases a huge cloud of gas!"))
var/datum/effect_system/fluid_spread/smoke/chem/cigarette_puff = new()
@@ -49,6 +75,18 @@
cigarette_puff.set_up(range = 2, amount = DIAMOND_AREA(2), holder = src, location = get_turf(src), silent = TRUE)
cigarette_puff.start()
+<<<<<<< HEAD
+=======
+///Subtype of smokey remains used for rare maintenance spawns.
+/obj/effect/decal/remains/human/smokey/maintenance
+ name = "smokey remains"
+ desc = "They look like human remains. They have a strange, smokey aura about them... You should tread lightly when walking near this."
+
+/obj/effect/decal/remains/human/smokey/maintenance/Initialize(mapload)
+ . = ..()
+ gas_cooldown_length = rand(4 MINUTES, 6 MINUTES)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/decal/remains/plasma
icon_state = "remainsplasma"
diff --git a/code/game/objects/effects/decals/turfdecal/markings.dm b/code/game/objects/effects/decals/turfdecal/markings.dm
index 3aeb1c4f38f..6da704c999e 100644
--- a/code/game/objects/effects/decals/turfdecal/markings.dm
+++ b/code/game/objects/effects/decals/turfdecal/markings.dm
@@ -244,7 +244,11 @@
icon_state = "siding_plain_end"
/obj/effect/turf_decal/siding/red
+<<<<<<< HEAD
color = "#486091" //SKYRAT EDIT CHANGE
+=======
+ color = "#DE3A3A"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/turf_decal/siding/red/corner
icon_state = "siding_plain_corner"
diff --git a/code/game/objects/effects/decals/turfdecal/tilecoloring.dm b/code/game/objects/effects/decals/turfdecal/tilecoloring.dm
index 6e5173790b2..aec76ea2a3a 100644
--- a/code/game/objects/effects/decals/turfdecal/tilecoloring.dm
+++ b/code/game/objects/effects/decals/turfdecal/tilecoloring.dm
@@ -83,6 +83,7 @@ TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/yellow)
/obj/effect/turf_decal/tile/red
name = "red tile decal"
+<<<<<<< HEAD
color = "#486091" // SKYRAT EDIT CHANGE
TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/red)
@@ -95,6 +96,21 @@ TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/red)
TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/dark_red)
+/// Bar tiles
+=======
+ color = "#DE3A3A"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
+
+TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/red)
+
+/// Dark red tiles
+
+/obj/effect/turf_decal/tile/dark_red
+ name = "dark red tile decal"
+ color = "#B11111"
+
+TILE_DECAL_SUBTYPE_HELPER(/obj/effect/turf_decal/tile/dark_red)
+
/// Bar tiles
/obj/effect/turf_decal/tile/bar
diff --git a/code/game/objects/effects/spawners/message_in_a_bottle.dm b/code/game/objects/effects/spawners/message_in_a_bottle.dm
new file mode 100644
index 00000000000..c4ac63ad0be
--- /dev/null
+++ b/code/game/objects/effects/spawners/message_in_a_bottle.dm
@@ -0,0 +1,25 @@
+/obj/effect/spawner/message_in_a_bottle
+ name = "message in a bottle"
+ desc = "Sending out an SOS"
+ icon = 'icons/effects/random_spawners.dmi'
+ icon_state = "message_bottle"
+ var/probability = 100
+
+/obj/effect/spawner/message_in_a_bottle/Initialize(mapload)
+ . = ..()
+ if(!prob(probability))
+ return INITIALIZE_HINT_QDEL
+ if(!SSpersistence.initialized)
+ RegisterSignal(SSpersistence, COMSIG_SUBSYSTEM_POST_INITIALIZE, PROC_REF(on_persistence_init))
+ else
+ SSpersistence.load_message_bottle(loc)
+ return INITIALIZE_HINT_QDEL
+
+/obj/effect/spawner/message_in_a_bottle/proc/on_persistence_init(datum/source)
+ SIGNAL_HANDLER
+ UnregisterSignal(SSpersistence, COMSIG_SUBSYSTEM_POST_INITIALIZE)
+ SSpersistence.load_message_bottle(loc)
+ qdel(src)
+
+/obj/effect/spawner/message_in_a_bottle/low_prob
+ probability = 1.5
diff --git a/code/game/objects/effects/spawners/random/ai_module.dm b/code/game/objects/effects/spawners/random/ai_module.dm
index eff8ceeb0fa..63368b3afd0 100644
--- a/code/game/objects/effects/spawners/random/ai_module.dm
+++ b/code/game/objects/effects/spawners/random/ai_module.dm
@@ -39,9 +39,12 @@
/obj/item/ai_module/supplied/quarantine,
/obj/item/ai_module/core/full/yesman,
/obj/item/ai_module/remove,
+<<<<<<< HEAD
/obj/item/ai_module/core/full/dagothbot, // SKYRAT EDIT - EDITION
/obj/item/ai_module/core/full/texas, // SKYRAT EDIT - EDITION
/obj/item/ai_module/core/full/emperor, // SKYRAT EDIT - EDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/obj/effect/spawner/random/aimodule/harmful
diff --git a/code/game/objects/effects/spawners/random/decoration.dm b/code/game/objects/effects/spawners/random/decoration.dm
index 6116d228733..274943b3724 100644
--- a/code/game/objects/effects/spawners/random/decoration.dm
+++ b/code/game/objects/effects/spawners/random/decoration.dm
@@ -114,6 +114,29 @@
/obj/item/flashlight/glowstick/pink,
)
+<<<<<<< HEAD
+=======
+/obj/effect/spawner/random/decoration/glowstick/on
+ name = "random colored glowstick (on)"
+ icon_state = "glowstick"
+ loot = list(
+ /obj/item/flashlight/glowstick,
+ /obj/item/flashlight/glowstick/red,
+ /obj/item/flashlight/glowstick/blue,
+ /obj/item/flashlight/glowstick/cyan,
+ /obj/item/flashlight/glowstick/orange,
+ /obj/item/flashlight/glowstick/yellow,
+ /obj/item/flashlight/glowstick/pink,
+ )
+
+/obj/effect/spawner/random/decoration/glowstick/on/make_item(spawn_loc, type_path_to_make)
+ . = ..()
+
+ var/obj/item/flashlight/glowstick = .
+
+ glowstick.set_light_on(TRUE)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/effect/spawner/random/decoration/paint
name = "paint spawner"
icon_state = "paint"
diff --git a/code/game/objects/effects/spawners/random/medical.dm b/code/game/objects/effects/spawners/random/medical.dm
index ccbc109254a..61a6285df7b 100644
--- a/code/game/objects/effects/spawners/random/medical.dm
+++ b/code/game/objects/effects/spawners/random/medical.dm
@@ -70,7 +70,11 @@
icon_state = "xeno_egg"
loot = list(
/obj/effect/decal/remains/xeno = 49,
+<<<<<<< HEAD
/obj/item/clothing/mask/facehugger/toy = 1, // SKYRAT EDIT - They should be handled by dynamic - ORIGIGNAL: /obj/effect/spawner/xeno_egg_delivery = 1,
+=======
+ /obj/effect/spawner/xeno_egg_delivery = 1,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/obj/effect/spawner/random/medical/surgery_tool
diff --git a/code/game/objects/effects/spawners/random/structure.dm b/code/game/objects/effects/spawners/random/structure.dm
index 359c147eb4f..32954676514 100644
--- a/code/game/objects/effects/spawners/random/structure.dm
+++ b/code/game/objects/effects/spawners/random/structure.dm
@@ -23,6 +23,10 @@
/obj/effect/spawner/random/trash/mess = 30,
/obj/item/kirbyplants/fern = 20,
/obj/structure/closet/crate/decorations = 15,
+<<<<<<< HEAD
+=======
+ /obj/effect/decal/remains/human/smokey/maintenance = 7,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/destructible/cult/pants_altar = 1,
)
diff --git a/code/game/objects/effects/spawners/random/trash.dm b/code/game/objects/effects/spawners/random/trash.dm
index dfac8e4c0c8..c088697596d 100644
--- a/code/game/objects/effects/spawners/random/trash.dm
+++ b/code/game/objects/effects/spawners/random/trash.dm
@@ -89,7 +89,10 @@
/obj/item/trash/cnds = 1,
/obj/item/trash/syndi_cakes = 1,
/obj/item/trash/shrimp_chips = 1,
+<<<<<<< HEAD
/obj/item/trash/waffles = 1,
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/trash/tray = 1,
)
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index e90f83a6e19..19896aa2839 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -39,6 +39,15 @@
///The config type to use for greyscaled belt overlays. Both this and greyscale_colors must be assigned to work.
var/greyscale_config_belt
+<<<<<<< HEAD
+=======
+ /// Greyscale config used when generating digitigrade versions of the sprite.
+ var/digitigrade_greyscale_config_worn
+ /// Greyscale colors used when generating digitigrade versions of the sprite.
+ /// Optional - If not set it will default to normal greyscale colors, or approximate them if those are unset as well
+ var/digitigrade_greyscale_colors
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/* !!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!
IF YOU ADD MORE ICON CRAP TO THIS
@@ -223,10 +232,13 @@
var/override_notes = FALSE
/// Used if we want to have a custom verb text for throwing. "John Spaceman flicks the ciggerate" for example.
var/throw_verb
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START
/// Does this use the advanced reskinning setup?
var/uses_advanced_reskins = FALSE
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// A lazylist used for applying fantasy values, contains the actual modification applied to a variable.
var/list/fantasy_modifications = null
@@ -413,6 +425,7 @@
return
if(greyscale_config_worn)
worn_icon = SSgreyscale.GetColoredIconByType(greyscale_config_worn, greyscale_colors)
+<<<<<<< HEAD
// SKYRAT EDIT ADD START
if(greyscale_config_worn_digi)
worn_icon_digi = SSgreyscale.GetColoredIconByType(greyscale_config_worn_digi, greyscale_colors)
@@ -433,6 +446,8 @@
if(greyscale_config_worn_taur_hoof)
worn_icon_taur_hoof = SSgreyscale.GetColoredIconByType(greyscale_config_worn_taur_hoof, greyscale_colors)
// SKYRAT EDIT ADD END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(greyscale_config_inhand_left)
lefthand_file = SSgreyscale.GetColoredIconByType(greyscale_config_inhand_left, greyscale_colors)
if(greyscale_config_inhand_right)
@@ -812,7 +827,7 @@
set category = "Object"
set name = "Pick up"
- if(usr.incapacitated() || !Adjacent(usr))
+ if(usr.incapacitated || !Adjacent(usr))
return
if(isliving(usr))
@@ -849,6 +864,7 @@
. = ..()
do_drop_animation(master_storage.parent)
+<<<<<<< HEAD
/obj/item/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
if(QDELETED(hit_atom))
return
@@ -879,6 +895,32 @@
else
playsound(src, drop_sound, YEET_SOUND_VOLUME, ignore_walls = FALSE)
return hit_atom.hitby(src, 0, itempush, throwingdatum=throwingdatum)
+=======
+/obj/item/pre_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
+ var/impact_flags = ..()
+ if(w_class < WEIGHT_CLASS_BULKY)
+ impact_flags |= COMPONENT_MOVABLE_IMPACT_FLIP_HITPUSH
+ if(!(impact_flags & COMPONENT_MOVABLE_IMPACT_NEVERMIND) && get_temperature() && isliving(hit_atom))
+ var/mob/living/victim = hit_atom
+ victim.ignite_mob()
+ return impact_flags
+
+/obj/item/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
+ . = ..()
+ if(!isliving(hit_atom)) //Living mobs handle hit sounds differently.
+ playsound(src, drop_sound, YEET_SOUND_VOLUME, ignore_walls = FALSE)
+ return
+ var/volume = get_volume_by_throwforce_and_or_w_class()
+ if (throwforce > 0 || HAS_TRAIT(src, TRAIT_CUSTOM_TAP_SOUND))
+ if (mob_throw_hit_sound)
+ playsound(hit_atom, mob_throw_hit_sound, volume, TRUE, -1)
+ else if(hitsound)
+ playsound(hit_atom, hitsound, volume, TRUE, -1)
+ else
+ playsound(hit_atom, 'sound/weapons/genhit.ogg',volume, TRUE, -1)
+ else
+ playsound(hit_atom, 'sound/weapons/throwtap.ogg', 1, volume, -1)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/throw_at(atom/target, range, speed, mob/thrower, spin=1, diagonals_first = 0, datum/callback/callback, force, gentle = FALSE, quickstart = TRUE)
if(HAS_TRAIT(src, TRAIT_NODROP))
@@ -1099,7 +1141,11 @@
var/timedelay = usr.client.prefs.read_preference(/datum/preference/numeric/tooltip_delay) / 100
tip_timer = addtimer(CALLBACK(src, PROC_REF(openTip), location, control, params, usr), timedelay, TIMER_STOPPABLE)//timer takes delay in deciseconds, but the pref is in milliseconds. dividing by 100 converts it.
if(usr.client.prefs.read_preference(/datum/preference/toggle/item_outlines))
+<<<<<<< HEAD
if(istype(L) && L.incapacitated())
+=======
+ if(istype(L) && L.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
apply_outline(COLOR_RED_GRAY) //if they're dead or handcuffed, let's show the outline as red to indicate that they can't interact with that right now
else
apply_outline() //if the player's alive and well we send the command with no color set, so it uses the theme's color
@@ -1354,7 +1400,7 @@
* Then, it checks tiny items.
* After all that, it returns TRUE if the item is set to be discovered. Otherwise, it returns FALSE.
*
- * This works similarily to /suicide_act: if you want an item to have a unique interaction, go to that item
+ * This works similarly to /suicide_act: if you want an item to have a unique interaction, go to that item
* and give it an /on_accidental_consumption proc override. For a simple example of this, check out the nuke disk.
*
* Arguments
@@ -1379,7 +1425,11 @@
return
source_item?.reagents?.add_reagent(/datum/reagent/blood, 2)
+<<<<<<< HEAD
else if(custom_materials?.len) //if we've got materials, lets see whats in it
+=======
+ else if(custom_materials?.len) //if we've got materials, let's see what's in it
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// How many mats have we found? You can only be affected by two material datums by default
var/found_mats = 0
// How much of each material is in it? Used to determine if the glass should break
@@ -1482,6 +1532,7 @@
if(SEND_SIGNAL(src, COMSIG_ITEM_OFFER_TAKEN, offerer, taker) & COMPONENT_OFFER_INTERRUPT)
return TRUE
+<<<<<<< HEAD
/// SKYRAT EDIT ADDITION START
/obj/item/reskin_obj(mob/M)
if(!uses_advanced_reskins)
@@ -1551,6 +1602,8 @@
/// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Special stuff you want to do when an outfit equips this item.
/obj/item/proc/on_outfit_equip(mob/living/carbon/human/outfit_wearer, visuals_only, item_slot)
SHOULD_CALL_PARENT(TRUE)
@@ -1870,3 +1923,40 @@
RETURN_TYPE(/obj/item)
return src
+<<<<<<< HEAD
+=======
+
+/// Checks if the bait is liked by the fish type or not. Returns a multiplier that affects the chance of catching it.
+/obj/item/proc/check_bait(obj/item/fish/fish_type)
+ if(HAS_TRAIT(src, TRAIT_OMNI_BAIT))
+ return 1
+ var/catch_multiplier = 1
+ var/list/properties = SSfishing.fish_properties[fish_type]
+ //Bait matching likes doubles the chance
+ var/list/fav_bait = properties[FISH_PROPERTIES_FAV_BAIT]
+ for(var/bait_identifer in fav_bait)
+ if(is_matching_bait(src, bait_identifer))
+ catch_multiplier *= 2
+ //Bait matching dislikes
+ var/list/disliked_bait = properties[FISH_PROPERTIES_BAD_BAIT]
+ for(var/bait_identifer in disliked_bait)
+ if(is_matching_bait(src, bait_identifer))
+ catch_multiplier *= 0.5
+ return catch_multiplier
+
+/// Helper proc that checks if a bait matches identifier from fav/disliked bait list
+/proc/is_matching_bait(obj/item/bait, identifier)
+ if(ispath(identifier)) //Just a path
+ return istype(bait, identifier)
+ if(!islist(identifier))
+ return HAS_TRAIT(bait, identifier)
+ var/list/special_identifier = identifier
+ switch(special_identifier[FISH_BAIT_TYPE])
+ if(FISH_BAIT_FOODTYPE)
+ var/obj/item/food/food_bait = bait
+ return istype(food_bait) && food_bait.foodtypes & special_identifier[FISH_BAIT_VALUE]
+ if(FISH_BAIT_REAGENT)
+ return bait.reagents?.has_reagent(special_identifier[FISH_BAIT_VALUE], special_identifier[FISH_BAIT_AMOUNT], check_subtypes = TRUE)
+ else
+ CRASH("Unknown bait identifier in fish favourite/disliked list")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/AI_modules/_AI_modules.dm b/code/game/objects/items/AI_modules/_AI_modules.dm
index 1405dc6880c..7bd4d6ceae5 100644
--- a/code/game/objects/items/AI_modules/_AI_modules.dm
+++ b/code/game/objects/items/AI_modules/_AI_modules.dm
@@ -104,7 +104,10 @@
affected_cyborgs += owned_borg
borg_flw += "[ADMIN_LOOKUPFLW(owned_borg)], "
borg_txt += "[owned_borg.name]([owned_borg.key]), "
+<<<<<<< HEAD
owned_borg.lawsync() // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
borg_txt = borg_txt.Join()
GLOB.lawchanges.Add("[time] : [user.name]([user.key]) used [src.name] on [ainame]([aikey]).[law2log ? " The law specified [law2log]" : ""], [length(affected_cyborgs) ? ", impacting synced borgs [borg_txt]" : ""]")
diff --git a/code/game/objects/items/AI_modules/hacked.dm b/code/game/objects/items/AI_modules/hacked.dm
index 81100d0ed15..4d27ee6c553 100644
--- a/code/game/objects/items/AI_modules/hacked.dm
+++ b/code/game/objects/items/AI_modules/hacked.dm
@@ -55,7 +55,11 @@
to_chat(sender, span_warning("You should use [src] on an AI upload console or the AI core itself."))
return
if(malf_candidate.mind?.has_antag_datum(/datum/antagonist/malf_ai)) //Already malf
+<<<<<<< HEAD
to_chat(sender, span_warning("Unknown error occured. Upload process aborted."))
+=======
+ to_chat(sender, span_warning("Unknown error occurred. Upload process aborted."))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/datum/antagonist/malf_ai/infected/malf_datum = new (give_objectives = TRUE, new_boss = sender.mind)
diff --git a/code/game/objects/items/airlock_painter.dm b/code/game/objects/items/airlock_painter.dm
index 7eb5f2e93d8..c763ee40a01 100644
--- a/code/game/objects/items/airlock_painter.dm
+++ b/code/game/objects/items/airlock_painter.dm
@@ -229,7 +229,11 @@
* Actually add current decal to the floor.
*
* Responsible for actually adding the element to the turf for maximum flexibility.area
+<<<<<<< HEAD
* Can be overriden for different decal behaviors.
+=======
+ * Can be overridden for different decal behaviors.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* Arguments:
* * target - The turf being painted to
*/
@@ -298,7 +302,11 @@
.["current_dir"] = stored_dir
.["current_custom_color"] = stored_custom_color
+<<<<<<< HEAD
/obj/item/airlock_painter/decal/ui_act(action, list/params)
+=======
+/obj/item/airlock_painter/decal/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -393,7 +401,11 @@
list("Neutral", "#D4D4D432"),
list("Dark", "#0e0f0f"),
list("Bar Burgundy", "#79150082"),
+<<<<<<< HEAD
list("Sec Blue", "#486091"), // SKYRAT EDIT CHANGE
+=======
+ list("Sec Red", "#DE3A3A"),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
list("Cargo Brown", "#A46106"),
list("Engi Yellow", "#EFB341"),
list("Service Green", "#9FED58"),
diff --git a/code/game/objects/items/bear_armor.dm b/code/game/objects/items/bear_armor.dm
index 8cfad42be15..c2477546f97 100644
--- a/code/game/objects/items/bear_armor.dm
+++ b/code/game/objects/items/bear_armor.dm
@@ -1,7 +1,11 @@
/obj/item/bear_armor
name = "pile of bear armor"
desc = "A scattered pile of various shaped armor pieces fitted for a bear, some duct tape, and a nail filer. Crude instructions \
+<<<<<<< HEAD
are written on the back of one of the plates in russian. This seems like an awful idea."
+=======
+ are written on the back of one of the plates in Russian. This seems like an awful idea."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon = 'icons/obj/tools.dmi'
icon_state = "bear_armor_upgrade"
diff --git a/code/game/objects/items/body_egg.dm b/code/game/objects/items/body_egg.dm
index d244d8c55cc..03fcada3b27 100644
--- a/code/game/objects/items/body_egg.dm
+++ b/code/game/objects/items/body_egg.dm
@@ -15,6 +15,7 @@
if(iscarbon(loc))
Insert(loc)
+<<<<<<< HEAD
/obj/item/organ/internal/body_egg/Insert(mob/living/carbon/egg_owner, special = FALSE, movement_flags = DELETE_IF_REPLACED)
. = ..()
if(!.)
@@ -29,6 +30,21 @@
egg_owner.med_hud_set_status()
INVOKE_ASYNC(src, PROC_REF(RemoveInfectionImages), egg_owner)
+=======
+/obj/item/organ/internal/body_egg/mob_insert(mob/living/carbon/egg_owner, special = FALSE, movement_flags = DELETE_IF_REPLACED)
+ . = ..()
+
+ egg_owner.add_traits(list(TRAIT_XENO_HOST, TRAIT_XENO_IMMUNE), ORGAN_TRAIT)
+ egg_owner.med_hud_set_status()
+ INVOKE_ASYNC(src, PROC_REF(AddInfectionImages), egg_owner)
+
+/obj/item/organ/internal/body_egg/mob_remove(mob/living/carbon/egg_owner, special, movement_flags)
+ . = ..()
+ egg_owner.remove_traits(list(TRAIT_XENO_HOST, TRAIT_XENO_IMMUNE), ORGAN_TRAIT)
+ egg_owner.med_hud_set_status()
+ INVOKE_ASYNC(src, PROC_REF(RemoveInfectionImages), egg_owner)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/organ/internal/body_egg/on_death(seconds_per_tick, times_fired)
. = ..()
if(!owner)
diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm
index c949f977508..26216eaa603 100644
--- a/code/game/objects/items/bodybag.dm
+++ b/code/game/objects/items/bodybag.dm
@@ -86,7 +86,11 @@
return item_bag
/obj/item/bodybag/bluespace/container_resist_act(mob/living/user)
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(user, span_warning("You can't get out while you're restrained like this!"))
return
user.changeNext_move(CLICK_CD_BREAKOUT)
@@ -97,7 +101,11 @@
return
// you are still in the bag? time to go unless you KO'd, honey!
// if they escape during this time and you rebag them the timer is still clocking down and does NOT reset so they can very easily get out.
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(loc, span_warning("The pressure subsides. It seems that they've stopped resisting..."))
return
loc.visible_message(span_warning("[user] suddenly appears in front of [loc]!"), span_userdanger("[user] breaks free of [src]!"))
diff --git a/code/game/objects/items/cardboard_cutouts.dm b/code/game/objects/items/cardboard_cutouts.dm
index d4508710a85..b49991b132a 100644
--- a/code/game/objects/items/cardboard_cutouts.dm
+++ b/code/game/objects/items/cardboard_cutouts.dm
@@ -149,7 +149,7 @@
/obj/item/cardboard_cutout/proc/check_menu(mob/living/user, obj/item/toy/crayon/crayon)
if(!istype(user))
return FALSE
- if(user.incapacitated())
+ if(user.incapacitated)
return FALSE
if(pushed_over)
to_chat(user, span_warning("Right [src] first!"))
diff --git a/code/game/objects/items/cards_ids.dm b/code/game/objects/items/cards_ids.dm
index 7524152c65b..ac7e782b36d 100644
--- a/code/game/objects/items/cards_ids.dm
+++ b/code/game/objects/items/cards_ids.dm
@@ -87,7 +87,11 @@
var/holopay_name = "holographic pay stand"
/// Registered owner's age.
+<<<<<<< HEAD
var/registered_age = 18 //SKYRAT EDIT - ORIGINAL (13)
+=======
+ var/registered_age = 30
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The job name registered on the card (for example: Assistant).
var/assignment
@@ -104,6 +108,14 @@
/// Boolean value. If TRUE, the [Intern] tag gets prepended to this ID card when the label is updated.
var/is_intern = FALSE
+<<<<<<< HEAD
+=======
+ ///If true, the wearer will have bigger arrow when pointing at things. Passed down by trims.
+ var/big_pointer = FALSE
+ ///If set, the arrow will have a different color.
+ var/pointer_color
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/armor/card_id
fire = 100
acid = 100
@@ -144,6 +156,32 @@
QDEL_NULL(my_store)
return ..()
+<<<<<<< HEAD
+=======
+/obj/item/card/id/equipped(mob/user, slot)
+ . = ..()
+ if(slot == ITEM_SLOT_ID)
+ RegisterSignal(user, COMSIG_MOVABLE_POINTED, PROC_REF(on_pointed))
+
+/obj/item/card/id/proc/on_pointed(mob/living/user, atom/pointed, obj/effect/temp_visual/point/point)
+ SIGNAL_HANDLER
+ if((!big_pointer && !pointer_color) || HAS_TRAIT(user, TRAIT_UNKNOWN))
+ return
+ if(point.icon_state != /obj/effect/temp_visual/point::icon_state) //it differs from the original icon_state already.
+ return
+ if(big_pointer)
+ point.icon_state = "arrow_large"
+ if(pointer_color)
+ point.icon_state = "[point.icon_state]_white"
+ point.color = pointer_color
+ var/mutable_appearance/highlight = mutable_appearance(point.icon, "[point.icon_state]_highlights", appearance_flags = RESET_COLOR)
+ point.add_overlay(highlight)
+
+/obj/item/card/id/dropped(mob/user)
+ UnregisterSignal(user, COMSIG_MOVABLE_POINTED)
+ return ..()
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/card/id/get_id_examine_strings(mob/user)
. = ..()
. += list("[icon2html(get_cached_flat_icon(), user, extra_classes = "bigicon")]")
@@ -421,7 +459,11 @@
if(Adjacent(user))
var/minor
if(registered_name && registered_age && registered_age < AGE_MINOR)
+<<<<<<< HEAD
minor = " [registered_age] " //SKYRAT EDIT CHANGE
+=======
+ minor = " (MINOR) "
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.visible_message(span_notice("[user] shows you: [icon2html(src, viewers(user))] [src.name][minor]."), span_notice("You show \the [src.name][minor]."))
add_fingerprint(user)
@@ -566,11 +608,14 @@
return ITEM_INTERACT_BLOCKING
to_chat(user, span_notice("You stuff the contents into the card! They disappear in a puff of bluespace smoke, adding [money_added] worth of credits to the linked account."))
return ITEM_INTERACT_SUCCESS
+<<<<<<< HEAD
/// SKYRAT EDIT BEGINS - Trim Tokens - Proc defined in modular_skyrat/modules/trim_tokens/code/cards_id.dm
else if(istype(tool, /obj/item/trim_token))
apply_token(tool, user)
return
/// SKYRAT EDIT ENDS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return NONE
/**
@@ -1424,7 +1469,11 @@
desc = "A highly advanced chameleon ID card. Touch this card on another ID card or player to choose which accesses to copy. \
Has special magnetic properties which force it to the front of wallets."
trim = /datum/id_trim/chameleon
+<<<<<<< HEAD
wildcard_slots = WILDCARD_LIMIT_CHAMELEON_PLUS // SKYRAT EDIT - Original WILDCARD_LIMIT_CHAMELEON
+=======
+ wildcard_slots = WILDCARD_LIMIT_CHAMELEON
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
actions_types = list(/datum/action/item_action/chameleon/change/id, /datum/action/item_action/chameleon/change/id_trim)
/// Have we set a custom name and job assignment, or will we use what we're given when we chameleon change?
@@ -1559,7 +1608,11 @@
return data
+<<<<<<< HEAD
/obj/item/card/id/advanced/chameleon/ui_act(action, list/params)
+=======
+/obj/item/card/id/advanced/chameleon/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -1864,7 +1917,11 @@
/obj/item/card/cardboard/proc/after_input_check(mob/living/user, obj/item/item, input, value)
if(!input || (value && input == value))
return FALSE
+<<<<<<< HEAD
if(QDELETED(user) || QDELETED(item) || QDELETED(src) || user.incapacitated() || !user.is_holding(item) || !user.CanReach(src) || !user.can_write(item))
+=======
+ if(QDELETED(user) || QDELETED(item) || QDELETED(src) || user.incapacitated || !user.is_holding(item) || !user.CanReach(src) || !user.can_write(item))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/items/chainsaw.dm b/code/game/objects/items/chainsaw.dm
index 68501057ebf..e951a0bcb78 100644
--- a/code/game/objects/items/chainsaw.dm
+++ b/code/game/objects/items/chainsaw.dm
@@ -80,7 +80,11 @@
/**
* Handles adding components to the chainsaw. Added in Initialize()
*
+<<<<<<< HEAD
* Applies components to the chainsaw. Added as a seperate proc to allow for
+=======
+ * Applies components to the chainsaw. Added as a separate proc to allow for
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* variance between subtypes
*/
/obj/item/chainsaw/proc/apply_components()
diff --git a/code/game/objects/items/chromosome.dm b/code/game/objects/items/chromosome.dm
index d7fd7b39544..dcfc7930ebf 100644
--- a/code/game/objects/items/chromosome.dm
+++ b/code/game/objects/items/chromosome.dm
@@ -2,7 +2,7 @@
name = "blank chromosome"
icon = 'icons/obj/science/chromosomes.dmi'
icon_state = ""
- desc = "A tube holding chromosomic data."
+ desc = "A tube holding chromosomal data."
force = 0
w_class = WEIGHT_CLASS_SMALL
@@ -16,7 +16,7 @@
/obj/item/chromosome/proc/can_apply(datum/mutation/human/HM)
if(!HM || !(HM.can_chromosome == CHROMOSOME_NONE))
return FALSE
- if((stabilizer_coeff != 1) && (HM.stabilizer_coeff != -1)) //if the chromosome is 1, we dont change anything. If the mutation is -1, we cant change it. sorry
+ if((stabilizer_coeff != 1) && (HM.stabilizer_coeff != -1)) //if the chromosome is 1, we don't change anything. If the mutation is -1, we can't change it. sorry
return TRUE
if((synchronizer_coeff != 1) && (HM.synchronizer_coeff != -1))
return TRUE
diff --git a/code/game/objects/items/cigs_lighters.dm b/code/game/objects/items/cigs_lighters.dm
index 69764c17b0d..70c3df834ee 100644
--- a/code/game/objects/items/cigs_lighters.dm
+++ b/code/game/objects/items/cigs_lighters.dm
@@ -43,10 +43,14 @@ CIGARETTE PACKETS ARE IN FANCY.DM
/obj/item/match/proc/matchignite()
if(lit || burnt)
return
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
var/turf/my_turf = get_turf(src)
my_turf.pollute_turf(/datum/pollutant/sulphur, 5)
//SKYRAT EDIT END
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
playsound(src, 'sound/items/match_strike.ogg', 15, TRUE)
lit = TRUE
icon_state = "match_lit"
@@ -187,8 +191,11 @@ CIGARETTE PACKETS ARE IN FANCY.DM
/// Which people ate cigarettes and how many
var/static/list/cigarette_eaters = list()
+<<<<<<< HEAD
var/pollution_type = /datum/pollutant/smoke //SKYRAT EDIT ADDITION /// What type of pollution does this produce on smoking, changed to weed pollution sometimes
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/cigarette/Initialize(mapload)
. = ..()
create_reagents(chem_volume, INJECTABLE | NO_REACT)
@@ -249,7 +256,11 @@ CIGARETTE PACKETS ARE IN FANCY.DM
if(!QDELETED(src) && !QDELETED(dropee) && how_long_have_we_been_smokin >= 4 SECONDS && iscarbon(dropee) && iscarbon(loc))
var/mob/living/carbon/smoker = dropee
// This relies on the fact that dropped is called before slot is nulled
+<<<<<<< HEAD
if(src == smoker.wear_mask && !smoker.incapacitated())
+=======
+ if(src == smoker.wear_mask && !smoker.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
long_exhale(smoker)
UnregisterSignal(dropee, list(COMSIG_HUMAN_FORCESAY, COMSIG_ATOM_DIR_CHANGE))
@@ -473,11 +484,14 @@ CIGARETTE PACKETS ARE IN FANCY.DM
extinguish()
return
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Pollution
var/turf/location = get_turf(src)
location.pollute_turf(pollution_type, 5, POLLUTION_PASSIVE_EMITTER_CAP)
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
smoketime -= seconds_per_tick * (1 SECONDS)
if(smoketime <= 0)
put_out(user)
@@ -1170,13 +1184,19 @@ CIGARETTE PACKETS ARE IN FANCY.DM
/obj/item/vape
name = "\improper E-Cigarette"
desc = "A classy and highly sophisticated electronic cigarette, for classy and dignified gentlemen. A warning label reads \"Warning: Do not fill with flammable materials.\""//<<< i'd vape to that.
+<<<<<<< HEAD
icon = 'icons/obj/clothing/masks.dmi'
worn_icon_muzzled = 'modular_skyrat/master_files/icons/mob/clothing/mask.dmi' //SKYRAT EDIT: ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "vape"
worn_icon_state = "vape_worn"
greyscale_config = /datum/greyscale_config/vape
greyscale_config_worn = /datum/greyscale_config/vape/worn
+<<<<<<< HEAD
greyscale_config_worn_muzzled = /datum/greyscale_config/vape/worn/muzzled //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
greyscale_colors = "#2e2e2e"
inhand_icon_state = null
w_class = WEIGHT_CLASS_TINY
@@ -1320,6 +1340,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM
STOP_PROCESSING(SSobj, src)
//it's reusable so it won't unequip when empty
return
+<<<<<<< HEAD
if(!COOLDOWN_FINISHED(src, drag_cooldown))
return
@@ -1333,6 +1354,14 @@ CIGARETTE PACKETS ARE IN FANCY.DM
my_turf.pollute_turf(/datum/pollutant/smoke/vape, 5, POLLUTION_PASSIVE_EMITTER_CAP)
//SKYRAT EDIT END
+=======
+
+ if(!COOLDOWN_FINISHED(src, drag_cooldown))
+ return
+
+ //Time to start puffing those fat vapes, yo.
+ COOLDOWN_START(src, drag_cooldown, dragtime)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(obj_flags & EMAGGED)
var/datum/effect_system/fluid_spread/smoke/chem/smoke_machine/puff = new
puff.set_up(4, holder = src, location = loc, carry = reagents, efficiency = 24)
diff --git a/code/game/objects/items/circuitboards/machines/machine_circuitboards.dm b/code/game/objects/items/circuitboards/machines/machine_circuitboards.dm
index 6c2c107fc85..a2da37bfdcf 100644
--- a/code/game/objects/items/circuitboards/machines/machine_circuitboards.dm
+++ b/code/game/objects/items/circuitboards/machines/machine_circuitboards.dm
@@ -631,6 +631,10 @@
/obj/machinery/vending/coffee = "Solar's Best Hot Drinks",
/obj/machinery/vending/cola = "Robust Softdrinks",
/obj/machinery/vending/custom = "Custom Vendor",
+<<<<<<< HEAD
+=======
+ /obj/machinery/vending/cytopro = "CytoPro",
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/vending/dinnerware = "Plasteel Chef's Dinnerware Vendor",
/obj/machinery/vending/drugs = "NanoDrug Plus",
/obj/machinery/vending/engineering = "Robco Tool Maker",
@@ -666,6 +670,7 @@
/obj/machinery/vending/wardrobe/science_wardrobe = "SciDrobe",
/obj/machinery/vending/wardrobe/sec_wardrobe = "SecDrobe",
/obj/machinery/vending/wardrobe/viro_wardrobe = "ViroDrobe",
+<<<<<<< HEAD
// SKYRAT STUFF AT THE BOTTOM I SUPPOSE FOR SIMPLICITY'S SAKE
/obj/machinery/vending/access/command = "Command Outfitting Station", //SKYRAT EDIT ADDITION
/obj/machinery/vending/barbervend = "Fab-O-Vend", //SKYRAT EDIT ADDITION
@@ -676,6 +681,8 @@
/obj/machinery/vending/imported/yangyu = "Fudobenda", //SKYRAT EDIT ADDITION
/obj/machinery/vending/security = "Armadyne Peacekeeper Equipment Vendor", //SKYRAT EDIT CHANGE - SEC_HUAL - ORIGINAL: /obj/machinery/vending/security = "SecTech",
/obj/machinery/vending/deforest_medvend = "DeForest Med-Vend", //SKYRAT PORT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/obj/item/circuitboard/machine/vendor/screwdriver_act(mob/living/user, obj/item/tool)
@@ -932,6 +939,12 @@
/obj/item/stack/cable_coil = 1,
/obj/item/stack/sheet/glass = 2)
+<<<<<<< HEAD
+=======
+/obj/item/circuitboard/machine/sleeper/syndie
+ build_path = /obj/machinery/sleeper/syndie
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/circuitboard/machine/sleeper/fullupgrade
build_path = /obj/machinery/sleeper/syndie/fullupgrade
req_components = list(
@@ -1113,6 +1126,10 @@
/obj/item/stack/sheet/glass = 1,
/obj/item/stack/cable_coil = 2)
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/circuitboard/machine/dna_infuser
name = "DNA Infuser"
greyscale_colors = CIRCUIT_COLOR_SCIENCE
diff --git a/code/game/objects/items/cosmetics.dm b/code/game/objects/items/cosmetics.dm
index 390a48ffa70..2fa56b786d4 100644
--- a/code/game/objects/items/cosmetics.dm
+++ b/code/game/objects/items/cosmetics.dm
@@ -6,7 +6,11 @@
gender = PLURAL
name = "red lipstick"
desc = "A generic brand of lipstick."
+<<<<<<< HEAD
icon = 'modular_skyrat/modules/salon/icons/items.dmi' //SKYRAT EDIT CHANGE - ORIGINAL: icon = 'icons/obj/cosmetic.dmi'
+=======
+ icon = 'icons/obj/cosmetic.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "lipstick"
base_icon_state = "lipstick"
inhand_icon_state = "lipstick"
@@ -37,8 +41,11 @@
. += "Alt-click to change the style."
/obj/item/lipstick/update_icon_state()
+<<<<<<< HEAD
icon_state = "lipstick[open ? "_uncap" : null]"
inhand_icon_state = "lipstick[open ? "open" : null]"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "[base_icon_state][open ? "_uncap" : null]"
inhand_icon_state = "[base_icon_state][open ? "open" : null]"
return ..()
@@ -77,7 +84,11 @@
/obj/item/lipstick/proc/check_menu(mob/living/user)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.is_holding(src))
+=======
+ if(user.incapacitated || !user.is_holding(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
@@ -115,13 +126,19 @@
name = "syndie lipstick"
desc = "Syndicate branded lipstick with a killer dose of kisses. Observe safety regulations!"
icon_state = "slipstick"
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
base_icon_state = "slipstick"
lipstick_color = COLOR_SYNDIE_RED
lipstick_trait = TRAIT_SYNDIE_KISS
random_spawn = FALSE
+<<<<<<< HEAD
lipstick_color = COLOR_SYNDIE_RED
lipstick_trait = TRAIT_SYNDIE_KISS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/lipstick/random
name = "lipstick"
@@ -186,6 +203,17 @@
to_chat(user, span_notice("You wipe off the lipstick with [src]."))
target.update_lips(null)
return
+<<<<<<< HEAD
+=======
+
+ user.visible_message(span_warning("[user] begins to wipe [target]'s lipstick off with \the [src]."), \
+ span_notice("You begin to wipe off [target]'s lipstick..."))
+ if(!do_after(user, 1 SECONDS, target = target))
+ return
+ user.visible_message(span_notice("[user] wipes [target]'s lipstick off with \the [src]."), \
+ span_notice("You wipe off [target]'s lipstick."))
+ target.update_lips(null)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.visible_message(span_warning("[user] begins to wipe [target]'s lipstick off with \the [src]."), \
span_notice("You begin to wipe off [target]'s lipstick..."))
@@ -208,7 +236,7 @@
/obj/item/razor/suicide_act(mob/living/carbon/user)
user.visible_message(span_suicide("[user] begins shaving [user.p_them()]self without the razor guard! It looks like [user.p_theyre()] trying to commit suicide!"))
shave(user, BODY_ZONE_PRECISE_MOUTH)
- shave(user, BODY_ZONE_HEAD)//doesnt need to be BODY_ZONE_HEAD specifically, but whatever
+ shave(user, BODY_ZONE_HEAD)//doesn't need to be BODY_ZONE_HEAD specifically, but whatever
return BRUTELOSS
/obj/item/razor/proc/shave(mob/living/carbon/human/skinhead, location = BODY_ZONE_PRECISE_MOUTH)
@@ -334,7 +362,10 @@
shave(human_target, location)
return
return ..()
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/razor/surgery
name = "surgical razor"
diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm
index 23f2dad1e4e..69b3cae552b 100644
--- a/code/game/objects/items/crayons.dm
+++ b/code/game/objects/items/crayons.dm
@@ -372,7 +372,11 @@
.["selected_color"] = GLOB.pipe_color_name[paint_color] || paint_color
.["paint_colors"] = GLOB.pipe_paint_colors
+<<<<<<< HEAD
/obj/item/toy/crayon/ui_act(action, list/params)
+=======
+/obj/item/toy/crayon/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/debug_items.dm b/code/game/objects/items/debug_items.dm
index 071561d57a0..24f350f3790 100644
--- a/code/game/objects/items/debug_items.dm
+++ b/code/game/objects/items/debug_items.dm
@@ -46,7 +46,7 @@
/obj/item/debug/omnitool/proc/check_menu(mob/user)
if(!istype(user))
return FALSE
- if(user.incapacitated() || !user.Adjacent(src))
+ if(user.incapacitated || !user.Adjacent(src))
return FALSE
return TRUE
diff --git a/code/game/objects/items/defib.dm b/code/game/objects/items/defib.dm
index b34540e441c..5c17f57e3ed 100644
--- a/code/game/objects/items/defib.dm
+++ b/code/game/objects/items/defib.dm
@@ -137,11 +137,20 @@
return ..()
/obj/item/defibrillator/mouse_drop_dragged(atom/over_object, mob/user, src_location, over_location, params)
+<<<<<<< HEAD
if(ismob(loc))
var/mob/M = loc
if(istype(over_object, /atom/movable/screen/inventory/hand))
var/atom/movable/screen/inventory/hand/H = over_object
M.putItemFromInventoryInHandIfPossible(src, H.held_index)
+=======
+ if(!ismob(loc))
+ return
+ var/mob/living_mob = loc
+ if(!living_mob.incapacitated && istype(over_object, /atom/movable/screen/inventory/hand))
+ var/atom/movable/screen/inventory/hand/hand = over_object
+ living_mob.putItemFromInventoryInHandIfPossible(src, hand.held_index)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/defibrillator/screwdriver_act(mob/living/user, obj/item/tool)
if(!cell || !cell_removable)
@@ -576,12 +585,15 @@
do_cancel()
/obj/item/shockpaddles/proc/do_help(mob/living/carbon/H, mob/living/user)
+<<<<<<< HEAD
var/target_synthetic = (H.mob_biotypes & MOB_ROBOTIC) // SKYRAT EDIT ADDITION BEGIN - SYNTH REVIVAL
if (target_synthetic)
to_chat(user, span_boldwarning("[H] is a synthetic lifeform! This defibrillator probably isn't calibrated to revive [H.p_them()] properly and could have some serious consequences! \
[span_warning("You might want to [span_blue("surgically revive [H.p_them()]")]...")]"))
balloon_alert(user, "target is synthetic!") // immediately grabs their attention even if they dont see chat
// SKYRAT EDIT ADDITION END - SYNTH REVIVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.visible_message(span_warning("[user] begins to place [src] on [H]'s chest."), span_warning("You begin to place [src] on [H]'s chest..."))
busy = TRUE
update_appearance()
@@ -628,10 +640,13 @@
fail_reason = "Patient's brain is missing. Further attempts futile."
if (DEFIB_FAIL_BLACKLISTED)
fail_reason = "Patient has been blacklisted from revival. Further attempts futile."
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION - DNR TRAIT
if (DEFIB_FAIL_DNR)
fail_reason = "Patient has been flagged as Do Not Resuscitate. Further attempts futile."
//SKYRAT EDIT ADDITION END - DNR TRAIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(fail_reason)
user.visible_message(span_warning("[req_defib ? "[defib]" : "[src]"] buzzes: Resuscitation failed - [fail_reason]"))
@@ -661,13 +676,17 @@
H.revive()
H.emote("gasp")
H.set_jitter_if_lower(200 SECONDS)
+<<<<<<< HEAD
to_chat(H, "[CONFIG_GET(string/blackoutpolicy)] ") //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SEND_SIGNAL(H, COMSIG_LIVING_MINOR_SHOCK)
if(HAS_MIND_TRAIT(user, TRAIT_MORBID))
user.add_mood_event("morbid_saved_life", /datum/mood_event/morbid_saved_life)
else
user.add_mood_event("saved_life", /datum/mood_event/saved_life)
log_combat(user, H, "revived", defib)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - SYNTH REVIVAL
if (target_synthetic)
user.visible_message(span_boldwarning("[src] fire a powerful jolt of electricity into [H]'s vulnerable circuitry!"))
@@ -685,6 +704,8 @@
addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(remove_synth_defib_trauma), brain_organ, trauma), SYNTH_DEFIBBED_TRAUMA_DURATION)
// SKYRAT EDIT ADDITION END - SYNTH REVIVAL
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
do_success()
return
else if (!H.get_organ_by_type(/obj/item/organ/internal/heart))
diff --git a/code/game/objects/items/devices/broadcast_camera.dm b/code/game/objects/items/devices/broadcast_camera.dm
new file mode 100644
index 00000000000..f2fc0192f56
--- /dev/null
+++ b/code/game/objects/items/devices/broadcast_camera.dm
@@ -0,0 +1,104 @@
+// Unique broadcast camera given to the first Curator
+// Only one should exist ideally, if other types are created they must have different camera_networks
+// Broadcasts its surroundings to entertainment monitors and its audio to entertainment radio channel
+/obj/item/broadcast_camera
+ name = "broadcast camera"
+ desc = "A large camera that streams its live feed and audio to entertainment monitors across the station, allowing everyone to watch the broadcast."
+ desc_controls = "Right-click to change the broadcast name. Alt-click to toggle microphone."
+ icon = 'icons/obj/service/broadcast.dmi'
+ icon_state = "broadcast_cam0"
+ base_icon_state = "broadcast_cam"
+ lefthand_file = 'icons/mob/inhands/items/devices_lefthand.dmi'
+ righthand_file = 'icons/mob/inhands/items/devices_righthand.dmi'
+ force = 8
+ throwforce = 12
+ w_class = WEIGHT_CLASS_NORMAL
+ obj_flags = INDESTRUCTIBLE | EMP_PROTECT_ALL // No fun police
+ slot_flags = NONE
+ light_system = OVERLAY_LIGHT
+ light_color = COLOR_SOFT_RED
+ light_range = 1
+ light_power = 0.3
+ light_on = FALSE
+ /// Is camera streaming
+ var/active = FALSE
+ /// The name of the broadcast
+ var/broadcast_name = "Curator News"
+ /// The networks it broadcasts to, default is CAMERANET_NETWORK_CURATOR
+ var/list/camera_networks = list(CAMERANET_NETWORK_CURATOR)
+ /// The "virtual" security camera inside of the physical camera
+ var/obj/machinery/camera/internal_camera
+ /// The "virtual" radio inside of the the physical camera, a la microphone
+ var/obj/item/radio/entertainment/microphone/internal_radio
+
+/obj/item/broadcast_camera/Destroy(force)
+ QDEL_NULL(internal_radio)
+ QDEL_NULL(internal_camera)
+
+ return ..()
+
+/obj/item/broadcast_camera/update_icon_state()
+ icon_state = "[base_icon_state]0"
+ return ..()
+
+/obj/item/broadcast_camera/attack_self(mob/user, modifiers)
+ . = ..()
+ active = !active
+ if(active)
+ on_activating()
+ else
+ on_deactivating()
+
+/obj/item/broadcast_camera/attack_self_secondary(mob/user, modifiers)
+ . = ..()
+ broadcast_name = tgui_input_text(user = user, title = "Broadcast Name", message = "What will be the name of your broadcast?", default = "[broadcast_name]", max_length = MAX_CHARTER_LEN)
+
+/obj/item/broadcast_camera/examine(mob/user)
+ . = ..()
+ . += span_notice("Broadcast name is [broadcast_name] ")
+
+/obj/item/broadcast_camera/on_enter_storage(datum/storage/master_storage)
+ . = ..()
+ if(active)
+ on_deactivating()
+
+/obj/item/broadcast_camera/dropped(mob/user, silent)
+ . = ..()
+ if(active)
+ on_deactivating()
+
+/// When activating the camera
+/obj/item/broadcast_camera/proc/on_activating()
+ if(!iscarbon(loc))
+ return
+ active = TRUE
+ icon_state = "[base_icon_state][active]"
+ /// The carbon who wielded the camera, allegedly
+ var/mob/living/carbon/wielding_carbon = loc
+
+ // INTERNAL CAMERA
+ internal_camera = new(wielding_carbon) // Cameras for some reason do not work inside of obj's
+ internal_camera.internal_light = FALSE
+ internal_camera.network = camera_networks
+ internal_camera.c_tag = "LIVE: [broadcast_name]"
+ start_broadcasting_network(camera_networks, "[broadcast_name] is now LIVE!")
+
+ // INTERNAL RADIO
+ internal_radio = new(src)
+
+ set_light_on(TRUE)
+ playsound(source = src, soundin = 'sound/machines/terminal_processing.ogg', vol = 20, vary = FALSE, ignore_walls = FALSE)
+ balloon_alert_to_viewers("live!")
+
+/// When deactivating the camera
+/obj/item/broadcast_camera/proc/on_deactivating()
+ active = FALSE
+ icon_state = "[base_icon_state][active]"
+ QDEL_NULL(internal_camera)
+ QDEL_NULL(internal_radio)
+
+ stop_broadcasting_network(camera_networks)
+
+ set_light_on(FALSE)
+ playsound(source = src, soundin = 'sound/machines/terminal_prompt_deny.ogg', vol = 20, vary = FALSE, ignore_walls = FALSE)
+ balloon_alert_to_viewers("offline")
diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm
index 96dae8c0fc5..2be8ab69d12 100644
--- a/code/game/objects/items/devices/flashlight.dm
+++ b/code/game/objects/items/devices/flashlight.dm
@@ -41,10 +41,16 @@
set_light_on(TRUE)
update_brightness()
register_context()
+<<<<<<< HEAD
if(toggle_context)
RegisterSignal(src, COMSIG_HIT_BY_SABOTEUR, PROC_REF(on_saboteur))
+=======
+ if(toggle_context)
+ RegisterSignal(src, COMSIG_HIT_BY_SABOTEUR, PROC_REF(on_saboteur))
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/static/list/slapcraft_recipe_list = list(/datum/crafting_recipe/flashlight_eyes)
AddElement(
@@ -541,7 +547,10 @@
randomize_fuel = FALSE
trash_type = /obj/item/trash/candle
can_be_extinguished = TRUE
+<<<<<<< HEAD
var/scented_type //SKYRAT EDIT ADDITION /// Pollutant type for scented candles
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The current wax level, used for drawing the correct icon
var/current_wax_level = 1
/// The previous wax level, remembered so we only have to make 3 update_appearance calls total as opposed to every tick
@@ -696,6 +705,9 @@
color = LIGHT_COLOR_GREEN
light_color = LIGHT_COLOR_GREEN
+/obj/item/flashlight/lantern/jade/on
+ start_on = TRUE
+
/obj/item/flashlight/slime
gender = PLURAL
name = "glowing slime extract"
diff --git a/code/game/objects/items/devices/laserpointer.dm b/code/game/objects/items/devices/laserpointer.dm
index d9260649742..6605218c9d3 100644
--- a/code/game/objects/items/devices/laserpointer.dm
+++ b/code/game/objects/items/devices/laserpointer.dm
@@ -271,7 +271,11 @@
//catpeople: make any felinid near the target to face the target, chance for felinids to pounce at the light, stepping to the target
for(var/mob/living/carbon/human/target_felinid in view(1, targloc))
+<<<<<<< HEAD
if(!isfeline(target_felinid) || target_felinid.stat == DEAD || target_felinid.is_blind() || target_felinid.incapacitated()) // SKYRAT EDIT - FELINE TRAITS. Was: isfelinid(H)
+=======
+ if(!isfelinid(target_felinid) || target_felinid.stat == DEAD || target_felinid.is_blind() || target_felinid.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
continue
if(target_felinid.body_position == STANDING_UP)
target_felinid.setDir(get_dir(target_felinid, targloc)) // kitty always looks at the light
@@ -300,7 +304,11 @@
if(outmsg)
user.visible_message(span_danger("[user] points [src] at [target]!"), outmsg) //SKYRAT EDIT CHANGE - ORIGINAL: to_chat(user, outmsg)
else
+<<<<<<< HEAD
user.visible_message(span_notice("[user] points [src] at [target]."), span_notice("You point [src] at [target].")) //SKYRAT EDIT CHANGE - ORIGINAL: to_chat(user, span_info("You point [src] at [target]."))
+=======
+ to_chat(user, span_info("You point [src] at [target]."))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//we have successfully shone our pointer, reduce our battery depending on whether we have an extra lens or not
energy -= crystal_lens ? 2 : 1
diff --git a/code/game/objects/items/devices/lightreplacer.dm b/code/game/objects/items/devices/lightreplacer.dm
index 4039b412ebe..8ea1b5f0a26 100644
--- a/code/game/objects/items/devices/lightreplacer.dm
+++ b/code/game/objects/items/devices/lightreplacer.dm
@@ -208,7 +208,11 @@
for(var/obj/machinery/light/target in user.loc)
replace_light(target, user)
on_a_light = TRUE
+<<<<<<< HEAD
if(!on_a_light) //So we dont give a ballon alert when we just used replace_light
+=======
+ if(!on_a_light) //So we don't give a balloon alert when we just used replace_light
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.balloon_alert(user, "[uses] lights, [bulb_shards]/[BULB_SHARDS_REQUIRED] fragments")
/**
diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm
index d250139e38e..0180c223462 100644
--- a/code/game/objects/items/devices/multitool.dm
+++ b/code/game/objects/items/devices/multitool.dm
@@ -87,8 +87,11 @@
// Syndicate device disguised as a multitool; it will turn red when an AI camera is nearby.
/obj/item/multitool/ai_detect
+<<<<<<< HEAD
special_desc_requirement = EXAMINE_CHECK_SYNDICATE // Skyrat edit
special_desc = "A special sensor embedded stealthily into this device can detect and warn of nearby silicon activity and camera vision range." // Skyrat edit
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
actions_types = list(/datum/action/item_action/toggle_multitool)
var/detect_state = PROXIMITY_NONE
var/rangealert = 8 //Glows red when inside
diff --git a/code/game/objects/items/devices/powersink.dm b/code/game/objects/items/devices/powersink.dm
index 1925737143e..29090fd8234 100644
--- a/code/game/objects/items/devices/powersink.dm
+++ b/code/game/objects/items/devices/powersink.dm
@@ -2,9 +2,15 @@
#define CLAMPED_OFF 1
#define OPERATING 2
+<<<<<<< HEAD
#define FRACTION_TO_RELEASE 50
#define ALERT 90
#define MINIMUM_HEAT 10000
+=======
+#define FRACTION_TO_RELEASE 25
+#define ALERT 90
+#define MINIMUM_HEAT 20000
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Powersink - used to drain station power
@@ -23,7 +29,11 @@
throw_speed = 1
throw_range = 2
custom_materials = list(/datum/material/iron=SMALL_MATERIAL_AMOUNT* 7.5)
+<<<<<<< HEAD
var/max_heat = 5e7 // Maximum contained heat before exploding. Not actual temperature.
+=======
+ var/max_heat = 100 * STANDARD_BATTERY_CHARGE // Maximum contained heat before exploding. Not actual temperature.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/internal_heat = 0 // Contained heat, goes down every tick.
var/mode = DISCONNECTED // DISCONNECTED, CLAMPED_OFF, OPERATING
var/warning_given = FALSE //! Stop warning spam, only warn the admins/deadchat once that we are about to boom.
@@ -171,7 +181,11 @@
if(istype(terminal.master, /obj/machinery/power/apc))
var/obj/machinery/power/apc/apc = terminal.master
if(apc.operating && apc.cell)
+<<<<<<< HEAD
drained += 0.001 * apc.cell.use(0.05 * STANDARD_CELL_CHARGE, force = TRUE)
+=======
+ drained += 0.001 * apc.cell.use(0.1 * STANDARD_BATTERY_CHARGE, force = TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
internal_heat += drained
/obj/item/powersink/process()
diff --git a/code/game/objects/items/devices/radio/electropack.dm b/code/game/objects/items/devices/radio/electropack.dm
index af19c6cd4f5..537e7fc3984 100644
--- a/code/game/objects/items/devices/radio/electropack.dm
+++ b/code/game/objects/items/devices/radio/electropack.dm
@@ -104,7 +104,11 @@
data["maxFrequency"] = MAX_FREE_FREQ
return data
+<<<<<<< HEAD
/obj/item/electropack/ui_act(action, params)
+=======
+/obj/item/electropack/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm
index 88c9251d5b2..fa70311b0b3 100644
--- a/code/game/objects/items/devices/radio/encryptionkey.dm
+++ b/code/game/objects/items/devices/radio/encryptionkey.dm
@@ -4,6 +4,7 @@
icon = 'icons/obj/devices/circuitry_n_data.dmi'
icon_state = "cypherkey_basic"
w_class = WEIGHT_CLASS_TINY
+<<<<<<< HEAD
/// Can this radio key access the binary radio channel?
var/translate_binary = FALSE
/// Decrypts Syndicate radio transmissions.
@@ -12,18 +13,32 @@
var/independent = FALSE
/// What channels does this encryption key grant to the parent headset.
var/list/channels = list()
+=======
+ /// What channels does this encryption key grant to the parent headset.
+ var/list/channels = list()
+ /// Flags for which "special" radio networks should be accessible
+ var/special_channels = NONE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/language/translated_language
greyscale_config = /datum/greyscale_config/encryptionkey_basic
greyscale_colors = "#820a16#3758c4"
/obj/item/encryptionkey/examine(mob/user)
. = ..()
+<<<<<<< HEAD
if(LAZYLEN(channels) || translate_binary)
+=======
+ if(LAZYLEN(channels) || special_channels & RADIO_SPECIAL_BINARY)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/examine_text_list = list()
for(var/i in channels)
examine_text_list += "[GLOB.channel_tokens[i]] - [LOWER_TEXT(i)]"
+<<<<<<< HEAD
if(translate_binary)
+=======
+ if(special_channels & RADIO_SPECIAL_BINARY)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
examine_text_list += "[GLOB.channel_tokens[MODE_BINARY]] - [MODE_BINARY]"
. += span_notice("It can access the following channels; [jointext(examine_text_list, ", ")].")
@@ -34,14 +49,22 @@
name = "syndicate encryption key"
icon_state = "cypherkey_syndicate"
channels = list(RADIO_CHANNEL_SYNDICATE = 1)
+<<<<<<< HEAD
syndie = TRUE
+=======
+ special_channels = RADIO_SPECIAL_SYNDIE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
greyscale_config = /datum/greyscale_config/encryptionkey_syndicate
greyscale_colors = "#171717#990000"
/obj/item/encryptionkey/binary
name = "binary translator key"
icon_state = "cypherkey_basic"
+<<<<<<< HEAD
translate_binary = TRUE
+=======
+ special_channels = RADIO_SPECIAL_BINARY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
translated_language = /datum/language/machine
greyscale_config = /datum/greyscale_config/encryptionkey_basic
greyscale_colors = "#24a157#3758c4"
@@ -101,6 +124,16 @@
channels = list(RADIO_CHANNEL_MEDICAL = 1, RADIO_CHANNEL_SERVICE = 1)
greyscale_config = /datum/greyscale_config/encryptionkey_service
greyscale_colors = "#ebebeb#3bca5a"
+<<<<<<< HEAD
+=======
+
+/obj/item/encryptionkey/headset_srvent
+ name = "press radio encryption key"
+ icon_state = "cypherkey_service"
+ channels = list(RADIO_CHANNEL_SERVICE = 1, RADIO_CHANNEL_ENTERTAINMENT = 0)
+ greyscale_config = /datum/greyscale_config/encryptionkey_service
+ greyscale_colors = "#83eb8f#3bca5a"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/encryptionkey/headset_com
name = "command radio encryption key"
@@ -182,7 +215,11 @@
/obj/item/encryptionkey/headset_cent
name = "\improper CentCom radio encryption key"
icon_state = "cypherkey_centcom"
+<<<<<<< HEAD
independent = TRUE
+=======
+ special_channels = RADIO_SPECIAL_CENTCOM
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
channels = list(RADIO_CHANNEL_CENTCOM = 1)
greyscale_config = /datum/greyscale_config/encryptionkey_centcom
greyscale_colors = "#24a157#dca01b"
@@ -197,6 +234,10 @@
RADIO_CHANNEL_SUPPLY = 1,
RADIO_CHANNEL_SERVICE = 1,
RADIO_CHANNEL_AI_PRIVATE = 1,
+<<<<<<< HEAD
+=======
+ RADIO_CHANNEL_ENTERTAINMENT = 1,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/obj/item/encryptionkey/ai_with_binary
@@ -210,15 +251,25 @@
RADIO_CHANNEL_SUPPLY = 1,
RADIO_CHANNEL_SERVICE = 1,
RADIO_CHANNEL_AI_PRIVATE = 1,
+<<<<<<< HEAD
)
translate_binary = TRUE
+=======
+ RADIO_CHANNEL_ENTERTAINMENT = 1,
+ )
+ special_channels = RADIO_SPECIAL_BINARY
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
translated_language = /datum/language/machine
/obj/item/encryptionkey/ai/evil //ported from NT, this goes 'inside' the AI.
name = "syndicate binary encryption key"
icon_state = "cypherkey_syndicate"
channels = list(RADIO_CHANNEL_SYNDICATE = 1)
+<<<<<<< HEAD
syndie = TRUE
+=======
+ special_channels = RADIO_SPECIAL_SYNDIE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
greyscale_config = /datum/greyscale_config/encryptionkey_syndicate
greyscale_colors = "#171717#990000"
diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm
index d04fd8c872c..a4e0ea8f4f6 100644
--- a/code/game/objects/items/devices/radio/headset.dm
+++ b/code/game/objects/items/devices/radio/headset.dm
@@ -17,7 +17,8 @@ GLOBAL_LIST_INIT(channel_tokens, list(
RADIO_CHANNEL_SUPPLY = RADIO_TOKEN_SUPPLY,
RADIO_CHANNEL_SERVICE = RADIO_TOKEN_SERVICE,
MODE_BINARY = MODE_TOKEN_BINARY,
- RADIO_CHANNEL_AI_PRIVATE = RADIO_TOKEN_AI_PRIVATE
+ RADIO_CHANNEL_AI_PRIVATE = RADIO_TOKEN_AI_PRIVATE,
+ RADIO_CHANNEL_ENTERTAINMENT = RADIO_TOKEN_ENTERTAINMENT,
))
/obj/item/radio/headset
@@ -55,7 +56,7 @@ GLOBAL_LIST_INIT(channel_tokens, list(
if(item_flags & IN_INVENTORY && loc == user)
// construction of frequency description
var/list/avail_chans = list("Use [RADIO_KEY_COMMON] for the currently tuned frequency")
- if(translate_binary)
+ if(special_channels & RADIO_SPECIAL_BINARY)
avail_chans += "use [MODE_TOKEN_BINARY] for [MODE_BINARY]"
if(length(channels))
for(var/i in 1 to length(channels))
@@ -208,6 +209,16 @@ GLOBAL_LIST_INIT(channel_tokens, list(
icon_state = "srv_headset"
worn_icon_state = "srv_headset"
keyslot = /obj/item/encryptionkey/headset_srvmed
+<<<<<<< HEAD
+=======
+
+/obj/item/radio/headset/headset_srvent
+ name = "press headset"
+ desc = "A headset allowing the wearer to communicate with service and broadcast to entertainment channel."
+ icon_state = "srvent_headset"
+ worn_icon_state = "srv_headset"
+ keyslot = /obj/item/encryptionkey/headset_srvent
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/radio/headset/headset_com
name = "command radio headset"
@@ -436,12 +447,16 @@ GLOBAL_LIST_INIT(channel_tokens, list(
if(!(ch_name in src.channels))
LAZYSET(channels, ch_name, keyslot2.channels[ch_name])
+<<<<<<< HEAD
if(keyslot2.translate_binary)
translate_binary = TRUE
if(keyslot2.syndie)
syndie = TRUE
if(keyslot2.independent)
independent = TRUE
+=======
+ special_channels |= keyslot2.special_channels
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/ch_name in channels)
secure_radio_connections[ch_name] = add_radio(src, GLOB.radiochannels[ch_name])
@@ -465,6 +480,11 @@ GLOBAL_LIST_INIT(channel_tokens, list(
grant_headset_languages(mob_loc)
/obj/item/radio/headset/click_alt(mob/living/user)
+<<<<<<< HEAD
+=======
+ if(!istype(user) || !Adjacent(user) || user.incapacitated)
+ return CLICK_ACTION_BLOCKING
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (!command)
return CLICK_ACTION_BLOCKING
use_command = !use_command
diff --git a/code/game/objects/items/devices/radio/intercom.dm b/code/game/objects/items/devices/radio/intercom.dm
index e3587b44066..b06ae76d7b2 100644
--- a/code/game/objects/items/devices/radio/intercom.dm
+++ b/code/game/objects/items/devices/radio/intercom.dm
@@ -118,7 +118,7 @@
return FALSE
if(freq == FREQ_SYNDICATE)
- if(!(syndie))
+ if(!(special_channels &= RADIO_SPECIAL_SYNDIE))
return FALSE//Prevents broadcast of messages over devices lacking the encryption
return TRUE
@@ -219,6 +219,25 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom, 27)
command = TRUE
icon_off = "intercom_command-p"
+<<<<<<< HEAD
MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/prison, 27)
MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/chapel, 27)
MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/command, 27)
+=======
+/obj/item/radio/intercom/syndicate
+ name = "syndicate intercom"
+ desc = "Talk smack through this."
+ command = TRUE
+ special_channels = RADIO_SPECIAL_SYNDIE
+
+/obj/item/radio/intercom/syndicate/freerange
+ name = "syndicate wide-band intercom"
+ desc = "A custom-made Syndicate-issue intercom used to transmit on all Nanotrasen frequencies. Particularly expensive."
+ freerange = TRUE
+
+MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/prison, 27)
+MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/chapel, 27)
+MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/command, 27)
+MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/syndicate, 27)
+MAPPING_DIRECTIONAL_HELPERS(/obj/item/radio/intercom/syndicate/freerange, 27)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm
index 5c6b7d0d35a..9a2a6bbd0f0 100644
--- a/code/game/objects/items/devices/radio/radio.dm
+++ b/code/game/objects/items/devices/radio/radio.dm
@@ -57,18 +57,28 @@
var/use_command = FALSE
/// If true, use_command can be toggled at will.
var/command = FALSE
+<<<<<<< HEAD
+=======
+ /// Does it play radio noise?
+ var/radio_noise = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///makes anyone who is talking through this anonymous.
var/anonymize = FALSE
/// Encryption key handling
var/obj/item/encryptionkey/keyslot
+<<<<<<< HEAD
/// If true, can hear the special binary channel.
var/translate_binary = FALSE
/// If true, can say/hear on the special CentCom channel.
var/independent = FALSE
/// If true, hears all well-known channels automatically, and can say/hear on the Syndicate channel. Also protects from radio jammers.
var/syndie = FALSE
+=======
+ /// Flags for which "special" radio networks should be accessible
+ var/special_channels = NONE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// associative list of the encrypted radio channels this radio is currently set to listen/broadcast to, of the form: list(channel name = TRUE or FALSE)
var/list/channels
/// associative list of the encrypted radio channels this radio can listen/broadcast to, of the form: list(channel name = channel frequency)
@@ -109,7 +119,11 @@
perform_update_icon = FALSE
set_listening(listening)
set_broadcasting(broadcasting)
+<<<<<<< HEAD
set_frequency(sanitize_frequency(frequency, freerange, syndie))
+=======
+ set_frequency(sanitize_frequency(frequency, freerange, (special_channels & RADIO_SPECIAL_SYNDIE)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
set_on(on)
perform_update_icon = TRUE
@@ -154,12 +168,7 @@
if(!(channel_name in channels))
channels[channel_name] = keyslot.channels[channel_name]
- if(keyslot.translate_binary)
- translate_binary = TRUE
- if(keyslot.syndie)
- syndie = TRUE
- if(keyslot.independent)
- independent = TRUE
+ special_channels = keyslot.special_channels
for(var/channel_name in channels)
secure_radio_connections[channel_name] = add_radio(src, GLOB.radiochannels[channel_name])
@@ -171,9 +180,20 @@
/obj/item/radio/proc/resetChannels()
channels = list()
secure_radio_connections = list()
+<<<<<<< HEAD
translate_binary = FALSE
syndie = FALSE
independent = FALSE
+=======
+ special_channels = NONE
+
+///goes through all radio channels we should be listening for and readds them to the global list
+/obj/item/radio/proc/readd_listening_radio_channels()
+ for(var/channel_name in channels)
+ add_radio(src, GLOB.radiochannels[channel_name])
+
+ add_radio(src, frequency)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///goes through all radio channels we should be listening for and readds them to the global list
/obj/item/radio/proc/readd_listening_radio_channels()
@@ -185,7 +205,11 @@
/obj/item/radio/proc/make_syndie() // Turns normal radios into Syndicate radios!
qdel(keyslot)
keyslot = new /obj/item/encryptionkey/syndicate()
+<<<<<<< HEAD
syndie = TRUE
+=======
+ special_channels |= RADIO_SPECIAL_SYNDIE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
recalculateChannels()
/obj/item/radio/interact(mob/user)
@@ -342,7 +366,11 @@
channel = null
// Nearby active jammers prevent the message from transmitting
+<<<<<<< HEAD
if(is_within_radio_jammer_range(src) && !syndie)
+=======
+ if(is_within_radio_jammer_range(src) && !(special_channels & RADIO_SPECIAL_SYNDIE))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
// Determine the identity information which will be attached to the signal.
@@ -352,7 +380,11 @@
var/datum/signal/subspace/vocal/signal = new(src, freq, speaker, language, radio_message, spans, message_mods)
// Independent radios, on the CentCom frequency, reach all independent radios
+<<<<<<< HEAD
if (independent && (freq == FREQ_CENTCOM || freq == FREQ_CTF_RED || freq == FREQ_CTF_BLUE || freq == FREQ_CTF_GREEN || freq == FREQ_CTF_YELLOW || freq == FREQ_FACTION || freq == FREQ_CYBERSUN || freq == FREQ_INTERDYNE || freq == FREQ_GUILD || freq == FREQ_TARKON || freq == FREQ_SOLFED)) //SKYRAT EDIT CHANGE - FACTION, MAPPING, SOLFED
+=======
+ if (special_channels & RADIO_SPECIAL_CENTCOM && (freq == FREQ_CENTCOM || freq == FREQ_CTF_RED || freq == FREQ_CTF_BLUE || freq == FREQ_CTF_GREEN || freq == FREQ_CTF_YELLOW))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
signal.data["compression"] = 0
signal.transmission_method = TRANSMISSION_SUPERSPACE
signal.levels = list(0)
@@ -362,7 +394,11 @@
if(isliving(talking_movable))
var/mob/living/talking_living = talking_movable
+<<<<<<< HEAD
if(talking_living.client?.prefs.read_preference(/datum/preference/toggle/radio_noise) && !HAS_TRAIT(talking_living, TRAIT_DEAF))
+=======
+ if(radio_noise && !HAS_TRAIT(talking_living, TRAIT_DEAF) && talking_living.client?.prefs.read_preference(/datum/preference/toggle/radio_noise))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SEND_SOUND(talking_living, 'sound/misc/radio_talk.ogg')
// All radios make an attempt to use the subspace system first
@@ -405,12 +441,16 @@
if(message_mods[RADIO_EXTENSION] == MODE_L_HAND || message_mods[RADIO_EXTENSION] == MODE_R_HAND)
// try to avoid being heard double
if (loc == speaker && ismob(speaker))
- var/mob/M = speaker
- var/idx = M.get_held_index_of_item(src)
+ var/mob/mob_speaker = speaker
+ var/idx = mob_speaker.get_held_index_of_item(src)
// left hands are odd slots
if (idx && (idx % 2) == (message_mods[RADIO_EXTENSION] == MODE_L_HAND))
return
+<<<<<<< HEAD
talk_into(speaker, raw_message, , spans, language=message_language, message_mods=filtered_mods)
+=======
+ talk_into(speaker, raw_message, spans=spans, language=message_language, message_mods=filtered_mods)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Checks if this radio can receive on the given frequency.
/obj/item/radio/proc/can_receive(input_frequency, list/levels)
@@ -420,7 +460,11 @@
if(!position || !(position.z in levels))
return FALSE
+<<<<<<< HEAD
if (input_frequency == FREQ_SYNDICATE && !syndie)
+=======
+ if (input_frequency == FREQ_SYNDICATE && !(special_channels & RADIO_SPECIAL_SYNDIE))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
// allow checks: are we listening on that frequency?
@@ -428,7 +472,11 @@
return TRUE
for(var/ch_name in channels)
if(channels[ch_name] & FREQ_LISTENING)
+<<<<<<< HEAD
if(GLOB.radiochannels[ch_name] == text2num(input_frequency) || syndie)
+=======
+ if(GLOB.radiochannels[ch_name] == text2num(input_frequency) || special_channels & RADIO_SPECIAL_SYNDIE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
return FALSE
@@ -440,7 +488,11 @@
return
var/mob/living/holder = loc
+<<<<<<< HEAD
if(!holder.client?.prefs.read_preference(/datum/preference/toggle/radio_noise) && !HAS_TRAIT(holder, TRAIT_DEAF))
+=======
+ if(!radio_noise || HAS_TRAIT(holder, TRAIT_DEAF) || !holder.client?.prefs.read_preference(/datum/preference/toggle/radio_noise))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/list/spans = data["spans"]
@@ -499,7 +551,11 @@
tune = tune * 10
. = TRUE
if(.)
+<<<<<<< HEAD
set_frequency(sanitize_frequency(tune, freerange, syndie))
+=======
+ set_frequency(sanitize_frequency(tune, freerange, (special_channels & RADIO_SPECIAL_SYNDIE)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if("listen")
set_listening(!listening)
. = TRUE
@@ -603,7 +659,11 @@
channels[ch_name] = TRUE
/obj/item/radio/borg/syndicate
+<<<<<<< HEAD
syndie = TRUE
+=======
+ special_channels = RADIO_SPECIAL_SYNDIE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
keyslot = /obj/item/encryptionkey/syndicate
/obj/item/radio/borg/syndicate/Initialize(mapload)
@@ -651,4 +711,63 @@
. = ..()
set_listening(FALSE)
+<<<<<<< HEAD
+=======
+// RADIOS USED BY BROADCASTING
+/obj/item/radio/entertainment
+ desc = "You should not hold this."
+ canhear_range = 7
+ freerange = TRUE
+ freqlock = RADIO_FREQENCY_LOCKED
+ radio_noise = FALSE
+
+/obj/item/radio/entertainment/Initialize(mapload)
+ . = ..()
+ set_frequency(FREQ_ENTERTAINMENT)
+
+/obj/item/radio/entertainment/speakers // Used inside of the entertainment monitors, not to be used as a actual item
+ should_be_listening = TRUE
+ should_be_broadcasting = FALSE
+
+/obj/item/radio/entertainment/speakers/Initialize(mapload)
+ . = ..()
+ set_broadcasting(FALSE)
+ set_listening(TRUE)
+ wires?.cut(WIRE_TX)
+
+/obj/item/radio/entertainment/speakers/on_receive_message(list/data)
+ playsound(source = src, soundin = SFX_MUFFLED_SPEECH, vol = 60, extrarange = -4, vary = TRUE, ignore_walls = FALSE)
+
+ return ..()
+
+/obj/item/radio/entertainment/speakers/physical // Can be used as a physical item
+ name = "entertainment radio"
+ desc = "A portable one-way radio permamently tuned into entertainment frequency."
+ icon_state = "radio"
+ inhand_icon_state = "radio"
+ worn_icon_state = "radio"
+ overlay_speaker_idle = "radio_s_idle"
+ overlay_speaker_active = "radio_s_active"
+ overlay_mic_idle = "radio_m_idle"
+ overlay_mic_active = "radio_m_active"
+
+/obj/item/radio/entertainment/microphone // Used inside of a broadcast camera, not to be used as a actual item
+ should_be_listening = FALSE
+ should_be_broadcasting = TRUE
+
+/obj/item/radio/entertainment/microphone/Initialize(mapload)
+ . = ..()
+ set_broadcasting(TRUE)
+ set_listening(FALSE)
+ wires?.cut(WIRE_RX)
+
+/obj/item/radio/entertainment/microphone/physical // Can be used as a physical item
+ name = "microphone"
+ desc = "No comments."
+ icon = 'icons/obj/service/broadcast.dmi'
+ icon_state = "microphone"
+ inhand_icon_state = "microphone"
+ canhear_range = 3
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#undef FREQ_LISTENING
diff --git a/code/game/objects/items/devices/scanners/gas_analyzer.dm b/code/game/objects/items/devices/scanners/gas_analyzer.dm
index 43df72d8a5b..71a82c3d736 100644
--- a/code/game/objects/items/devices/scanners/gas_analyzer.dm
+++ b/code/game/objects/items/devices/scanners/gas_analyzer.dm
@@ -134,13 +134,21 @@
return list("gasmixes" = last_gasmix_data)
/obj/item/analyzer/attack_self(mob/user, modifiers)
+<<<<<<< HEAD
if(user.stat != CONSCIOUS || !user.can_read(src)) //SKYRAT EDIT: Blind People Can Analyze Again
+=======
+ if(user.stat != CONSCIOUS || !user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
atmos_scan(user=user, target=get_turf(src), silent=FALSE)
on_analyze(source=src, target=get_turf(src))
/obj/item/analyzer/attack_self_secondary(mob/user, modifiers)
+<<<<<<< HEAD
if(user.stat != CONSCIOUS || !user.can_read(src)) //SKYRAT EDIT: Blind People Can Analyze Again
+=======
+ if(user.stat != CONSCIOUS || !user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
ui_interact(user)
diff --git a/code/game/objects/items/devices/scanners/health_analyzer.dm b/code/game/objects/items/devices/scanners/health_analyzer.dm
index 4a4fc0683c2..b41827cb45d 100644
--- a/code/game/objects/items/devices/scanners/health_analyzer.dm
+++ b/code/game/objects/items/devices/scanners/health_analyzer.dm
@@ -45,7 +45,11 @@
return BRUTELOSS
/obj/item/healthanalyzer/attack_self(mob/user)
+<<<<<<< HEAD
if(!user.can_read(src)) //SKYRAT EDIT: Blind People Can Analyze Again
+=======
+ if(!user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
scanmode = (scanmode + 1) % SCANMODE_COUNT
@@ -58,7 +62,11 @@
/obj/item/healthanalyzer/interact_with_atom(atom/interacting_with, mob/living/user, list/modifiers)
if(!isliving(interacting_with))
return NONE
+<<<<<<< HEAD
if(!user.can_read(src)) //SKYRAT EDIT CHANGE - Blind People Can Analyze Again- ORIGINAL: if(!user.can_read(src) || user.is_blind())
+=======
+ if(!user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ITEM_INTERACT_BLOCKING
var/mob/living/M = interacting_with
@@ -96,7 +104,11 @@
/obj/item/healthanalyzer/interact_with_atom_secondary(atom/interacting_with, mob/living/user, list/modifiers)
if(!isliving(interacting_with))
return NONE
+<<<<<<< HEAD
if(!user.can_read(src)) // SKYRAT EDIT CHANGE - Blind people can analyze again - ORIGINAL: if(!user.can_read(src) || user.is_blind())
+=======
+ if(!user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ITEM_INTERACT_BLOCKING
chemscan(user, interacting_with)
@@ -132,7 +144,11 @@
* tochat - Whether to immediately post the result into the chat of the user, otherwise it will return the results.
*/
/proc/healthscan(mob/user, mob/living/target, mode = SCANNER_VERBOSE, advanced = FALSE, tochat = TRUE)
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
// the final list of strings to render
@@ -164,6 +180,7 @@
if(HAS_TRAIT(target, TRAIT_HUSK))
if(advanced)
if(HAS_TRAIT_FROM(target, TRAIT_HUSK, BURN))
+<<<<<<< HEAD
/* SKYRAT EDIT START: More unhusking information */
render_list += "Subject has been husked by severe burns. Proceed by repairing burn damage and following up with \
application of [SYNTHFLESH_UNHUSK_AMOUNT]u synthflesh or injection of rezadone as treatment. \n"
@@ -171,6 +188,11 @@
render_list += "Subject has been husked by dessication. Use application of [SYNTHFLESH_LING_UNHUSK_AMOUNT]u \
of synthflesh or injection of rezadone as treatment. \n"
/* SKYRAT EDIT END */
+=======
+ render_list += "Subject has been husked by severe burns. \n"
+ else if (HAS_TRAIT_FROM(target, TRAIT_HUSK, CHANGELING_DRAIN))
+ render_list += "Subject has been husked by dessication. \n"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
render_list += "Subject has been husked by mysterious causes. \n"
@@ -185,16 +207,22 @@
if (!target.get_organ_slot(ORGAN_SLOT_BRAIN)) // kept exclusively for soul purposes
render_list += "Subject lacks a brain. \n"
+<<<<<<< HEAD
var/death_consequences_status_text // SKYRAT EDIT ADDITION: Death consequences quirk
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(iscarbon(target))
var/mob/living/carbon/carbontarget = target
if(LAZYLEN(carbontarget.get_traumas()))
var/list/trauma_text = list()
for(var/datum/brain_trauma/trauma in carbontarget.get_traumas())
+<<<<<<< HEAD
//SKYRAT EDIT: Scary Traits (Bimbo)
if(!trauma.display_scanner)
continue
//SKYRAT EDIT: Scary Traits (Bimbo)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/trauma_desc = ""
switch(trauma.resilience)
if(TRAUMA_RESILIENCE_SURGERY)
@@ -203,6 +231,7 @@
trauma_desc += "deep-rooted "
if(TRAUMA_RESILIENCE_WOUND)
trauma_desc += "fracture-derived "
+<<<<<<< HEAD
// SKYRAT EDIT CHANGE BEGIN - Curable permanent traumas
if(TRAUMA_RESILIENCE_MAGIC)
trauma_desc += "soul-bound "
@@ -216,12 +245,19 @@
var/datum/brain_trauma/severe/death_consequences/consequences_trauma = trauma
death_consequences_status_text = consequences_trauma.get_health_analyzer_link_text(user)
// SKYRAT EDIT ADDITION END: Death Consequences Quirk
+=======
+ if(TRAUMA_RESILIENCE_MAGIC, TRAUMA_RESILIENCE_ABSOLUTE)
+ trauma_desc += "permanent "
+ trauma_desc += trauma.scan_desc
+ trauma_text += trauma_desc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
render_list += "Cerebral traumas detected: subject appears to be suffering from [english_list(trauma_text)]. \n"
if(carbontarget.quirks.len)
render_list += "Subject Major Disabilities: [carbontarget.get_quirk_string(FALSE, CAT_QUIRK_MAJOR_DISABILITY, from_scan = TRUE)]. \n"
if(advanced)
render_list += "Subject Minor Disabilities: [carbontarget.get_quirk_string(FALSE, CAT_QUIRK_MINOR_DISABILITY, TRUE)]. \n"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START -- Show increased/decreased brute/burn mods, to "leave a paper trail" for the fragility quirk
if(ishuman(target))
var/mob/living/carbon/human/humantarget = target
@@ -233,6 +269,8 @@
render_list += "Subject takes [(physiology.burn_mod) * 100]% burn damage. \n"
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if (HAS_TRAIT(target, TRAIT_IRRADIATED))
render_list += "Subject is irradiated. Supply toxin healing. \n"
@@ -432,6 +470,7 @@
render_list += "[cyberimp_detect] \n"
// we handled the last so we don't need handholding
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION - Mutant stuff
if(target.GetComponent(/datum/component/mutant_infection))
render_list += span_userdanger("UNKNOWN PROTO-VIRAL INFECTION DETECTED. ISOLATE IMMEDIATELY.")
@@ -442,13 +481,19 @@
render_list += death_consequences_status_text
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(tochat)
to_chat(user, examine_block(jointext(render_list, "")), trailing_newline = FALSE, type = MESSAGE_TYPE_INFO)
else
return(jointext(render_list, ""))
/proc/chemscan(mob/living/user, mob/living/target)
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(istype(target) && target.reagents)
@@ -534,7 +579,11 @@
/// Displays wounds with extended information on their status vs medscanners
/proc/woundscan(mob/user, mob/living/carbon/patient, obj/item/healthanalyzer/scanner, simple_scan = FALSE)
+<<<<<<< HEAD
if(!istype(patient) || user.incapacitated())
+=======
+ if(!istype(patient) || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/render_list = ""
@@ -618,7 +667,11 @@
/obj/item/healthanalyzer/simple/interact_with_atom(atom/interacting_with, mob/living/user, list/modifiers)
if(!isliving(interacting_with))
return NONE
+<<<<<<< HEAD
if(!user.can_read(src)) //SKYRAT EDIT CHANGE - Blind People Can Analyze Again - ORIGINAL: if(!user.can_read(src) || user.is_blind())
+=======
+ if(!user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ITEM_INTERACT_BLOCKING
add_fingerprint(user)
@@ -703,7 +756,11 @@
/// Checks the individual for any diseases that are visible to the scanner, and displays the diseases in the attacked to the attacker.
/proc/diseasescan(mob/user, mob/living/carbon/patient, obj/item/healthanalyzer/simple/scanner)
+<<<<<<< HEAD
if(!istype(patient) || user.incapacitated())
+=======
+ if(!istype(patient) || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/list/render = list()
diff --git a/code/game/objects/items/devices/scanners/slime_scanner.dm b/code/game/objects/items/devices/scanners/slime_scanner.dm
index bf55265f783..57775a92f50 100644
--- a/code/game/objects/items/devices/scanners/slime_scanner.dm
+++ b/code/game/objects/items/devices/scanners/slime_scanner.dm
@@ -16,7 +16,11 @@
/obj/item/slime_scanner/interact_with_atom(atom/interacting_with, mob/living/user, list/modifiers)
if(!isliving(interacting_with))
return NONE
+<<<<<<< HEAD
if(!user.can_read(src)) //SKYRAT EDIT CHANGE - Blind People Can Analyze Again - ORIGINAL : if(!user.can_read(src) || user.is_blind())
+=======
+ if(!user.can_read(src) || user.is_blind())
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ITEM_INTERACT_BLOCKING
if (!isslime(interacting_with))
to_chat(user, span_warning("This device can only scan slimes!"))
diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm
index d30f379197e..b86489fae9e 100644
--- a/code/game/objects/items/devices/taperecorder.dm
+++ b/code/game/objects/items/devices/taperecorder.dm
@@ -122,7 +122,7 @@
/obj/item/taperecorder/proc/can_use(mob/user)
if(user && ismob(user))
- if(!user.incapacitated())
+ if(!user.incapacitated)
return TRUE
return FALSE
diff --git a/code/game/objects/items/devices/traitordevices.dm b/code/game/objects/items/devices/traitordevices.dm
index 0dc69cb9c81..85516c81560 100644
--- a/code/game/objects/items/devices/traitordevices.dm
+++ b/code/game/objects/items/devices/traitordevices.dm
@@ -138,7 +138,11 @@ effective or pretty fucking useless.
data["cooldown"] = DisplayTimeText(get_cooldown())
return data
+<<<<<<< HEAD
/obj/item/healthanalyzer/rad_laser/ui_act(action, params)
+=======
+/obj/item/healthanalyzer/rad_laser/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm
index 598c16c9041..aa1a45f3210 100644
--- a/code/game/objects/items/devices/transfer_valve.dm
+++ b/code/game/objects/items/devices/transfer_valve.dm
@@ -291,7 +291,11 @@
data["valve"] = valve_open
return data
+<<<<<<< HEAD
/obj/item/transfer_valve/ui_act(action, params)
+=======
+/obj/item/transfer_valve/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/dualsaber.dm b/code/game/objects/items/dualsaber.dm
index 9231bf191c2..5b0c5727f3d 100644
--- a/code/game/objects/items/dualsaber.dm
+++ b/code/game/objects/items/dualsaber.dm
@@ -23,15 +23,22 @@
light_on = FALSE
attack_verb_continuous = list("attacks", "slashes", "stabs", "slices", "tears", "lacerates", "rips", "dices", "cuts")
attack_verb_simple = list("attack", "slash", "stab", "slice", "tear", "lacerate", "rip", "dice", "cut")
+<<<<<<< HEAD
block_chance = 45 //SKYRAT EDIT - Lowered ORIGINAL:75
+=======
+ block_chance = 75
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
block_sound = 'sound/weapons/block_blade.ogg'
max_integrity = 200
armor_type = /datum/armor/item_dualsaber
resistance_flags = FIRE_PROOF
wound_bonus = -10
bare_wound_bonus = 20
+<<<<<<< HEAD
special_desc_requirement = EXAMINE_CHECK_SYNDICATE_TOY // Skyrat edit
special_desc = "A double bladed energy sword employed by the Syndicate in raids" // Skyrat edit
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
demolition_mod = 1.5 //1.5x damage to objects, robots, etc.
item_flags = NO_BLOOD_ON_ITEM
var/w_class_on = WEIGHT_CLASS_BULKY
diff --git a/code/game/objects/items/dyespray.dm b/code/game/objects/items/dyespray.dm
index 24fa7b80c81..e95eadb0bd4 100644
--- a/code/game/objects/items/dyespray.dm
+++ b/code/game/objects/items/dyespray.dm
@@ -1,12 +1,19 @@
/obj/item/dyespray
name = "hair dye spray"
+<<<<<<< HEAD
desc = "A spray to dye hair as well as giving it any gradient you'd like." // SKYRAT EDIT - Making the dyespray change hair color
+=======
+ desc = "A spray to dye your hair any gradients you'd like."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
w_class = WEIGHT_CLASS_TINY
icon = 'icons/obj/cosmetic.dmi'
icon_state = "dyespray"
+<<<<<<< HEAD
var/uses = 40 //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/dyespray/attack_self(mob/user)
dye(user, user)
@@ -20,6 +27,7 @@
* Arguments:
* * target - The mob who we will apply the gradient and gradient color to.
*/
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL - MOVED TO MODULAR (modular_skyrat\master_files\code\game\objects\items\dyekit.dm)
/obj/item/dyespray/proc/dye(mob/target, mob/user)
if(!ishuman(target))
@@ -28,6 +36,12 @@
if(!uses) //SKYRAT EDIT ADDITION
return //SKYRAT EDIT ADDITION
+=======
+
+/obj/item/dyespray/proc/dye(mob/target, mob/user)
+ if(!ishuman(target))
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mob/living/carbon/human/human_target = target
var/beard_or_hair = tgui_alert(user, "What do you want to dye?", "Character Preference", list("Hair", "Facial Hair"))
if(!beard_or_hair || !user.can_perform_action(src, NEED_DEXTERITY))
@@ -54,4 +68,7 @@
human_target.set_facial_hair_gradient_style(new_grad_style, update = FALSE)
human_target.set_facial_hair_gradient_color(new_grad_color, update = TRUE)
playsound(src, 'sound/effects/spray.ogg', 10, vary = TRUE)
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/eightball.dm b/code/game/objects/items/eightball.dm
index bb063f4a1f4..3d9fab73470 100644
--- a/code/game/objects/items/eightball.dm
+++ b/code/game/objects/items/eightball.dm
@@ -219,7 +219,11 @@
data["answers"] += list(answer_data)
return data
+<<<<<<< HEAD
/obj/item/toy/eightball/haunted/ui_act(action, params)
+=======
+/obj/item/toy/eightball/haunted/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/extinguisher.dm b/code/game/objects/items/extinguisher.dm
index 0012dd08f26..294fe2d96de 100644
--- a/code/game/objects/items/extinguisher.dm
+++ b/code/game/objects/items/extinguisher.dm
@@ -1,7 +1,11 @@
/obj/item/extinguisher
name = "fire extinguisher"
desc = "A traditional red fire extinguisher."
+<<<<<<< HEAD
icon = 'icons/obj/tools.dmi' // SKYRAT EDIT CHANGE - ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/tools.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "fire_extinguisher0"
worn_icon_state = "fire_extinguisher"
inhand_icon_state = "fire_extinguisher"
diff --git a/code/game/objects/items/food/burgers.dm b/code/game/objects/items/food/burgers.dm
index b2d779ca3a5..eb49fa9adf4 100644
--- a/code/game/objects/items/food/burgers.dm
+++ b/code/game/objects/items/food/burgers.dm
@@ -580,7 +580,11 @@
/obj/item/food/burger/rib
name = "mcrib"
+<<<<<<< HEAD
desc = "An elusive rib shaped burger with limited availablity across the galaxy. Not as good as you remember it."
+=======
+ desc = "An elusive rib shaped burger with limited availability across the galaxy. Not as good as you remember it."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "mcrib"
food_reagents = list(
/datum/reagent/consumable/nutriment = 2,
diff --git a/code/game/objects/items/food/meatdish.dm b/code/game/objects/items/food/meatdish.dm
index 63f42d0d83b..a49a35e81dd 100644
--- a/code/game/objects/items/food/meatdish.dm
+++ b/code/game/objects/items/food/meatdish.dm
@@ -36,6 +36,39 @@
w_class = WEIGHT_CLASS_SMALL
starting_reagent_purity = 1.0
+<<<<<<< HEAD
+=======
+/obj/item/food/fishmeat/quality
+ name = "quality fish fillet"
+ desc = "A fillet of some precious fish meat."
+ food_reagents = list(
+ /datum/reagent/consumable/nutriment/protein = 4,
+ /datum/reagent/consumable/nutriment/vitamin = 3,
+ )
+ bite_consumption = 7
+ crafting_complexity = FOOD_COMPLEXITY_1
+
+/obj/item/food/fishmeat/quality/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/quality_food_ingredient, FOOD_COMPLEXITY_1)
+
+/obj/item/food/fishmeat/salmon
+ name = "salmon fillet"
+ desc = "a chunky, fatty fillet of salmon meat."
+ icon_state = "salmon"
+ food_reagents = list(
+ /datum/reagent/consumable/nutriment/protein = 4,
+ /datum/reagent/consumable/nutriment/vitamin = 3,
+ /datum/reagent/consumable/nutriment/fat/oil = 2,
+ )
+ bite_consumption = 4.5
+ crafting_complexity = FOOD_COMPLEXITY_1
+
+/obj/item/food/fishmeat/salmon/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/quality_food_ingredient, FOOD_COMPLEXITY_1)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/food/fishmeat/carp
name = "carp fillet"
desc = "A fillet of spess carp meat."
@@ -491,7 +524,11 @@
/obj/item/food/patty
name = "patty"
+<<<<<<< HEAD
desc = "The nanotrasen patty is the patty for you and me!"
+=======
+ desc = "The Nanotrasen patty is the patty for you and me!"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon = 'icons/obj/food/meat.dmi'
icon_state = "patty"
food_reagents = list(/datum/reagent/consumable/nutriment/protein = 2)
diff --git a/code/game/objects/items/food/meatslab.dm b/code/game/objects/items/food/meatslab.dm
index 3f8cb918ece..91174f67fc1 100644
--- a/code/game/objects/items/food/meatslab.dm
+++ b/code/game/objects/items/food/meatslab.dm
@@ -353,7 +353,11 @@
/obj/item/food/meat/rawbacon
name = "raw piece of bacon"
desc = "A raw piece of bacon."
+<<<<<<< HEAD
icon_state = "baconb"
+=======
+ icon_state = "bacon"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bite_consumption = 2
food_reagents = list(
/datum/reagent/consumable/nutriment/protein = 2,
@@ -369,7 +373,11 @@
/obj/item/food/meat/bacon
name = "piece of bacon"
desc = "A delicious piece of bacon."
+<<<<<<< HEAD
icon_state = "baconcookedb"
+=======
+ icon_state = "baconcooked"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
food_reagents = list(
/datum/reagent/consumable/nutriment/protein = 2,
/datum/reagent/consumable/nutriment/vitamin = 1,
diff --git a/code/game/objects/items/food/misc.dm b/code/game/objects/items/food/misc.dm
index 4e8b8cbf220..b0966644440 100644
--- a/code/game/objects/items/food/misc.dm
+++ b/code/game/objects/items/food/misc.dm
@@ -292,6 +292,17 @@
foodtypes = FRUIT | ALCOHOL
crafting_complexity = FOOD_COMPLEXITY_2
+<<<<<<< HEAD
+=======
+/obj/item/food/melonkeg/CheckParts(list/parts_list)
+ . = ..()
+ var/obj/item/reagent_containers/cup/glass/bottle/bottle = locate() in contents
+ if(!bottle)
+ return
+ if(bottle.message_in_a_bottle)
+ bottle.message_in_a_bottle.forceMove(drop_location())
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/food/honeybar
name = "honey nut bar"
desc = "Oats and nuts compressed together into a bar, held together with a honey glaze."
@@ -568,7 +579,11 @@
tastes = list()
/obj/item/food/pacoca
+<<<<<<< HEAD
name = "pacoca"
+=======
+ name = "paçoca"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
desc = "A traditional Brazilian treat made of ground peanuts, sugar, and salt compressed into a cylinder."
icon = 'icons/obj/food/food.dmi'
icon_state = "pacoca"
@@ -797,3 +812,33 @@
foodtypes = VEGETABLES | GRAIN
w_class = WEIGHT_CLASS_TINY
crafting_complexity = FOOD_COMPLEXITY_4
+<<<<<<< HEAD
+=======
+
+///Extracted from squids, or any fish with the ink fish trait.
+/obj/item/food/ink_sac
+ name = "ink sac"
+ desc = "the ink sac from some sort of fish or mollusk. It could be canned with a processor."
+ icon_state = "ink_sac"
+ food_reagents = list(/datum/reagent/consumable/nutriment = 5, /datum/reagent/consumable/salt = 5)
+ tastes = list("seafood" = 3)
+ foodtypes = SEAFOOD|RAW
+
+/obj/item/food/ink_sac/Initialize(mapload)
+ . = ..()
+ AddComponent(/datum/component/splat, \
+ memory_type = /datum/memory/witnessed_inking, \
+ smudge_type = /obj/effect/decal/cleanable/food/squid_ink, \
+ moodlet_type = /datum/mood_event/inked, \
+ splat_color = COLOR_NEARLY_ALL_BLACK, \
+ hit_callback = CALLBACK(src, PROC_REF(blind_em)), \
+ )
+
+/obj/item/food/ink_sac/proc/blind_em(mob/living/victim, can_splat_on)
+ if(can_splat_on)
+ victim.adjust_temp_blindness_up_to(7 SECONDS, 10 SECONDS)
+ victim.adjust_confusion_up_to(3.5 SECONDS, 6 SECONDS)
+ victim.Paralyze(2 SECONDS) //splat!
+ victim.visible_message(span_warning("[victim] is inked by [src]!"), span_userdanger("You've been inked by [src]!"))
+ playsound(victim, SFX_DESECRATION, 50, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/food/packaged.dm b/code/game/objects/items/food/packaged.dm
index 0f08fd8f57d..afb6a1b9a19 100644
--- a/code/game/objects/items/food/packaged.dm
+++ b/code/game/objects/items/food/packaged.dm
@@ -156,6 +156,28 @@
tastes = list("seafood" = 7, "tin" = 1)
foodtypes = SEAFOOD
+<<<<<<< HEAD
+=======
+/obj/item/food/canned/squid_ink/open_can(mob/user)
+ . = ..()
+ AddComponent(/datum/component/splat, \
+ memory_type = /datum/memory/witnessed_inking, \
+ smudge_type = /obj/effect/decal/cleanable/food/squid_ink, \
+ moodlet_type = /datum/mood_event/inked, \
+ splat_color = COLOR_NEARLY_ALL_BLACK, \
+ hit_callback = CALLBACK(src, PROC_REF(blind_em)), \
+ )
+ ADD_TRAIT(src, TRAIT_UNCATCHABLE, INNATE_TRAIT) //good luck catching the liquid
+
+/obj/item/food/canned/squid_ink/proc/blind_em(mob/living/victim, can_splat_on)
+ if(can_splat_on)
+ victim.adjust_temp_blindness_up_to(7 SECONDS, 10 SECONDS)
+ victim.adjust_confusion_up_to(3.5 SECONDS, 6 SECONDS)
+ victim.Paralyze(2 SECONDS) //splat!
+ victim.visible_message(span_warning("[victim] is inked by [src]!"), span_userdanger("You've been inked by [src]!"))
+ playsound(victim, SFX_DESECRATION, 50, TRUE)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/food/canned/chap
name = "can of CHAP"
desc = "CHAP: Chopped Ham And Pork. The classic American canned meat product that won a world war, then sent millions of servicemen home with heart congestion."
diff --git a/code/game/objects/items/food/pastries.dm b/code/game/objects/items/food/pastries.dm
index 83f30ab0b06..666caaeb112 100644
--- a/code/game/objects/items/food/pastries.dm
+++ b/code/game/objects/items/food/pastries.dm
@@ -67,7 +67,10 @@
name = "waffles"
desc = "Mmm, waffles."
icon_state = "waffles"
+<<<<<<< HEAD
trash_type = /obj/item/trash/waffles
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
food_reagents = list(
/datum/reagent/consumable/nutriment = 8,
/datum/reagent/consumable/nutriment/vitamin = 2,
@@ -85,7 +88,10 @@
name = "\improper Soylent Green"
desc = "Not made of people. Honest." //Totally people.
icon_state = "soylent_green"
+<<<<<<< HEAD
trash_type = /obj/item/trash/waffles
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
food_reagents = list(
/datum/reagent/consumable/nutriment = 10,
/datum/reagent/consumable/nutriment/vitamin = 2,
@@ -100,7 +106,10 @@
name = "\improper Soylent Virdians"
desc = "Not made of people. Honest." //Actually honest for once.
icon_state = "soylent_yellow"
+<<<<<<< HEAD
trash_type = /obj/item/trash/waffles
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
food_reagents = list(
/datum/reagent/consumable/nutriment = 10,
/datum/reagent/consumable/nutriment/vitamin = 2,
@@ -115,7 +124,10 @@
name = "roffle waffles"
desc = "Waffles from Roffle. Co."
icon_state = "rofflewaffles"
+<<<<<<< HEAD
trash_type = /obj/item/trash/waffles
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bite_consumption = 4
food_reagents = list(
/datum/reagent/consumable/nutriment = 8,
diff --git a/code/game/objects/items/food/pie.dm b/code/game/objects/items/food/pie.dm
index 0cb5af860e8..7c1da650219 100644
--- a/code/game/objects/items/food/pie.dm
+++ b/code/game/objects/items/food/pie.dm
@@ -74,6 +74,7 @@
var/stunning = TRUE
crafting_complexity = FOOD_COMPLEXITY_3
+<<<<<<< HEAD
/obj/item/food/pie/cream/throw_impact(atom/hit_atom, datum/thrownthing/throwingdatum)
. = ..()
if(!.) //if we're not being caught
@@ -100,6 +101,19 @@
if(is_creamable && is_type_in_typecache(hit_atom, GLOB.creamable))
hit_atom.AddComponent(/datum/component/face_decal/creampie, "creampie", EXTERNAL_FRONT)
qdel(src)
+=======
+/obj/item/food/pie/cream/Initialize(mapload)
+ . = ..()
+ AddComponent(/datum/component/splat, hit_callback = CALLBACK(src, PROC_REF(stun_and_blur)))
+
+/obj/item/food/pie/cream/proc/stun_and_blur(mob/living/victim, can_splat_on)
+ if(stunning)
+ victim.Paralyze(2 SECONDS) //splat!
+ if(can_splat_on)
+ victim.adjust_eye_blur(2 SECONDS)
+ victim.visible_message(span_warning("[victim] is creamed by [src]!"), span_userdanger("You've been creamed by [src]!"))
+ playsound(victim, SFX_DESECRATION, 50, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/food/pie/cream/nostun
stunning = FALSE
diff --git a/code/game/objects/items/granters/crafting/fletching.dm b/code/game/objects/items/granters/crafting/fletching.dm
index 91ce20c43dd..d11bb35d2de 100644
--- a/code/game/objects/items/granters/crafting/fletching.dm
+++ b/code/game/objects/items/granters/crafting/fletching.dm
@@ -7,7 +7,11 @@
/datum/crafting_recipe/plastic_arrow,
/datum/crafting_recipe/shortbow,
/datum/crafting_recipe/holy_arrow,
+<<<<<<< HEAD
///datum/crafting_recipe/arrow_quiver, // SKYRAT EDIT REMOVAL: public-knowledge quiver
+=======
+ /datum/crafting_recipe/arrow_quiver,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/crafting_recipe/violin,
)
icon_state = "book4"
diff --git a/code/game/objects/items/granters/magic/lightning_bolt.dm b/code/game/objects/items/granters/magic/lightning_bolt.dm
index 3e3cbade46f..62fc2faf250 100644
--- a/code/game/objects/items/granters/magic/lightning_bolt.dm
+++ b/code/game/objects/items/granters/magic/lightning_bolt.dm
@@ -13,4 +13,7 @@
"UNLIMITED power? Well... maybe if I practice...",
"Wait until they're grouped up...",
)
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/grenades/_grenade.dm b/code/game/objects/items/grenades/_grenade.dm
index a9fe7e65809..e29be9d700c 100644
--- a/code/game/objects/items/grenades/_grenade.dm
+++ b/code/game/objects/items/grenades/_grenade.dm
@@ -19,6 +19,10 @@
max_integrity = 40
pickup_sound = 'sound/items/grenade_pick_up.ogg'
drop_sound = 'sound/items/grenade_drop.ogg'
+<<<<<<< HEAD
+=======
+ sound_vary = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Bitfields which prevent the grenade from detonating if set. Includes ([GRENADE_DUD]|[GRENADE_USED])
var/dud_flags = NONE
///Is this grenade currently armed?
diff --git a/code/game/objects/items/grenades/chem_grenade.dm b/code/game/objects/items/grenades/chem_grenade.dm
index c39e947e2bf..28b06dde666 100644
--- a/code/game/objects/items/grenades/chem_grenade.dm
+++ b/code/game/objects/items/grenades/chem_grenade.dm
@@ -493,8 +493,12 @@
beaker_one.reagents.add_reagent(/datum/reagent/fluorosurfactant, 40)
beaker_two.reagents.add_reagent(/datum/reagent/water, 40)
+<<<<<<< HEAD
beaker_one.reagents.add_reagent(/datum/reagent/space_cleaner, 20) // SKYRAT EDIT - Bump to 20 to make it work with cellulose
beaker_two.reagents.add_reagent(/datum/reagent/cellulose, 20) // SKYRAT EDIT - Cellulose for liquid puddle cleaning
+=======
+ beaker_two.reagents.add_reagent(/datum/reagent/space_cleaner, 10)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
beakers += beaker_one
beakers += beaker_two
diff --git a/code/game/objects/items/grenades/flashbang.dm b/code/game/objects/items/grenades/flashbang.dm
index a73b0b02500..bece36a38b7 100644
--- a/code/game/objects/items/grenades/flashbang.dm
+++ b/code/game/objects/items/grenades/flashbang.dm
@@ -49,7 +49,10 @@
living_mob.Paralyze(5)
living_mob.Knockdown(30)
living_mob.soundbang_act(1, max(200 / max(1, distance), 60), rand(0, 5))
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/grenade/stingbang
name = "stingbang"
diff --git a/code/game/objects/items/handcuffs.dm b/code/game/objects/items/handcuffs.dm
index 7edc0009204..b6159aeb0e8 100644
--- a/code/game/objects/items/handcuffs.dm
+++ b/code/game/objects/items/handcuffs.dm
@@ -50,6 +50,10 @@
custom_price = PAYCHECK_COMMAND * 0.35
pickup_sound = 'sound/items/handcuffs_pick_up.ogg'
drop_sound = 'sound/items/handcuffs_drop.ogg'
+<<<<<<< HEAD
+=======
+ sound_vary = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///How long it takes to handcuff someone
var/handcuff_time = 4 SECONDS
diff --git a/code/game/objects/items/implants/implant_misc.dm b/code/game/objects/items/implants/implant_misc.dm
index 819091eef6b..abbdadae64b 100644
--- a/code/game/objects/items/implants/implant_misc.dm
+++ b/code/game/objects/items/implants/implant_misc.dm
@@ -27,8 +27,11 @@
/obj/item/implanter/emp
name = "implanter" // Skyrat edit, was implanter (EMP)
imp_type = /obj/item/implant/emp
+<<<<<<< HEAD
special_desc_requirement = EXAMINE_CHECK_SYNDICATE // Skyrat edit
special_desc = "A Syndicate implanter used for a EMP implant" // Skyrat edit
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/implant/radio
name = "internal radio implant"
@@ -88,6 +91,9 @@
/obj/item/implanter/radio/syndicate
name = "implanter" // Skyrat edit , was originally implanter (internal syndicate radio)
imp_type = /obj/item/implant/radio/syndicate
+<<<<<<< HEAD
special_desc_requirement = EXAMINE_CHECK_SYNDICATE // Skyrat edit
special_desc = "A Syndicate implanter used for a internal radio implant" // Skyrat edit
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/implants/implantcase.dm b/code/game/objects/items/implants/implantcase.dm
index 027c2e59a11..64a3d2cfdfb 100644
--- a/code/game/objects/items/implants/implantcase.dm
+++ b/code/game/objects/items/implants/implantcase.dm
@@ -1,7 +1,11 @@
/**
* Item used to store implants. Can be renamed with a pen. Implants are moved between those and implanters when a mob uses an implanter on a case.
*/
+<<<<<<< HEAD
/obj/item/implantcase//SKYRAT EDIT - ICON OVERRIDDEN BY AESTHETICS - SEE MODULE
+=======
+/obj/item/implantcase
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "implant case"
desc = "A glass case containing an implant."
icon = 'icons/obj/medical/syringe.dmi'
diff --git a/code/game/objects/items/implants/implantchair.dm b/code/game/objects/items/implants/implantchair.dm
index efbe320d7f0..55529f89d8c 100644
--- a/code/game/objects/items/implants/implantchair.dm
+++ b/code/game/objects/items/implants/implantchair.dm
@@ -55,7 +55,11 @@
return data
+<<<<<<< HEAD
/obj/machinery/implantchair/ui_act(action, params)
+=======
+/obj/machinery/implantchair/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/implants/implanter.dm b/code/game/objects/items/implants/implanter.dm
index ab1a3b0ea6f..268683f1946 100644
--- a/code/game/objects/items/implants/implanter.dm
+++ b/code/game/objects/items/implants/implanter.dm
@@ -1,7 +1,11 @@
/**
* Players can use this item to put obj/item/implant's in living mobs. Can be renamed with a pen.
*/
+<<<<<<< HEAD
/obj/item/implanter//SKYRAT EDIT - ICON OVERRIDDEN BY AESTHETICS - SEE MODULE
+=======
+/obj/item/implanter
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
name = "implanter"
desc = "A sterile automatic implant injector."
icon = 'icons/obj/medical/syringe.dmi'
diff --git a/code/game/objects/items/implants/implantuplink.dm b/code/game/objects/items/implants/implantuplink.dm
index c3c06d51f47..c27bc581f66 100644
--- a/code/game/objects/items/implants/implantuplink.dm
+++ b/code/game/objects/items/implants/implantuplink.dm
@@ -53,6 +53,10 @@
imp = new imp_type(src, uplink_handler)
return ..()
+/obj/item/implanter/uplink/Initialize(mapload, uplink_handler)
+ imp = new imp_type(src, uplink_handler)
+ return ..()
+
/obj/item/implanter/uplink/precharged
name = "implanter" // Skyrat edit , original was implanter (precharged uplink)
imp_type = /obj/item/implant/uplink/precharged
diff --git a/code/game/objects/items/kirby_plants/kirbyplants.dm b/code/game/objects/items/kirby_plants/kirbyplants.dm
index 3becb1ecb61..44493637385 100644
--- a/code/game/objects/items/kirby_plants/kirbyplants.dm
+++ b/code/game/objects/items/kirby_plants/kirbyplants.dm
@@ -1,7 +1,11 @@
/obj/item/kirbyplants
name = "potted plant"
+<<<<<<< HEAD
//icon = 'icons/obj/fluff/flora/plants.dmi' // ORIGINAL
icon = 'modular_skyrat/modules/aesthetics/plants/plants.dmi' // SKYRAT EDIT CHANGE
+=======
+ icon = 'icons/obj/fluff/flora/plants.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "plant-01"
base_icon_state = "plant-01"
desc = "A little bit of nature contained in a pot."
@@ -20,8 +24,11 @@
///If it's a special named plant, set this to true to prevent dead-name overriding.
var/custom_plant_name = FALSE
var/list/static/random_plant_states
+<<<<<<< HEAD
/// Maximum icon state number - KEEP THIS UP TO DATE
var/random_state_cap = 43 // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/kirbyplants/Initialize(mapload)
. = ..()
@@ -71,18 +78,31 @@
generate_states()
var/current = random_plant_states.Find(icon_state)
var/next = WRAP(current+1,1,length(random_plant_states))
+<<<<<<< HEAD
icon_state = random_plant_states[next]
/obj/item/kirbyplants/proc/generate_states()
random_plant_states = list()
for(var/i in 1 to random_state_cap) //SKYRAT EDIT CHANGE - ORIGINAL: for(var/i in 1 to 24)
+=======
+ base_icon_state = random_plant_states[next]
+ update_appearance(UPDATE_ICON)
+
+/obj/item/kirbyplants/proc/generate_states()
+ random_plant_states = list()
+ for(var/i in 1 to 24)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/number
if(i < 10)
number = "0[i]"
else
number = "[i]"
random_plant_states += "plant-[number]"
+<<<<<<< HEAD
random_plant_states += list("applebush", "monkeyplant") //SKYRAT EDIT CHANGE - ORIGINAL:random_plant_states += "applebush"
+=======
+ random_plant_states += "applebush"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/kirbyplants/random
icon = 'icons/obj/fluff/flora/_flora.dmi'
@@ -90,8 +110,12 @@
/obj/item/kirbyplants/random/Initialize(mapload)
. = ..()
+<<<<<<< HEAD
//icon = 'icons/obj/flora/plants.dmi' // ORIGINAL
icon = 'modular_skyrat/modules/aesthetics/plants/plants.dmi' //SKYRAT EDIT CHANGE
+=======
+ icon = 'icons/obj/fluff/flora/plants.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
randomize_base_icon_state()
//Handles randomizing the icon during initialize()
@@ -126,6 +150,7 @@
base_icon_state = "plant-[rand(26, 29)]"
update_appearance(UPDATE_ICON)
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION START
/obj/item/kirbyplants/monkey
name = "monkey plant"
@@ -134,6 +159,8 @@
trimmable = FALSE
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/kirbyplants/photosynthetic
name = "photosynthetic potted plant"
desc = "A bioluminescent plant."
diff --git a/code/game/objects/items/kitchen.dm b/code/game/objects/items/kitchen.dm
index bc424788771..3ce87ebbfa0 100644
--- a/code/game/objects/items/kitchen.dm
+++ b/code/game/objects/items/kitchen.dm
@@ -163,7 +163,10 @@
custom_price = PAYCHECK_CREW * 1.5
tool_behaviour = TOOL_ROLLINGPIN
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/kitchen/rollingpin/illegal
name = "metal rolling pin"
desc = "A heavy metallic rolling pin used to bash in those annoying ingredients."
diff --git a/code/game/objects/items/machine_wand.dm b/code/game/objects/items/machine_wand.dm
index fd0c730fff8..4705b713f8b 100644
--- a/code/game/objects/items/machine_wand.dm
+++ b/code/game/objects/items/machine_wand.dm
@@ -24,6 +24,21 @@
bug_appearance = mutable_appearance('icons/effects/effects.dmi', "fly-surrounding", ABOVE_WINDOW_LAYER)
register_context()
+<<<<<<< HEAD
+=======
+/obj/item/machine_remote/equipped(mob/user, slot, initial)
+ . = ..()
+ if(user.get_active_held_item() == src)
+ ADD_TRAIT(user, TRAIT_AI_ACCESS, HELD_ITEM_TRAIT)
+ ADD_TRAIT(user, TRAIT_SILICON_ACCESS, HELD_ITEM_TRAIT)
+
+/obj/item/machine_remote/dropped(mob/user, silent)
+ . = ..()
+ if(user.get_active_held_item() != src)
+ REMOVE_TRAIT(user, TRAIT_AI_ACCESS, HELD_ITEM_TRAIT)
+ REMOVE_TRAIT(user, TRAIT_SILICON_ACCESS, HELD_ITEM_TRAIT)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/machine_remote/Destroy(force)
. = ..()
if(controlling_machine_or_bot)
diff --git a/code/game/objects/items/mail.dm b/code/game/objects/items/mail.dm
index 7470dd359fd..eeeaa086b99 100644
--- a/code/game/objects/items/mail.dm
+++ b/code/game/objects/items/mail.dm
@@ -64,8 +64,11 @@
ACCOUNT_SRV = COLOR_PALE_GREEN_GRAY,
ACCOUNT_CAR = COLOR_BEIGE,
ACCOUNT_SEC = COLOR_PALE_RED_GRAY,
+<<<<<<< HEAD
ACCOUNT_CMD = COLOR_BLUE_GRAY, // SKYRAT EDIT ADDITION
ACCOUNT_CCM = COLOR_DARK_MODERATE_LIME_GREEN, // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
// Icons
diff --git a/code/game/objects/items/melee/baton.dm b/code/game/objects/items/melee/baton.dm
index 6bef1b35f3b..66f3f04d225 100644
--- a/code/game/objects/items/melee/baton.dm
+++ b/code/game/objects/items/melee/baton.dm
@@ -26,7 +26,11 @@
/// The length of the knockdown applied to the user on clumsy_check()
var/clumsy_knockdown_time = 18 SECONDS
/// How much stamina damage we deal on a successful hit against a living, non-cyborg mob.
+<<<<<<< HEAD
var/stamina_damage = 35 // SKYRAT EDIT - Less Stamina Damage (Original: 55)
+=======
+ var/stamina_damage = 55
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Chance of causing force_say() when stunning a human mob
var/force_say_chance = 33
/// Can we stun cyborgs?
@@ -320,6 +324,10 @@
active = FALSE
pickup_sound = 'sound/items/stun_baton_pick_up.ogg'
drop_sound = 'sound/items/stun_baton_drop.ogg'
+<<<<<<< HEAD
+=======
+ sound_vary = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// The sound effecte played when our baton is extended.
var/on_sound = 'sound/weapons/batonextend.ogg'
@@ -393,7 +401,11 @@
force = 5
cooldown = 2.5 SECONDS
force_say_chance = 80 //very high force say chance because it's funny
+<<<<<<< HEAD
stamina_damage = 115 // SKYRAT EDIT: Original 85
+=======
+ stamina_damage = 85
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
clumsy_knockdown_time = 24 SECONDS
affect_cyborg = TRUE
on_stun_sound = 'sound/effects/contractorbatonhit.ogg'
@@ -425,7 +437,11 @@
armor_type = /datum/armor/baton_security
throwforce = 7
force_say_chance = 50
+<<<<<<< HEAD
stamina_damage = 35 // SKYRAT EDIT - 4 baton crit now (Original: 60)
+=======
+ stamina_damage = 60
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
knockdown_time = 5 SECONDS
clumsy_knockdown_time = 15 SECONDS
cooldown = 2.5 SECONDS
@@ -440,6 +456,10 @@
light_power = 0.5
pickup_sound = 'sound/items/stun_baton_pick_up.ogg'
drop_sound = 'sound/items/stun_baton_drop.ogg'
+<<<<<<< HEAD
+=======
+ sound_vary = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/throw_stun_chance = 35
@@ -627,7 +647,11 @@
*/
/obj/item/melee/baton/security/additional_effects_non_cyborg(mob/living/target, mob/living/user)
target.set_jitter_if_lower(40 SECONDS)
+<<<<<<< HEAD
// target.set_confusion_if_lower(10 SECONDS) // SKYRAT EDIT REMOVAL
+=======
+ target.set_confusion_if_lower(10 SECONDS)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
target.set_stutter_if_lower(16 SECONDS)
SEND_SIGNAL(target, COMSIG_LIVING_MINOR_SHOCK)
diff --git a/code/game/objects/items/melee/energy.dm b/code/game/objects/items/melee/energy.dm
index cb9cbb5fd82..d250ebb6a59 100644
--- a/code/game/objects/items/melee/energy.dm
+++ b/code/game/objects/items/melee/energy.dm
@@ -30,6 +30,7 @@
/// The heat given off when active.
var/active_heat = 3500
+<<<<<<< HEAD
// SKYRAT EDIT ADD START
/// The sound played when the item is turned on
@@ -40,6 +41,8 @@
// SKYRAT EDIT ADD END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/armor/melee_energy
fire = 100
acid = 30
diff --git a/code/game/objects/items/melee/misc.dm b/code/game/objects/items/melee/misc.dm
index 9e7e9cec7ee..01b186ede9a 100644
--- a/code/game/objects/items/melee/misc.dm
+++ b/code/game/objects/items/melee/misc.dm
@@ -164,10 +164,17 @@
user.death(FALSE)
REMOVE_TRAIT(src, TRAIT_NODROP, SABRE_SUICIDE_TRAIT)
+<<<<<<< HEAD
/obj/item/melee/parsnip_sabre
name = "parsnip sabre"
desc = "A weird, yet elegant weapon. Suprisingly sharp for something made from a parsnip."
+=======
+
+/obj/item/melee/parsnip_sabre
+ name = "parsnip sabre"
+ desc = "A weird, yet elegant weapon. Suprisingly sharp for something made from a parsnip."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon = 'icons/obj/weapons/sword.dmi'
icon_state = "parsnip_sabre"
inhand_icon_state = "parsnip_sabre"
diff --git a/code/game/objects/items/mop.dm b/code/game/objects/items/mop.dm
index 014eafd6510..40801a36d3e 100644
--- a/code/game/objects/items/mop.dm
+++ b/code/game/objects/items/mop.dm
@@ -16,7 +16,11 @@
resistance_flags = FLAMMABLE
var/mopcount = 0
///Maximum volume of reagents it can hold.
+<<<<<<< HEAD
var/max_reagent_volume = 50 // SKYRAT EDIT - ORIGINAL: 15
+=======
+ var/max_reagent_volume = 15
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/mopspeed = 1.5 SECONDS
force_string = "robust... against germs"
var/insertable = TRUE
@@ -78,7 +82,11 @@
/obj/item/mop/advanced
desc = "The most advanced tool in a custodian's arsenal, complete with a condenser for self-wetting! Just think of all the viscera you will clean up with this! Due to the self-wetting technology, it proves very inefficient for cleaning up spills." //SKYRAT EDIT
name = "advanced mop"
+<<<<<<< HEAD
max_reagent_volume = 100 // SKYRAT EDIT - ORIGINAL: 10
+=======
+ max_reagent_volume = 10
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "advmop"
inhand_icon_state = "advmop"
lefthand_file = 'icons/mob/inhands/equipment/custodial_lefthand.dmi'
diff --git a/code/game/objects/items/paint.dm b/code/game/objects/items/paint.dm
index 41c1809b558..895a7283686 100644
--- a/code/game/objects/items/paint.dm
+++ b/code/game/objects/items/paint.dm
@@ -108,7 +108,11 @@
return FALSE
if(!user.is_holding(src))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/items/pet_carrier.dm b/code/game/objects/items/pet_carrier.dm
index 9bc5189313d..66c986719a4 100644
--- a/code/game/objects/items/pet_carrier.dm
+++ b/code/game/objects/items/pet_carrier.dm
@@ -90,7 +90,11 @@
if(target.mob_size > max_occupant_weight)
if(ishuman(target))
var/mob/living/carbon/human/H = target
+<<<<<<< HEAD
if(isfeline(H)) // SKYRAT EDIT - FELINE TRAITS. Was: isfelinid(H)
+=======
+ if(isfelinid(H))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(user, span_warning("You'd need a lot of catnip and treats, plus maybe a laser pointer, for that to work."))
else
to_chat(user, span_warning("Humans, generally, do not fit into pet carriers."))
diff --git a/code/game/objects/items/pinpointer.dm b/code/game/objects/items/pinpointer.dm
index 5d7fc1957f4..91f88465fdc 100644
--- a/code/game/objects/items/pinpointer.dm
+++ b/code/game/objects/items/pinpointer.dm
@@ -152,7 +152,11 @@
return
if(isnull(names[pinpoint_target]))
return
+<<<<<<< HEAD
if(QDELETED(src) || !user || !user.is_holding(src) || user.incapacitated())
+=======
+ if(QDELETED(src) || !user || !user.is_holding(src) || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
target = names[pinpoint_target]
toggle_on()
diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm
index 95f46da2e10..40c69dfac9a 100644
--- a/code/game/objects/items/plushes.dm
+++ b/code/game/objects/items/plushes.dm
@@ -44,7 +44,11 @@
/obj/item/toy/plush/Initialize(mapload)
. = ..()
AddComponent(/datum/component/squeak, squeak_override)
+<<<<<<< HEAD
AddElement(/datum/element/bed_tuckable, mapload, 6, 7, 90)
+=======
+ AddElement(/datum/element/bed_tuckable, mapload, 6, -5, 90)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AddElement(/datum/element/toy_talk)
//have we decided if Pinocchio goes in the blue or pink aisle yet?
diff --git a/code/game/objects/items/rcd/RCD.dm b/code/game/objects/items/rcd/RCD.dm
index 669d7e3bab6..407d713e5ae 100644
--- a/code/game/objects/items/rcd/RCD.dm
+++ b/code/game/objects/items/rcd/RCD.dm
@@ -80,10 +80,13 @@
GLOB.rcd_list -= src
. = ..()
+<<<<<<< HEAD
/obj/item/construction/rcd/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/construction/rcd/ui_action_click(mob/user, actiontype)
if (!COOLDOWN_FINISHED(src, destructive_scan_cooldown))
to_chat(user, span_warning("[src] lets out a low buzz."))
@@ -348,6 +351,10 @@
return data
/obj/item/construction/rcd/handle_ui_act(action, params, datum/tgui/ui, datum/ui_state/state)
+<<<<<<< HEAD
+=======
+ playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
switch(action)
if("root_category")
diff --git a/code/game/objects/items/rcd/RHD.dm b/code/game/objects/items/rcd/RHD.dm
index 64179a81b5f..156def8be08 100644
--- a/code/game/objects/items/rcd/RHD.dm
+++ b/code/game/objects/items/rcd/RHD.dm
@@ -292,7 +292,11 @@
/obj/item/construction/proc/check_menu(mob/living/user, remote_anchor)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(remote_anchor && user.remote_control != remote_anchor)
return FALSE
diff --git a/code/game/objects/items/rcd/RLD.dm b/code/game/objects/items/rcd/RLD.dm
index 6156cd0ee73..363100c5fbc 100644
--- a/code/game/objects/items/rcd/RLD.dm
+++ b/code/game/objects/items/rcd/RLD.dm
@@ -166,7 +166,11 @@
return ITEM_INTERACT_BLOCKING
activate()
var/obj/machinery/light/L = new /obj/machinery/light(get_turf(winner))
+<<<<<<< HEAD
L.setDir(get_dir(interacting_with, winner))
+=======
+ L.setDir(get_dir(winner, interacting_with))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
L.color = color_choice
L.set_light_color(color_choice)
return ITEM_INTERACT_SUCCESS
diff --git a/code/game/objects/items/rcd/RPD.dm b/code/game/objects/items/rcd/RPD.dm
index 642bbc70623..91576e23683 100644
--- a/code/game/objects/items/rcd/RPD.dm
+++ b/code/game/objects/items/rcd/RPD.dm
@@ -59,6 +59,11 @@ GLOBAL_LIST_INIT(disposal_pipe_recipes, list(
new /datum/pipe_info/disposal("Sort Junction", /obj/structure/disposalpipe/sorting/mail, PIPE_TRIN_M),
new /datum/pipe_info/disposal("Rotator", /obj/structure/disposalpipe/rotator, PIPE_ONEDIR_FLIPPABLE),
new /datum/pipe_info/disposal("Trunk", /obj/structure/disposalpipe/trunk),
+<<<<<<< HEAD
+=======
+ new /datum/pipe_info/disposal("Down Turn", /obj/structure/disposalpipe/trunk/multiz/down),
+ new /datum/pipe_info/disposal("Up Turn", /obj/structure/disposalpipe/trunk/multiz),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /datum/pipe_info/disposal("Bin", /obj/machinery/disposal/bin, PIPE_ONEDIR),
new /datum/pipe_info/disposal("Outlet", /obj/structure/disposaloutlet),
new /datum/pipe_info/disposal("Chute", /obj/machinery/disposal/delivery_chute),
@@ -361,12 +366,22 @@ GLOBAL_LIST_INIT(transit_tube_recipes, list(
data["init_directions"] = init_directions
return data
+<<<<<<< HEAD
/obj/item/pipe_dispenser/ui_act(action, params)
. = ..()
playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
if(.)
return
+=======
+/obj/item/pipe_dispenser/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ if(.)
+ return
+
+ playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/playeffect = TRUE
switch(action)
if("color")
@@ -686,7 +701,11 @@ GLOBAL_LIST_INIT(transit_tube_recipes, list(
if(multi_layer)
balloon_alert(source_mob, "turn off multi layer!")
return
+<<<<<<< HEAD
if(source_mob.incapacitated(IGNORE_RESTRAINTS|IGNORE_STASIS))
+=======
+ if(INCAPACITATED_IGNORING(source_mob, INCAPABLE_RESTRAINTS|INCAPABLE_STASIS))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(source_mob.get_active_held_item() != src)
return
diff --git a/code/game/objects/items/rcd/RPLD.dm b/code/game/objects/items/rcd/RPLD.dm
index d45ae8cf1a4..35831737607 100644
--- a/code/game/objects/items/rcd/RPLD.dm
+++ b/code/game/objects/items/rcd/RPLD.dm
@@ -12,6 +12,12 @@
banned_upgrades = RCD_ALL_UPGRADES & ~RCD_UPGRADE_SILO_LINK
matter = 200
max_matter = 200
+<<<<<<< HEAD
+=======
+ drop_sound = 'sound/items/handling/rcd_drop.ogg'
+ pickup_sound = 'sound/items/handling/rcd_pickup.ogg'
+ sound_vary = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
///category of design selected
var/selected_category
@@ -63,6 +69,7 @@
/obj/machinery/plumbing/pill_press = 20,
/obj/machinery/iv_drip/plumbing = 20
),
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - static list so we have no choice but to skyrat edit these here
//category 4 liquids
@@ -70,6 +77,8 @@
/obj/structure/drain = 5,
),
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/obj/item/construction/plumbing/Initialize(mapload)
@@ -159,11 +168,17 @@
return data
+<<<<<<< HEAD
/obj/item/construction/plumbing/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
/obj/item/construction/plumbing/handle_ui_act(action, params, datum/tgui/ui, datum/ui_state/state)
+=======
+/obj/item/construction/plumbing/handle_ui_act(action, params, datum/tgui/ui, datum/ui_state/state)
+ playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
switch(action)
if("color")
var/color = params["paint_color"]
@@ -294,7 +309,11 @@
/obj/item/construction/plumbing/proc/mouse_wheeled(mob/source, atom/A, delta_x, delta_y, params)
SIGNAL_HANDLER
+<<<<<<< HEAD
if(source.incapacitated(IGNORE_RESTRAINTS|IGNORE_STASIS))
+=======
+ if(INCAPACITATED_IGNORING(source, INCAPABLE_RESTRAINTS|INCAPABLE_STASIS))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(delta_y == 0)
return
@@ -345,6 +364,7 @@
/obj/machinery/plumbing/tank = 20,
/obj/machinery/plumbing/acclimator = 10,
),
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - static list so we have no choice but to skyrat edit these here
//category 4 liquids
@@ -352,6 +372,8 @@
/obj/structure/drain = 5,
),
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
/obj/item/construction/plumbing/service/Initialize(mapload)
diff --git a/code/game/objects/items/rcd/RSF.dm b/code/game/objects/items/rcd/RSF.dm
index ee85994143a..e3d27620ce9 100644
--- a/code/game/objects/items/rcd/RSF.dm
+++ b/code/game/objects/items/rcd/RSF.dm
@@ -121,7 +121,7 @@ RSF
return radial_list
/obj/item/rsf/proc/check_menu(mob/user)
- if(user.incapacitated() || !user.Adjacent(src))
+ if(user.incapacitated || !user.Adjacent(src))
return FALSE
return TRUE
diff --git a/code/game/objects/items/rcd/RTD.dm b/code/game/objects/items/rcd/RTD.dm
index 45b9c9e3687..372de22dd36 100644
--- a/code/game/objects/items/rcd/RTD.dm
+++ b/code/game/objects/items/rcd/RTD.dm
@@ -24,6 +24,12 @@
item_flags = NO_MAT_REDEMPTION | NOBLUDGEON
has_ammobar = TRUE
banned_upgrades = RCD_ALL_UPGRADES & ~RCD_UPGRADE_SILO_LINK
+<<<<<<< HEAD
+=======
+ drop_sound = 'sound/items/handling/rcd_drop.ogg'
+ pickup_sound = 'sound/items/handling/rcd_pickup.ogg'
+ sound_vary = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// main category for tile design
var/root_category = "Conventional"
@@ -195,6 +201,10 @@
return data
/obj/item/construction/rtd/handle_ui_act(action, params, datum/tgui/ui, datum/ui_state/state)
+<<<<<<< HEAD
+=======
+ playsound(src, SFX_TOOL_SWITCH, 20, TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/floor_designs = GLOB.floor_designs
switch(action)
diff --git a/code/game/objects/items/rcd/RWD.dm b/code/game/objects/items/rcd/RWD.dm
index 0ee29e87a35..ab9ca7f9f9c 100644
--- a/code/game/objects/items/rcd/RWD.dm
+++ b/code/game/objects/items/rcd/RWD.dm
@@ -152,7 +152,11 @@
if(!ISADVANCEDTOOLUSER(user))
to_chat(user, span_warning("You don't have the dexterity to do this!"))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.Adjacent(src))
+=======
+ if(user.incapacitated || !user.Adjacent(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/items/religion.dm b/code/game/objects/items/religion.dm
index 63e1c19c64a..24c1a0fbfbf 100644
--- a/code/game/objects/items/religion.dm
+++ b/code/game/objects/items/religion.dm
@@ -225,7 +225,11 @@
/obj/item/banner/command/Initialize(mapload)
. = ..()
+<<<<<<< HEAD
job_loyalties = DEPARTMENT_BITFLAG_COMMAND | DEPARTMENT_BITFLAG_CENTRAL_COMMAND //SKYRAT EDIT ADDITION
+=======
+ job_loyalties = DEPARTMENT_BITFLAG_COMMAND
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/banner/command/mundane
inspiration_available = FALSE
diff --git a/code/game/objects/items/robot/items/hypo.dm b/code/game/objects/items/robot/items/hypo.dm
index 09d9c7a9afc..30346240f5e 100644
--- a/code/game/objects/items/robot/items/hypo.dm
+++ b/code/game/objects/items/robot/items/hypo.dm
@@ -6,9 +6,14 @@
/datum/reagent/medicine/c2/libital,\
/datum/reagent/medicine/c2/multiver,\
/datum/reagent/medicine/salglu_solution,\
+<<<<<<< HEAD
/datum/reagent/medicine/spaceacillin,\
/datum/reagent/medicine/lidocaine\
) //SKYRAT EDIT line 10 added Lidocaine
+=======
+ /datum/reagent/medicine/spaceacillin\
+ )
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#define EXPANDED_MEDICAL_REAGENTS list(\
/datum/reagent/medicine/haloperidol,\
/datum/reagent/medicine/inacusiate,\
@@ -226,7 +231,11 @@
/obj/item/reagent_containers/borghypo/attack_self(mob/user)
ui_interact(user)
+<<<<<<< HEAD
/obj/item/reagent_containers/borghypo/ui_act(action, params)
+=======
+/obj/item/reagent_containers/borghypo/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -248,12 +257,18 @@
. += "Currently loaded: [selected_reagent ? "[selected_reagent]. [selected_reagent.description]" : "nothing."]"
. += span_notice("Alt+Click to change transfer amount. Currently set to [amount_per_transfer_from_this]u.")
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL START - SEE master_files/code/modules/reagents/reagent_containers.dm
/obj/item/reagent_containers/borghypo/click_alt(mob/living/user)
change_transfer_amount(user)
return CLICK_ACTION_SUCCESS
SKYRAT EDIT REMOVAL END */
+=======
+/obj/item/reagent_containers/borghypo/click_alt(mob/living/user)
+ change_transfer_amount(user)
+ return CLICK_ACTION_SUCCESS
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Default Medborg Hypospray
/obj/item/reagent_containers/borghypo/medical
@@ -486,8 +501,13 @@ SKYRAT EDIT REMOVAL END */
/obj/item/reagent_containers/borghypo/borgshaker/hacked
name = "cyborg shaker"
desc = "Will mix drinks that knock them dead."
+<<<<<<< HEAD
icon = 'icons/obj/drinks/mixed_drinks.dmi'
icon_state = "threemileislandglass"
+=======
+ icon_state = "threemileislandglass"
+ icon = 'icons/obj/drinks/mixed_drinks.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
tgui_theme = "syndicate"
dispensed_temperature = WATER_MATTERSTATE_CHANGE_TEMP
default_reagent_types = HACKED_SERVICE_REAGENTS
diff --git a/code/game/objects/items/robot/robot_parts.dm b/code/game/objects/items/robot/robot_parts.dm
index 7e954fbcec5..4bf9ff16aa3 100644
--- a/code/game/objects/items/robot/robot_parts.dm
+++ b/code/game/objects/items/robot/robot_parts.dm
@@ -409,7 +409,11 @@
data["lawsync"] = lawsync
return data
+<<<<<<< HEAD
/obj/item/robot_suit/ui_act(action, list/params)
+=======
+/obj/item/robot_suit/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/robot/robot_upgrades.dm b/code/game/objects/items/robot/robot_upgrades.dm
index 2bcd23c8379..d2fb5f51480 100644
--- a/code/game/objects/items/robot/robot_upgrades.dm
+++ b/code/game/objects/items/robot/robot_upgrades.dm
@@ -587,6 +587,7 @@
to_chat(usr, span_warning("This unit already has an expand module installed!"))
return FALSE
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN
var/resize_amount = 1.25
if(TRAIT_R_WIDE in borg.model.model_features)
@@ -594,6 +595,8 @@
if(TRAIT_R_TALL in borg.model.model_features)
resize_amount = 1.05
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ADD_TRAIT(borg, TRAIT_NO_TRANSFORM, REF(src))
var/prev_lockcharge = borg.lockcharge
borg.SetLockdown(TRUE)
@@ -610,7 +613,11 @@
borg.set_anchored(FALSE)
REMOVE_TRAIT(borg, TRAIT_NO_TRANSFORM, REF(src))
borg.hasExpanded = TRUE
+<<<<<<< HEAD
borg.update_transform(resize_amount) // SKYRAT EDIT CHANGE - ORIGINAL: borg.update_transform(2)
+=======
+ borg.update_transform(2)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/borg/upgrade/expand/deactivate(mob/living/silicon/robot/borg, mob/living/user = usr)
. = ..()
@@ -618,7 +625,11 @@
return .
if (borg.hasExpanded)
borg.hasExpanded = FALSE
+<<<<<<< HEAD
borg.update_transform(0.8) // SKYRAT EDIT CHANGE - ORIGINAL: borg.update_transform(0.5)
+=======
+ borg.update_transform(0.5)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/borg/upgrade/rped
name = "engineering cyborg RPED"
diff --git a/code/game/objects/items/scrolls.dm b/code/game/objects/items/scrolls.dm
index 65d9000728d..f2d6e924a7f 100644
--- a/code/game/objects/items/scrolls.dm
+++ b/code/game/objects/items/scrolls.dm
@@ -55,7 +55,11 @@
if(!ishuman(user))
return
var/mob/living/carbon/human/human_user = user
+<<<<<<< HEAD
if(human_user.incapacitated() || !human_user.is_holding(src))
+=======
+ if(human_user.incapacitated || !human_user.is_holding(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
var/datum/action/cooldown/spell/teleport/area_teleport/wizard/scroll/teleport = locate() in actions
if(!teleport)
diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm
index 873ddb9acf1..aad53d55e4f 100644
--- a/code/game/objects/items/stacks/sheets/sheet_types.dm
+++ b/code/game/objects/items/stacks/sheets/sheet_types.dm
@@ -251,8 +251,12 @@ GLOBAL_LIST_INIT(metal_recipes, list ( \
if(get_amount() < 2)
user.balloon_alert(user, "not enough material!")
return ITEM_INTERACT_BLOCKING
+<<<<<<< HEAD
var/skill_modifier = user.mind.get_skill_modifier(/datum/skill/construction, SKILL_SPEED_MODIFIER) //SKYRAT EDIT: Construction Skill
if(!do_after(user, 4 SECONDS * skill_modifier, build_on))
+=======
+ if(!do_after(user, 4 SECONDS, build_on))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ITEM_INTERACT_BLOCKING
if(build_on.is_blocked_turf())
user.balloon_alert(user, "something is blocking the tile!")
@@ -261,7 +265,10 @@ GLOBAL_LIST_INIT(metal_recipes, list ( \
user.balloon_alert(user, "not enough material!")
return ITEM_INTERACT_BLOCKING
new/obj/structure/girder/displaced(build_on)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT: Construction Skill
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return ITEM_INTERACT_SUCCESS
/*
@@ -352,7 +359,11 @@ GLOBAL_LIST_INIT(wood_recipes, list ( \
new/datum/stack_recipe("loom", /obj/structure/loom, 10, time = 1.5 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND, category = CAT_TOOLS), \
new/datum/stack_recipe("mortar", /obj/item/reagent_containers/cup/mortar, 3, crafting_flags = NONE, category = CAT_CHEMISTRY), \
new/datum/stack_recipe("firebrand", /obj/item/match/firebrand, 2, time = 10 SECONDS, crafting_flags = NONE, category = CAT_TOOLS), \
+<<<<<<< HEAD
new/datum/stack_recipe("bonfire", /obj/structure/bonfire/player_made, 10, time = 6 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND, category = CAT_TOOLS), /* SKYRAT EDIT - Pollution - ORIGINAL: /obj/structure/bonfire */ \
+=======
+ new/datum/stack_recipe("bonfire", /obj/structure/bonfire, 10, time = 6 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND, category = CAT_TOOLS), \
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new/datum/stack_recipe("easel", /obj/structure/easel, 5, time = 1 SECONDS, crafting_flags = CRAFT_CHECK_DENSITY | CRAFT_ONE_PER_TURF | CRAFT_ON_SOLID_GROUND, category = CAT_ENTERTAINMENT), \
new/datum/stack_recipe("noticeboard", /obj/item/wallframe/noticeboard, 1, time = 1 SECONDS, crafting_flags = NONE, category = CAT_FURNITURE), \
new/datum/stack_recipe("test tube rack", /obj/item/storage/test_tube_rack, 1, time = 1 SECONDS, crafting_flags = NONE, category = CAT_CHEMISTRY), \
@@ -452,6 +463,11 @@ GLOBAL_LIST_INIT(bamboo_recipes, list ( \
grind_results = list(/datum/reagent/cellulose = 10)
material_type = /datum/material/bamboo
walltype = /turf/closed/wall/mineral/bamboo
+<<<<<<< HEAD
+=======
+ drop_sound = null
+ pickup_sound = null
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/datum/armor/mineral_bamboo
fire = 50
@@ -817,6 +833,8 @@ GLOBAL_LIST_INIT(bronze_recipes, list ( \
grind_results = list(/datum/reagent/carbon = 10)
merge_type = /obj/item/stack/sheet/bone
material_type = /datum/material/bone
+ drop_sound = null
+ pickup_sound = null
/obj/item/stack/sheet/bone/Initialize(mapload, new_amount, merge, list/mat_override, mat_amt)
. = ..()
@@ -830,7 +848,10 @@ GLOBAL_LIST_INIT(bronze_recipes, list ( \
/datum/crafting_recipe/bonespear,
/datum/crafting_recipe/bracers,
/datum/crafting_recipe/skullhelm,
+<<<<<<< HEAD
/datum/crafting_recipe/ash_recipe/bone_greaves, /* SKYRAT EDIT ADDITION */
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
AddElement(
@@ -890,6 +911,8 @@ new /datum/stack_recipe("paper frame door", /obj/structure/mineral_door/paperfra
resistance_flags = FLAMMABLE
grind_results = list(/datum/reagent/cellulose = 20)
material_type = /datum/material/paper
+ drop_sound = null
+ pickup_sound = null
/obj/item/stack/sheet/paperframes/get_main_recipes()
. = ..()
@@ -911,6 +934,8 @@ new /datum/stack_recipe("paper frame door", /obj/structure/mineral_door/paperfra
merge_type = /obj/item/stack/sheet/meat
material_type = /datum/material/meat
material_modifier = 1 //None of that wussy stuff
+ drop_sound = null
+ pickup_sound = null
/obj/item/stack/sheet/meat/fifty
amount = 50
@@ -928,6 +953,8 @@ new /datum/stack_recipe("paper frame door", /obj/structure/mineral_door/paperfra
merge_type = /obj/item/stack/sheet/pizza
material_type = /datum/material/pizza
material_modifier = 1
+ drop_sound = null
+ pickup_sound = null
/obj/item/stack/sheet/pizza/fifty
amount = 50
diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm
index c96cebd58cc..d1b1551e26e 100644
--- a/code/game/objects/items/stacks/stack.dm
+++ b/code/game/objects/items/stacks/stack.dm
@@ -302,7 +302,11 @@
data["recipes"] = recursively_build_recipes(recipes)
return data
+<<<<<<< HEAD
/obj/item/stack/ui_act(action, params)
+=======
+/obj/item/stack/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -369,7 +373,11 @@
/obj/item/stack/proc/radial_check(mob/builder)
if(QDELETED(builder) || QDELETED(src))
return FALSE
+<<<<<<< HEAD
if(builder.incapacitated())
+=======
+ if(builder.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(!builder.is_holding(src))
return FALSE
@@ -400,8 +408,12 @@
adjusted_time = (recipe.time * recipe.trait_modifier)
else
adjusted_time = recipe.time
+<<<<<<< HEAD
var/skill_modifier = builder.mind.get_skill_modifier(/datum/skill/construction, SKILL_SPEED_MODIFIER) //SKYRAT EDIT: Construction Skill
if(!do_after(builder, adjusted_time * skill_modifier, target = builder))
+=======
+ if(!do_after(builder, adjusted_time, target = builder))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
builder.balloon_alert(builder, "interrupted!")
return
if(!building_checks(builder, recipe, multiplier))
@@ -430,12 +442,19 @@
SEND_SIGNAL(created, COMSIG_ATOM_CONSTRUCTED, builder)
on_item_crafted(builder, created)
+<<<<<<< HEAD
builder.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT: Construction Skill
// Use up the material
use(recipe.req_amount * multiplier)
builder.investigate_log("crafted [recipe.title]", INVESTIGATE_CRAFTING)
+=======
+ // Use up the material
+ use(recipe.req_amount * multiplier)
+ builder.investigate_log("crafted [recipe.title]", INVESTIGATE_CRAFTING)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Apply mat datums
if((recipe.crafting_flags & CRAFT_APPLIES_MATS) && LAZYLEN(mats_per_unit))
if(isstack(created))
diff --git a/code/game/objects/items/stacks/wrap.dm b/code/game/objects/items/stacks/wrap.dm
index bf8d17822bd..d66a33cca6e 100644
--- a/code/game/objects/items/stacks/wrap.dm
+++ b/code/game/objects/items/stacks/wrap.dm
@@ -84,7 +84,10 @@
parcel.base_icon_state = "deliverypackage5"
parcel.update_icon()
user.forceMove(parcel)
+<<<<<<< HEAD
parcel.contains_mobs = TRUE // SKYRAT EDIT - CARGO BORGS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
parcel.add_fingerprint(user)
return OXYLOSS
else
@@ -115,10 +118,13 @@
return NONE
if(interacting_with.anchored)
return NONE
+<<<<<<< HEAD
// SKYRAT EDIT START - Cargo borgs
if(!amount)
return
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(isitem(interacting_with))
var/obj/item/item = interacting_with
@@ -162,12 +168,15 @@
closet.forceMove(parcel)
parcel.add_fingerprint(user)
closet.add_fingerprint(user)
+<<<<<<< HEAD
// SKYRAT EDIT START - CARGO BORGS
for(var/item in closet.get_all_contents())
if(istype(item, /mob))
parcel.contains_mobs = TRUE
break
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
balloon_alert(user, "not enough paper!")
return ITEM_INTERACT_BLOCKING
diff --git a/code/game/objects/items/stickers.dm b/code/game/objects/items/stickers.dm
index 19ac58f6f40..d465d831fc5 100644
--- a/code/game/objects/items/stickers.dm
+++ b/code/game/objects/items/stickers.dm
@@ -30,8 +30,15 @@
/// `list` or `null`, contains possible alternate `icon_states`.
var/list/icon_states
+<<<<<<< HEAD
/// Whether sticker is legal and allowed to generate inside non-syndicate boxes.
var/contraband = FALSE
+=======
+ /// This sticker won't be generated inside random sticker packs.
+ var/exclude_from_random = FALSE
+ /// Text added to the atom's examine when stickered.
+ var/examine_text
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/sticker/Initialize(mapload)
. = ..()
@@ -85,7 +92,11 @@
user.log_message("stuck [src] to [key_name(victim)]", LOG_ATTACK)
victim.log_message("had [src] stuck to them by [key_name(user)]", LOG_ATTACK)
+<<<<<<< HEAD
target.AddComponent(/datum/component/sticker, src, get_dir(target, src), px, py)
+=======
+ target.AddComponent(/datum/component/sticker, src, get_dir(target, src), px, py, null, null, examine_text)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
#undef MAX_STICKER_COUNT
@@ -123,6 +134,10 @@
name = "blue R sticker"
desc = "A sticker of FUCK THE SYSTEM, the galaxy's premiere hardcore punk band."
icon_state = "revhead"
+<<<<<<< HEAD
+=======
+ examine_text = "There is a sticker displaying FUCK THE SYSTEM , the galaxy's premiere hardcore punk band."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/sticker/pslime
name = "slime plushie sticker"
@@ -149,6 +164,15 @@
name = "toolbox sticker"
icon_state = "soul"
+<<<<<<< HEAD
+=======
+/obj/item/sticker/chief_engineer
+ name = "CE approved sticker"
+ icon_state = "ce_approved"
+ exclude_from_random = TRUE
+ examine_text = "There is a sticker displaying the Chief Engineer's SEAL OF APPROVAL. "
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/sticker/clown
name = "clown sticker"
icon_state = "honkman"
@@ -164,15 +188,27 @@
/obj/item/sticker/skub
name = "skub sticker"
icon_state = "skub"
+<<<<<<< HEAD
+=======
+ examine_text = "There is a sticker displaying Skubtide, Stationwide! "
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/sticker/anti_skub
name = "anti-skub sticker"
icon_state = "anti_skub"
+<<<<<<< HEAD
+=======
+ examine_text = "There is an anti-skub sticker."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/sticker/syndicate
name = "syndicate sticker"
icon_state = "synd"
+<<<<<<< HEAD
contraband = TRUE
+=======
+ exclude_from_random = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/sticker/syndicate/Initialize(mapload)
. = ..()
diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm
index 4199b544f81..b8d0854a3aa 100644
--- a/code/game/objects/items/storage/backpack.dm
+++ b/code/game/objects/items/storage/backpack.dm
@@ -384,7 +384,11 @@
/obj/item/storage/backpack/satchel/flat/Initialize(mapload)
. = ..()
+<<<<<<< HEAD
AddElement(/datum/element/undertile, TRAIT_T_RAY_VISIBLE, INVISIBILITY_MAXIMUM, use_anchor = TRUE) // SKYRAT EDIT - Ghosts can't see smuggler's satchels
+=======
+ AddElement(/datum/element/undertile, TRAIT_T_RAY_VISIBLE, INVISIBILITY_OBSERVER, use_anchor = TRUE)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
atom_storage.max_total_storage = 15
atom_storage.set_holdable(cant_hold_list = /obj/item/storage/backpack/satchel/flat) //muh recursive backpacks
ADD_TRAIT(src, TRAIT_CONTRABAND_BLOCKER, INNATE_TRAIT)
@@ -644,6 +648,7 @@
// Faster unzipping. Utilizes the same noise as zipping up to fit the unzip duration.
unzip_duration = 0.5 SECONDS
unzip_sfx = 'sound/items/zip_up.ogg'
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE START - It's just a black duffel.
/obj/item/storage/backpack/duffelbag/syndie
@@ -652,6 +657,8 @@
special_desc_requirement = EXAMINE_CHECK_SYNDICATE
special_desc = "This duffel bag has the Syndicate logo stiched on the inside. It appears to be made from lighter yet sturdier materials, and features an oiled plastitanium zipper for maximum speed tactical zipping."
//SKYRAT EDIT CHANGE END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/backpack/duffelbag/syndie/hitman
desc = "A large duffel bag for holding extra things. There is a Nanotrasen logo on the back."
diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm
index 996cd933647..fe8b6c3ed4a 100644
--- a/code/game/objects/items/storage/bags.dm
+++ b/code/game/objects/items/storage/bags.dm
@@ -274,6 +274,11 @@
. += span_notice("Ctrl-click to activate seed extraction.")
/obj/item/storage/bag/plants/portaseeder/item_ctrl_click(mob/user)
+<<<<<<< HEAD
+=======
+ if(user.incapacitated)
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/obj/item/plant in contents)
seedify(plant, 1)
return CLICK_ACTION_SUCCESS
@@ -581,7 +586,11 @@
worn_icon_state = "rebar_quiver"
inhand_icon_state = "rebar_quiver"
desc = "A oxygen tank cut in half, used for holding sharpened rods for the rebar crossbow."
+<<<<<<< HEAD
slot_flags = ITEM_SLOT_BACK|ITEM_SLOT_SUITSTORE
+=======
+ slot_flags = ITEM_SLOT_BACK|ITEM_SLOT_SUITSTORE|ITEM_SLOT_NECK
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
resistance_flags = FLAMMABLE
/obj/item/storage/bag/rebar_quiver/Initialize(mapload)
@@ -598,4 +607,62 @@
/obj/item/ammo_casing/rebar/paperball,
))
+<<<<<<< HEAD
+=======
+/obj/item/storage/bag/rebar_quiver/syndicate
+ icon_state = "syndie_quiver_0"
+ worn_icon_state = "syndie_quiver_0"
+ inhand_icon_state = "holyquiver"
+ desc = "A specialized quiver meant to hold any kind of bolts intended for use with the rebar crossbow. \
+ Clearly a better design than a cut up oxygen tank..."
+ slot_flags = ITEM_SLOT_NECK
+ w_class = WEIGHT_CLASS_SMALL
+ resistance_flags = LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
+ actions_types = list(/datum/action/item_action/reload_rebar)
+
+/obj/item/storage/bag/rebar_quiver/syndicate/Initialize(mapload)
+ . = ..()
+ atom_storage.max_slots = 20
+ atom_storage.max_total_storage = 20
+ update_appearance(UPDATE_OVERLAYS)
+
+/obj/item/storage/bag/rebar_quiver/syndicate/PopulateContents()
+ for(var/to_fill in 1 to 20)
+ new /obj/item/ammo_casing/rebar/syndie(src)
+
+/obj/item/storage/bag/rebar_quiver/syndicate/update_icon_state()
+ . = ..()
+ switch(contents.len)
+ if(0)
+ icon_state = "syndie_quiver_0"
+ if(1 to 7)
+ icon_state = "syndie_quiver_1"
+ if(8 to 13)
+ icon_state = "syndie_quiver_2"
+ if(14 to 20)
+ icon_state = "syndie_quiver_3"
+
+/obj/item/storage/bag/rebar_quiver/syndicate/ui_action_click(mob/user, actiontype)
+ if(istype(actiontype, /datum/action/item_action/reload_rebar))
+ reload_held_rebar(user)
+
+/obj/item/storage/bag/rebar_quiver/syndicate/proc/reload_held_rebar(mob/user)
+ if(!contents.len)
+ user.balloon_alert(user, "no bolts left!")
+ return
+ var/obj/held_item = user.get_active_held_item()
+ if(!held_item || !istype(held_item, /obj/item/gun/ballistic/rifle/rebarxbow))
+ user.balloon_alert(user, "no held crossbow!")
+ return
+ var/obj/item/gun/ballistic/rifle/rebarxbow/held_crossbow = held_item
+ if(held_crossbow.magazine.contents.len >= held_crossbow.magazine.max_ammo)
+ user.balloon_alert(user, "no more room!")
+ return
+ if(!do_after(user, 0.8 SECONDS, user, IGNORE_USER_LOC_CHANGE))
+ return
+
+ var/obj/item/ammo_casing/rebar/ammo_to_load = contents[1]
+ held_crossbow.attackby(ammo_to_load, user)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
#undef ORE_BAG_BALOON_COOLDOWN
diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm
index 15ad117f722..136f72b3eda 100644
--- a/code/game/objects/items/storage/belt.dm
+++ b/code/game/objects/items/storage/belt.dm
@@ -96,18 +96,30 @@
SSwardrobe.provide_type(/obj/item/multitool, src)
SSwardrobe.provide_type(/obj/item/stack/cable_coil, src)
SSwardrobe.provide_type(/obj/item/extinguisher/mini, src)
+<<<<<<< HEAD
SSwardrobe.provide_type(/obj/item/analyzer/ranged, src) //SKYRAT EDIT - Ranged Analyzer for CE - ORIGINAL: SSwardrobe.provide_type(/obj/item/analyzer, src)
+=======
+ SSwardrobe.provide_type(/obj/item/analyzer, src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//much roomier now that we've managed to remove two tools
/obj/item/storage/belt/utility/chief/full/get_types_to_preload()
var/list/to_preload = list() //Yes this is a pain. Yes this is the point
to_preload += /obj/item/screwdriver/power
to_preload += /obj/item/crowbar/power
+<<<<<<< HEAD
to_preload += /obj/item/weldingtool/electric // SKYRAT EDIT - Electric welder
to_preload += /obj/item/multitool
to_preload += /obj/item/stack/cable_coil
to_preload += /obj/item/extinguisher/mini
to_preload += /obj/item/analyzer/ranged // SKYRAT EDIT - Ranged Analyzer for CE
+=======
+ to_preload += /obj/item/weldingtool/experimental
+ to_preload += /obj/item/multitool
+ to_preload += /obj/item/stack/cable_coil
+ to_preload += /obj/item/extinguisher/mini
+ to_preload += /obj/item/analyzer
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return to_preload
/obj/item/storage/belt/utility/full/PopulateContents()
@@ -136,7 +148,11 @@
/obj/item/storage/belt/utility/full/powertools/PopulateContents()
new /obj/item/screwdriver/power(src)
new /obj/item/crowbar/power(src)
+<<<<<<< HEAD
new /obj/item/weldingtool/electric(src) // SKYRAT EDIT - original: new /obj/item/weldingtool/experimental(src)
+=======
+ new /obj/item/weldingtool/experimental(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/multitool(src)
new /obj/item/holosign_creator/atmos(src)
new /obj/item/extinguisher/mini(src)
@@ -246,7 +262,10 @@
/obj/item/clothing/mask/breath,
/obj/item/clothing/mask/muzzle,
/obj/item/clothing/mask/surgical,
+<<<<<<< HEAD
/obj/item/clothing/suit/toggle/labcoat/hospitalgown, //SKYRAT EDIT ADDITION - adds surgery gowns to belts
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/clothing/head/utility/surgerycap,
/obj/item/construction/plumbing,
/obj/item/dnainjector,
@@ -257,8 +276,11 @@
/obj/item/healthanalyzer,
/obj/item/hemostat,
/obj/item/holosign_creator/medical,
+<<<<<<< HEAD
/obj/item/hypospray/mkii, //SKYRAT EDIT ADDITION - HYPOSPRAYS
/obj/item/storage/hypospraykit/, //SKYRAT EDIT ADDITION - HYPOSPRAYS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/implant,
/obj/item/implantcase,
/obj/item/implanter,
@@ -271,7 +293,10 @@
/obj/item/reagent_containers/dropper,
/obj/item/reagent_containers/cup/beaker,
/obj/item/reagent_containers/cup/bottle,
+<<<<<<< HEAD
/obj/item/reagent_containers/cup/vial, //SKYRAT EDIT ADDITION - HYPOSPRAYS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/reagent_containers/cup/tube,
/obj/item/reagent_containers/hypospray,
/obj/item/reagent_containers/medigel,
@@ -290,8 +315,11 @@
/obj/item/surgical_drapes, //for true paramedics
/obj/item/surgicaldrill,
/obj/item/tank/internals/emergency_oxygen,
+<<<<<<< HEAD
/obj/item/weaponcell/medical, //SKYRAT EDIT MEDIGUNS
/obj/item/handheld_soulcatcher, // SKYRAT EDIT SOULCATCHERS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/wrench/medical,
/obj/item/knife/ritual,
))
@@ -389,7 +417,10 @@
/obj/item/flashlight/seclite,
/obj/item/food/donut,
/obj/item/grenade,
+<<<<<<< HEAD
/obj/item/gun, //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/holosign_creator/security,
/obj/item/knife/combat,
/obj/item/melee/baton,
@@ -397,8 +428,12 @@
/obj/item/reagent_containers/spray/pepper,
/obj/item/restraints/handcuffs,
/obj/item/restraints/legcuffs/bola,
+<<<<<<< HEAD
/obj/item/stock_parts/power_store/cell/microfusion, //SKYRAT EDIT ADDITION
))
+=======
+ ))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
atom_storage.open_sound = 'sound/items/holster.ogg'
atom_storage.open_sound_vary = TRUE
atom_storage.rustle_sound = FALSE
@@ -727,12 +762,18 @@
/obj/item/key/janitor,
/obj/item/lightreplacer,
/obj/item/melee/flyswatter,
+<<<<<<< HEAD
/obj/item/mop, //SKYRAT EDIT - For when you're lazy to use soap
/obj/item/mop/advanced, //SKYRAT EDIT For when you're lazy to use a bucket
/obj/item/paint/paint_remover,
/obj/item/plunger,
/obj/item/pushbroom,
/obj/item/reagent_containers/cup/bucket, //SKYRAT EDIT - Bucket
+=======
+ /obj/item/paint/paint_remover,
+ /obj/item/plunger,
+ /obj/item/pushbroom,
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/reagent_containers/spray,
/obj/item/soap,
/obj/item/wirebrush,
diff --git a/code/game/objects/items/storage/boxes/clothes_boxes.dm b/code/game/objects/items/storage/boxes/clothes_boxes.dm
index 6b4e995a276..fdb5bf64657 100644
--- a/code/game/objects/items/storage/boxes/clothes_boxes.dm
+++ b/code/game/objects/items/storage/boxes/clothes_boxes.dm
@@ -130,6 +130,27 @@
new /obj/item/clothing/under/ethereal_tunic/trailwarden(src)
new /obj/item/storage/backpack/saddlepack(src)
+<<<<<<< HEAD
+=======
+/obj/item/storage/box/hero/journalist
+ name = "Assassinated by CIA - 1984." // Literally
+ desc = "Many courageous individuals risked their lives to report on events the government sought to keep hidden from the public, ensuring that the truth remained buried and unheard. These garments are replicas of the clothing worn by one such 'journalist,' a silent sentinel in the fight for truth."
+
+/obj/item/storage/box/hero/journalist/PopulateContents()
+ new /obj/item/clothing/under/costume/buttondown/slacks(src)
+ new /obj/item/clothing/suit/toggle/suspenders(src)
+ new /obj/item/clothing/neck/tie/red(src)
+ new /obj/item/clothing/head/fedora/beige/press(src)
+ new /obj/item/clothing/accessory/press_badge(src)
+ new /obj/item/clothing/suit/hazardvest/press(src)
+ new /obj/item/radio/entertainment/microphone/physical(src)
+ new /obj/item/radio/entertainment/speakers/physical(src)
+ new /obj/item/clipboard(src)
+ new /obj/item/taperecorder(src)
+ new /obj/item/camera(src)
+ new /obj/item/wallframe/telescreen/entertainment(src)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/holy
name = "Templar Kit"
/// This item is used to generate a preview image for this set.
diff --git a/code/game/objects/items/storage/boxes/engineering_boxes.dm b/code/game/objects/items/storage/boxes/engineering_boxes.dm
index a46703ec8bf..4eb5482f5d4 100644
--- a/code/game/objects/items/storage/boxes/engineering_boxes.dm
+++ b/code/game/objects/items/storage/boxes/engineering_boxes.dm
@@ -112,3 +112,15 @@
..()
for(var/i in 1 to 7)
new /obj/item/tank/internals/emergency_oxygen/engi(src) //in case anyone ever wants to do anything with spawning them, apart from crafting the box
+<<<<<<< HEAD
+=======
+
+/obj/item/storage/box/stickers/chief_engineer
+ name = "CE approved sticker pack"
+ desc = "With one of these stickers, inform the crew that the contraption in the corridor is COMPLETELY SAFE!"
+ illustration = "label_ce"
+
+/obj/item/storage/box/stickers/chief_engineer/PopulateContents()
+ for(var/i in 1 to 3)
+ new /obj/item/sticker/chief_engineer(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
diff --git a/code/game/objects/items/storage/boxes/food_boxes.dm b/code/game/objects/items/storage/boxes/food_boxes.dm
index bccb04f14d0..0941e9fd374 100644
--- a/code/game/objects/items/storage/boxes/food_boxes.dm
+++ b/code/game/objects/items/storage/boxes/food_boxes.dm
@@ -126,7 +126,11 @@
/obj/item/storage/box/papersack/proc/check_menu(mob/user, obj/item/pen/P)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
if(contents.len)
balloon_alert(user, "items inside!")
diff --git a/code/game/objects/items/storage/boxes/job_boxes.dm b/code/game/objects/items/storage/boxes/job_boxes.dm
index 2620cb58dc8..40eaedc0094 100644
--- a/code/game/objects/items/storage/boxes/job_boxes.dm
+++ b/code/game/objects/items/storage/boxes/job_boxes.dm
@@ -46,13 +46,17 @@
if(length(SSmapping.levels_by_trait(ZTRAIT_STATION)) > 1)
new /obj/item/climbing_hook/emergency(src)
+<<<<<<< HEAD
new /obj/item/oxygen_candle(src) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/survival/radio/PopulateContents()
..() // we want the survival stuff too.
new /obj/item/radio/off(src)
/obj/item/storage/box/survival/proc/wardrobe_removal()
+<<<<<<< HEAD
if(!isplasmaman(loc) && !isvox(loc)) //We need to specially fill the box with plasmaman gear, since it's intended for one //SKYRAT EDIT: && !isvox(loc)
return
var/obj/item/mask = locate(mask_type) in src
@@ -63,6 +67,13 @@
else
new /obj/item/tank/internals/nitrogen/belt/emergency(src)
//SKYRAT EDIT ADDITION END - VOX INTERNALS
+=======
+ if(!isplasmaman(loc)) //We need to specially fill the box with plasmaman gear, since it's intended for one
+ return
+ var/obj/item/mask = locate(mask_type) in src
+ var/obj/item/internals = locate(internal_type) in src
+ new /obj/item/tank/internals/plasmaman/belt(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
qdel(mask) // Get rid of the items that shouldn't be
qdel(internals)
diff --git a/code/game/objects/items/storage/boxes/medical_boxes.dm b/code/game/objects/items/storage/boxes/medical_boxes.dm
index c76f1ca0b37..491032a33d7 100644
--- a/code/game/objects/items/storage/boxes/medical_boxes.dm
+++ b/code/game/objects/items/storage/boxes/medical_boxes.dm
@@ -133,7 +133,10 @@
/obj/item/storage/box/bandages
name = "box of bandages"
desc = "A box of DeForest brand gel bandages designed to treat blunt-force trauma."
+<<<<<<< HEAD
icon = 'icons/obj/storage/box.dmi' // SKYRAT EDIT CHANGE
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "brutebox"
base_icon_state = "brutebox"
inhand_icon_state = "brutebox"
diff --git a/code/game/objects/items/storage/boxes/science_boxes.dm b/code/game/objects/items/storage/boxes/science_boxes.dm
index 48ab6cd5b72..f9261b878af 100644
--- a/code/game/objects/items/storage/boxes/science_boxes.dm
+++ b/code/game/objects/items/storage/boxes/science_boxes.dm
@@ -39,6 +39,10 @@
illustration = null
/// Which type of cube are we spawning in this box?
var/cube_type = /obj/item/food/monkeycube
+<<<<<<< HEAD
+=======
+ custom_price = PAYCHECK_CREW * 2
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/monkeycubes/Initialize(mapload)
. = ..()
diff --git a/code/game/objects/items/storage/boxes/service_boxes.dm b/code/game/objects/items/storage/boxes/service_boxes.dm
index ee558d863da..935cac6e502 100644
--- a/code/game/objects/items/storage/boxes/service_boxes.dm
+++ b/code/game/objects/items/storage/boxes/service_boxes.dm
@@ -224,14 +224,44 @@
new /obj/item/toy/balloon/long(src)
/obj/item/storage/box/stickers
+<<<<<<< HEAD
name = "box of stickers"
desc = "A box full of random stickers. Do give to the clown."
+=======
+ name = "sticker pack"
+ desc = "A pack of removable stickers. Removable? What a rip off! On the back, DO NOT GIVE TO THE CLOWN! is printed in large lettering."
+ icon = 'icons/obj/toys/stickers.dmi'
+ icon_state = "stickerpack"
+ illustration = null
+ w_class = WEIGHT_CLASS_TINY
+ var/static/list/pack_labels = list(
+ "smile",
+ "frown",
+ "heart",
+ "silentman",
+ "tider",
+ "star",
+ )
+
+/obj/item/storage/box/stickers/Initialize(mapload)
+ . = ..()
+ atom_storage.max_slots = 8
+ atom_storage.set_holdable(list(/obj/item/sticker))
+ atom_storage.max_specific_storage = WEIGHT_CLASS_TINY
+ if(isnull(illustration))
+ illustration = pick(pack_labels)
+ update_appearance()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/stickers/proc/generate_non_contraband_stickers_list()
var/list/allowed_stickers = list()
for(var/obj/item/sticker/sticker_type as anything in subtypesof(/obj/item/sticker))
+<<<<<<< HEAD
if(!sticker_type::contraband)
+=======
+ if(!sticker_type::exclude_from_random)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
allowed_stickers += sticker_type
return allowed_stickers
@@ -247,8 +277,14 @@
new type(src)
/obj/item/storage/box/stickers/googly
+<<<<<<< HEAD
name = "box of googly eye stickers"
desc = "Turn anything and everything into something vaguely alive!"
+=======
+ name = "googly eye sticker pack"
+ desc = "Turn anything and everything into something vaguely alive!"
+ illustration = "googly-alt"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/stickers/googly/PopulateContents()
for(var/i in 1 to 6)
diff --git a/code/game/objects/items/storage/garment.dm b/code/game/objects/items/storage/garment.dm
index c6684f6ff1a..0bcf557d6cf 100644
--- a/code/game/objects/items/storage/garment.dm
+++ b/code/game/objects/items/storage/garment.dm
@@ -74,7 +74,11 @@
new /obj/item/clothing/shoes/laceup(src)
/obj/item/storage/bag/garment/hos/PopulateContents()
+<<<<<<< HEAD
//new /obj/item/clothing/under/rank/security/head_of_security/skirt(src) SKYRAT EDIT REMOVAL - Blue Sec
+=======
+ new /obj/item/clothing/under/rank/security/head_of_security/skirt(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/clothing/under/rank/security/head_of_security/alt(src)
new /obj/item/clothing/under/rank/security/head_of_security/alt/skirt(src)
new /obj/item/clothing/under/rank/security/head_of_security/grey(src)
@@ -94,6 +98,7 @@
/obj/item/storage/bag/garment/warden/PopulateContents()
new /obj/item/clothing/suit/armor/vest/warden(src)
+<<<<<<< HEAD
//new /obj/item/clothing/head/hats/warden(src) SKYRAT EDIT REMOVAL
//new /obj/item/clothing/head/hats/warden/drill(src) SKYRAT EDIT REMOVAL
new /obj/item/clothing/head/beret/sec/navywarden(src)
@@ -101,6 +106,14 @@
new /obj/item/clothing/under/rank/security/warden/formal(src)
new /obj/item/clothing/suit/jacket/warden/blue(src) //SKYRAT ADDITION - FORMAL COAT
//new /obj/item/clothing/under/rank/security/warden/skirt(src) SKYRAT EDIT REMOVAL
+=======
+ new /obj/item/clothing/head/hats/warden(src)
+ new /obj/item/clothing/head/hats/warden/drill(src)
+ new /obj/item/clothing/head/beret/sec/navywarden(src)
+ new /obj/item/clothing/suit/armor/vest/warden/alt(src)
+ new /obj/item/clothing/under/rank/security/warden/formal(src)
+ new /obj/item/clothing/under/rank/security/warden/skirt(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/clothing/gloves/krav_maga/sec(src)
new /obj/item/clothing/glasses/hud/security/sunglasses(src)
new /obj/item/clothing/mask/gas/sechailer(src)
@@ -112,7 +125,10 @@
new /obj/item/clothing/under/rank/rnd/research_director/alt/skirt(src)
new /obj/item/clothing/under/rank/rnd/research_director/turtleneck(src)
new /obj/item/clothing/under/rank/rnd/research_director/turtleneck/skirt(src)
+<<<<<<< HEAD
new /obj/item/clothing/suit/toggle/labcoat/skyrat/rd(src) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/clothing/suit/hooded/wintercoat/science/rd(src)
new /obj/item/clothing/head/beret/science/rd(src)
new /obj/item/clothing/gloves/color/black(src)
diff --git a/code/game/objects/items/storage/lockbox.dm b/code/game/objects/items/storage/lockbox.dm
index 421d82b667f..53bde4f3c82 100644
--- a/code/game/objects/items/storage/lockbox.dm
+++ b/code/game/objects/items/storage/lockbox.dm
@@ -232,7 +232,10 @@
/obj/item/storage/lockbox/order
name = "order lockbox"
desc = "A box used to secure small cargo orders from being looted by those who didn't order it. Yeah, cargo tech, that means you."
+<<<<<<< HEAD
icon = 'icons/obj/storage/case.dmi'
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "secure"
icon_closed = "secure"
icon_locked = "secure_locked"
@@ -249,21 +252,27 @@
buyer_account = _buyer_account
ADD_TRAIT(src, TRAIT_NO_MISSING_ITEM_ERROR, TRAIT_GENERIC)
ADD_TRAIT(src, TRAIT_NO_MANIFEST_CONTENTS_ERROR, TRAIT_GENERIC)
+<<<<<<< HEAD
//SKYRAT EDIT START
if(istype(buyer_account, /datum/bank_account/department))
department_purchase = TRUE
department_account = buyer_account
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/lockbox/order/can_unlock(mob/living/user, obj/item/card/id/id_card)
if(id_card.registered_account == buyer_account)
return TRUE
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION START - private department orders
if(department_purchase && id_card.registered_account?.account_job?.paycheck_department == department_account.department_id)
return TRUE
//SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
balloon_alert(user, "incorrect bank account!")
return FALSE
diff --git a/code/game/objects/items/storage/uplink_kits.dm b/code/game/objects/items/storage/uplink_kits.dm
index 60e6d4113b5..bb134dc6e3d 100644
--- a/code/game/objects/items/storage/uplink_kits.dm
+++ b/code/game/objects/items/storage/uplink_kits.dm
@@ -44,7 +44,11 @@
)))
if(KIT_RECON)
new /obj/item/clothing/glasses/thermal/xray(src) // ~8 tc?
+<<<<<<< HEAD
// new /obj/item/storage/briefcase/launchpad(src) //6 tc // SKYRAT EDIT REMOVAL
+=======
+ new /obj/item/storage/briefcase/launchpad(src) //6 tc
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/binoculars(src) // 2 tc?
new /obj/item/encryptionkey/syndicate(src) // 2 tc
new /obj/item/storage/box/syndie_kit/space(src) //4 tc
@@ -346,6 +350,10 @@
/obj/item/storage/box/syndie_kit/rebarxbowsyndie/PopulateContents()
new /obj/item/book/granter/crafting_recipe/dusting/rebarxbowsyndie_ammo(src)
new /obj/item/gun/ballistic/rifle/rebarxbow/syndie(src)
+<<<<<<< HEAD
+=======
+ new /obj/item/storage/bag/rebar_quiver/syndicate(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/storage/box/syndie_kit/origami_bundle
name = "origami kit"
@@ -683,6 +691,7 @@
group.register(i)
desc += " The implants are registered to the \"[group.name]\" group."
+<<<<<<< HEAD
/obj/item/storage/box/syndie_kit/stickers
name = "sticker kit"
@@ -691,6 +700,9 @@
atom_storage.max_slots = 8
/obj/item/storage/box/syndie_kit/stickers/PopulateContents()
+=======
+/obj/item/storage/box/stickers/syndie_kit/PopulateContents()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/types = subtypesof(/obj/item/sticker/syndicate)
for(var/i in 1 to atom_storage.max_slots)
@@ -848,7 +860,11 @@
illustration = "writing_syndie"
/obj/item/storage/box/syndicate/contractor_loadout/PopulateContents()
+<<<<<<< HEAD
new /obj/item/mod/control/pre_equipped/contractor(src) //SKYRAT EDIT: Was infiltrator variant
+=======
+ new /obj/item/mod/control/pre_equipped/infiltrator(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/clothing/head/helmet/space/syndicate/contract(src)
new /obj/item/clothing/suit/space/syndicate/contract(src)
new /obj/item/clothing/under/chameleon(src)
diff --git a/code/game/objects/items/storage/wallets.dm b/code/game/objects/items/storage/wallets.dm
index ab2d8f35341..ec962605bc2 100644
--- a/code/game/objects/items/storage/wallets.dm
+++ b/code/game/objects/items/storage/wallets.dm
@@ -20,10 +20,13 @@
/obj/item/holochip,
/obj/item/card,
/obj/item/cigarette,
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN
/obj/item/condom_pack,
/obj/item/gbp_punchcard,
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/clothing/accessory/dogtag,
/obj/item/coin,
/obj/item/coupon,
diff --git a/code/game/objects/items/surgery_tray.dm b/code/game/objects/items/surgery_tray.dm
index 457e971b90d..10a98c24c08 100644
--- a/code/game/objects/items/surgery_tray.dm
+++ b/code/game/objects/items/surgery_tray.dm
@@ -1,3 +1,4 @@
+<<<<<<< HEAD
/datum/storage/surgery_tray
max_total_storage = 30
max_specific_storage = WEIGHT_CLASS_NORMAL
@@ -24,6 +25,8 @@
/obj/item/surgicaldrill,
))
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/**
* Surgery Trays
* A storage object that displays tools in its contents based on tier, better tools are more visible.
@@ -195,7 +198,10 @@
new /obj/item/cautery(src)
new /obj/item/circular_saw(src)
new /obj/item/clothing/mask/surgical(src)
+<<<<<<< HEAD
new /obj/item/clothing/suit/toggle/labcoat/hospitalgown(src) // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/hemostat(src)
new /obj/item/razor/surgery(src)
new /obj/item/retractor(src)
@@ -217,7 +223,10 @@
new /obj/item/cautery/cruel(src)
new /obj/item/circular_saw(src)
new /obj/item/clothing/mask/surgical(src)
+<<<<<<< HEAD
new /obj/item/clothing/suit/toggle/labcoat/hospitalgown(src) // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/hemostat/cruel(src)
new /obj/item/razor/surgery(src)
new /obj/item/retractor/cruel(src)
diff --git a/code/game/objects/items/tanks/jetpack.dm b/code/game/objects/items/tanks/jetpack.dm
index cd5a9a1841e..a7a577c77cf 100644
--- a/code/game/objects/items/tanks/jetpack.dm
+++ b/code/game/objects/items/tanks/jetpack.dm
@@ -79,7 +79,7 @@
toggle_internals(user)
/obj/item/tank/jetpack/proc/cycle(mob/user)
- if(user.incapacitated())
+ if(user.incapacitated)
return
if(!on)
diff --git a/code/game/objects/items/tanks/tanks.dm b/code/game/objects/items/tanks/tanks.dm
index d89794f4209..3e10a0f92d4 100644
--- a/code/game/objects/items/tanks/tanks.dm
+++ b/code/game/objects/items/tanks/tanks.dm
@@ -256,7 +256,11 @@
if(istype(carbon_user) && (carbon_user.external == src || carbon_user.internal == src))
.["connected"] = TRUE
+<<<<<<< HEAD
/obj/item/tank/ui_act(action, params)
+=======
+/obj/item/tank/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/items/tanks/watertank.dm b/code/game/objects/items/tanks/watertank.dm
index 8094a9a21c8..15db2a5d3ed 100644
--- a/code/game/objects/items/tanks/watertank.dm
+++ b/code/game/objects/items/tanks/watertank.dm
@@ -47,7 +47,7 @@
if(user.get_item_by_slot(user.getBackSlot()) != src)
to_chat(user, span_warning("The watertank must be worn properly to use!"))
return
- if(user.incapacitated())
+ if(user.incapacitated)
return
if(QDELETED(noz))
diff --git a/code/game/objects/items/tcg/tcg.dm b/code/game/objects/items/tcg/tcg.dm
index fc2eeba82ff..e0a8991dea6 100644
--- a/code/game/objects/items/tcg/tcg.dm
+++ b/code/game/objects/items/tcg/tcg.dm
@@ -151,7 +151,11 @@ GLOBAL_LIST_EMPTY(tcgcard_radial_choices)
/obj/item/tcgcard/proc/check_menu(mob/living/user)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.Adjacent(src))
+=======
+ if(user.incapacitated || !user.Adjacent(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
@@ -249,7 +253,11 @@ GLOBAL_LIST_EMPTY(tcgcard_radial_choices)
/obj/item/tcgcard_deck/proc/check_menu(mob/living/user)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.Adjacent(src))
+=======
+ if(user.incapacitated || !user.Adjacent(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/items/tcg/tcg_machines.dm b/code/game/objects/items/tcg/tcg_machines.dm
index 78854afdd5b..e0ca75f4bb1 100644
--- a/code/game/objects/items/tcg/tcg_machines.dm
+++ b/code/game/objects/items/tcg/tcg_machines.dm
@@ -105,7 +105,11 @@ GLOBAL_LIST_EMPTY(tcgcard_machine_radial_choices)
/obj/machinery/trading_card_holder/proc/check_menu(mob/living/user)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.Adjacent(src))
+=======
+ if(user.incapacitated || !user.Adjacent(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
@@ -356,7 +360,11 @@ GLOBAL_LIST_EMPTY(tcgcard_mana_bar_radial_choices)
/obj/machinery/trading_card_button/proc/check_menu(mob/living/user)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.Adjacent(src))
+=======
+ if(user.incapacitated || !user.Adjacent(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/items/teleportation.dm b/code/game/objects/items/teleportation.dm
index 6d50f36028e..7da69706bfe 100644
--- a/code/game/objects/items/teleportation.dm
+++ b/code/game/objects/items/teleportation.dm
@@ -170,12 +170,16 @@
/obj/item/hand_tele/attack_self(mob/user)
if (!can_teleport_notifies(user))
return
+<<<<<<< HEAD
//SKYRAT EDIT BEGIN
var/turf/my_turf = get_turf(src)
if(is_away_level(my_turf.z))
to_chat(user, "[src] cannot be used here! ")
return
//SKYRAT EDIT END
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/list/locations = list()
for(var/obj/machinery/computer/teleporter/computer as anything in SSmachines.get_machines_by_type_and_subtypes(/obj/machinery/computer/teleporter))
var/atom/target = computer.target_ref?.resolve()
@@ -195,7 +199,11 @@
var/teleport_location_key = tgui_input_list(user, "Teleporter to lock on", "Hand Teleporter", sort_list(locations))
if (isnull(teleport_location_key))
return
+<<<<<<< HEAD
if(user.get_active_held_item() != src || user.incapacitated())
+=======
+ if(user.get_active_held_item() != src || user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
// Not always a datum, but needed for IS_WEAKREF_OF to cast properly.
diff --git a/code/game/objects/items/tools/weldingtool.dm b/code/game/objects/items/tools/weldingtool.dm
index a5a7235257b..85e270682e5 100644
--- a/code/game/objects/items/tools/weldingtool.dm
+++ b/code/game/objects/items/tools/weldingtool.dm
@@ -30,8 +30,13 @@
heat = 3800
tool_behaviour = TOOL_WELDER
toolspeed = 1
+<<<<<<< HEAD
//wound_bonus = 10 //SKYRAT EDIT REMOVAL
//bare_wound_bonus = 15 //SKYRAT EDIT REMOVAL
+=======
+ wound_bonus = 10
+ bare_wound_bonus = 15
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
custom_materials = list(/datum/material/iron=SMALL_MATERIAL_AMOUNT*0.7, /datum/material/glass=SMALL_MATERIAL_AMOUNT*0.3)
/// Whether the welding tool is on or off.
var/welding = FALSE
@@ -159,7 +164,11 @@
user.visible_message(span_notice("[user] starts to fix some of the dents on [attacked_humanoid == user ? user.p_their() : "[attacked_humanoid]'s"] [affecting.name]."),
span_notice("You start fixing some of the dents on [attacked_humanoid == user ? "your" : "[attacked_humanoid]'s"] [affecting.name]."))
+<<<<<<< HEAD
var/use_delay = 1 SECONDS // SKYRAT EDIT - original repeating ? 1 SECONDS : 0
+=======
+ var/use_delay = repeating ? 1 SECONDS : 0
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(user == attacked_humanoid)
use_delay = 5 SECONDS
diff --git a/code/game/objects/items/toy_mechs.dm b/code/game/objects/items/toy_mechs.dm
index 1b3367032c1..d08deec62e3 100644
--- a/code/game/objects/items/toy_mechs.dm
+++ b/code/game/objects/items/toy_mechs.dm
@@ -96,7 +96,7 @@
return FALSE
//dead men tell no tales, incapacitated men fight no fights
- if(attacker_controller.incapacitated())
+ if(attacker_controller.incapacitated)
return FALSE
//if the attacker_controller isn't next to the attacking toy (and doesn't have telekinesis), the battle ends
if(!in_range(attacker, attacker_controller) && !(attacker_controller.dna.check_mutation(/datum/mutation/human/telekinesis)))
@@ -106,7 +106,7 @@
//if it's PVP and the opponent is not next to the defending(src) toy (and doesn't have telekinesis), the battle ends
if(opponent)
- if(opponent.incapacitated())
+ if(opponent.incapacitated)
return FALSE
if(!in_range(src, opponent) && !(opponent.dna.check_mutation(/datum/mutation/human/telekinesis)))
opponent.visible_message(span_notice("[opponent.name] separates from [src], ending the battle."), \
diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm
index ff540932f31..60f0de61238 100644
--- a/code/game/objects/items/trash.dm
+++ b/code/game/objects/items/trash.dm
@@ -85,10 +85,13 @@
desc = "In the Mothic Fleet every individual wrapper is carefully recycled and repurposed into fresh material. Over here they are more commonly dropped directly onto the floor."
icon_state = "moth_ration"
+<<<<<<< HEAD
/obj/item/trash/waffles
name = "waffles tray"
icon_state = "waffles"
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/item/trash/pistachios
name = "pistachios pack"
icon_state = "pistachios_pack"
diff --git a/code/game/objects/items_reskin.dm b/code/game/objects/items_reskin.dm
index 9fa3b91d0e1..011bf60879d 100644
--- a/code/game/objects/items_reskin.dm
+++ b/code/game/objects/items_reskin.dm
@@ -81,6 +81,10 @@
return FALSE
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/obj_defense.dm b/code/game/objects/obj_defense.dm
index 92ca803177e..ab5cc16f04e 100644
--- a/code/game/objects/obj_defense.dm
+++ b/code/game/objects/obj_defense.dm
@@ -117,6 +117,9 @@
AddComponent(/datum/component/acid, acidpwr, acid_volume, custom_acid_overlay || GLOB.acid_overlay)
return TRUE
+ AddComponent(/datum/component/acid, acidpwr, acid_volume, custom_acid_overlay || GLOB.acid_overlay)
+ return TRUE
+
///called when the obj is destroyed by acid.
/obj/proc/acid_melt()
deconstruct(FALSE)
diff --git a/code/game/objects/objs.dm b/code/game/objects/objs.dm
index 1b9282be661..0e800e5cab4 100644
--- a/code/game/objects/objs.dm
+++ b/code/game/objects/objs.dm
@@ -190,7 +190,10 @@ GLOBAL_LIST_EMPTY(objects_by_id_tag)
if(obj_flags & UNIQUE_RENAME)
. += span_notice("Use a pen on it to rename it or change its description.")
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/analyzer_act(mob/living/user, obj/item/analyzer/tool)
if(atmos_scan(user=user, target=src, silent=FALSE))
return TRUE
diff --git a/code/game/objects/structures.dm b/code/game/objects/structures.dm
index ff6e6e171bb..8473f1755c5 100644
--- a/code/game/objects/structures.dm
+++ b/code/game/objects/structures.dm
@@ -32,7 +32,11 @@
QUEUE_SMOOTH_NEIGHBORS(src)
return ..()
+<<<<<<< HEAD
/obj/structure/ui_act(action, params)
+=======
+/obj/structure/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
add_fingerprint(usr)
return ..()
diff --git a/code/game/objects/structures/ai_core.dm b/code/game/objects/structures/ai_core.dm
index 5c219aaa4a9..5f1c8013d06 100644
--- a/code/game/objects/structures/ai_core.dm
+++ b/code/game/objects/structures/ai_core.dm
@@ -61,7 +61,10 @@
/obj/structure/ai_core/Destroy()
if(istype(remote_ai))
+<<<<<<< HEAD
remote_ai.break_core_link()
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
remote_ai = null
QDEL_NULL(circuit)
QDEL_NULL(core_mmi)
@@ -72,7 +75,11 @@
. = ..()
if(. > 0 && istype(remote_ai))
to_chat(remote_ai, span_danger("Your core is under attack!"))
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/ai_core/deactivated
icon_state = "ai-empty"
diff --git a/code/game/objects/structures/beds_chairs/alien_nest.dm b/code/game/objects/structures/beds_chairs/alien_nest.dm
index 681724f4d40..b1b0de6e53a 100644
--- a/code/game/objects/structures/beds_chairs/alien_nest.dm
+++ b/code/game/objects/structures/beds_chairs/alien_nest.dm
@@ -24,6 +24,7 @@
/obj/structure/bed/nest/user_unbuckle_mob(mob/living/captive, mob/living/hero)
if(!length(buckled_mobs))
+<<<<<<< HEAD
return
if(hero.get_organ_by_type(/obj/item/organ/internal/alien/plasmavessel))
@@ -61,6 +62,45 @@
if(M.get_organ_by_type(/obj/item/organ/internal/alien/plasmavessel))
return
+=======
+ return
+
+ if(hero.get_organ_by_type(/obj/item/organ/internal/alien/plasmavessel))
+ unbuckle_mob(captive)
+ add_fingerprint(hero)
+ return
+
+ if(captive != hero)
+ captive.visible_message(span_notice("[hero.name] pulls [captive.name] free from the sticky nest!"),
+ span_notice("[hero.name] pulls you free from the gelatinous resin."),
+ span_hear("You hear squelching..."))
+ unbuckle_mob(captive)
+ add_fingerprint(hero)
+ return
+
+ captive.visible_message(span_warning("[captive.name] struggles to break free from the gelatinous resin!"),
+ span_notice("You struggle to break free from the gelatinous resin... (Stay still for about a minute and a half.)"),
+ span_hear("You hear squelching..."))
+
+ if(!do_after(captive, 100 SECONDS, target = src, hidden = TRUE))
+ if(captive.buckled)
+ to_chat(captive, span_warning("You fail to unbuckle yourself!"))
+ return
+
+ captive.visible_message(span_warning("[captive.name] breaks free from the gelatinous resin!"),
+ span_notice("You break free from the gelatinous resin!"),
+ span_hear("You hear squelching..."))
+
+ unbuckle_mob(captive)
+ add_fingerprint(hero)
+
+/obj/structure/bed/nest/user_buckle_mob(mob/living/M, mob/user, check_loc = TRUE)
+ if ( !ismob(M) || (get_dist(src, user) > 1) || (M.loc != src.loc) || user.incapacitated || M.buckled )
+ return
+
+ if(M.get_organ_by_type(/obj/item/organ/internal/alien/plasmavessel))
+ return
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!user.get_organ_by_type(/obj/item/organ/internal/alien/plasmavessel))
return
diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm
index 02a0e320d1f..8e439ef0577 100644
--- a/code/game/objects/structures/bedsheet_bin.dm
+++ b/code/game/objects/structures/bedsheet_bin.dm
@@ -38,7 +38,11 @@ LINEN BINS
/obj/item/bedsheet/Initialize(mapload)
. = ..()
AddComponent(/datum/component/surgery_initiator)
+<<<<<<< HEAD
AddElement(/datum/element/bed_tuckable, mapload, 0, 12, 0)
+=======
+ AddElement(/datum/element/bed_tuckable, mapload, 0, 0, 0)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(bedsheet_type == BEDSHEET_DOUBLE)
stack_amount *= 2
dying_key = DYE_REGISTRY_DOUBLE_BEDSHEET
diff --git a/code/game/objects/structures/crates_lockers/closets.dm b/code/game/objects/structures/crates_lockers/closets.dm
index 27e69dcba56..eaa1803603c 100644
--- a/code/game/objects/structures/crates_lockers/closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets.dm
@@ -914,6 +914,11 @@ GLOBAL_LIST_EMPTY(roundstart_station_closets)
/obj/structure/closet/mouse_drop_receive(atom/movable/O, mob/living/user, params)
if(!istype(O) || O.anchored || istype(O, /atom/movable/screen))
+<<<<<<< HEAD
+=======
+ return
+ if(!istype(user) || user.incapacitated || user.body_position == LYING_DOWN)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(user == O) //try to climb onto it
return ..()
diff --git a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm
index f0d1eaa0cc8..316d26dc0d9 100644
--- a/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm
+++ b/code/game/objects/structures/crates_lockers/closets/cardboardbox.dm
@@ -32,7 +32,11 @@
var/move_delay = FALSE
/obj/structure/closet/cardboard/relaymove(mob/living/user, direction)
+<<<<<<< HEAD
if(opened || move_delay || user.incapacitated() || !isturf(loc) || !has_gravity(loc))
+=======
+ if(opened || move_delay || user.incapacitated || !isturf(loc) || !has_gravity(loc))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
move_delay = TRUE
var/oldloc = loc
@@ -72,7 +76,11 @@
for(var/mob/living/alerted_mob as anything in alerted)
if(alerted_mob.stat != CONSCIOUS || alerted_mob.is_blind())
continue
+<<<<<<< HEAD
if(!alerted_mob.incapacitated(IGNORE_RESTRAINTS))
+=======
+ if(!INCAPACITATED_IGNORING(alerted_mob, INCAPABLE_RESTRAINTS))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alerted_mob.face_atom(src)
alerted_mob.do_alert_animation()
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/bar.dm b/code/game/objects/structures/crates_lockers/closets/secure/bar.dm
index c0cf7bb873b..7ce3746b9b7 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/bar.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/bar.dm
@@ -18,11 +18,14 @@
new /obj/item/etherealballdeployer(src)
new /obj/item/roulette_wheel_beacon(src)
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
new /obj/item/storage/fancy/candle_box(src)
new /obj/item/storage/fancy/candle_box(src)
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/bar/all_access
req_access = null
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
index 182c93b90df..9bbcd3bf843 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm
@@ -18,17 +18,25 @@
new /obj/item/extinguisher/advanced(src)
new /obj/item/storage/photo_album/ce(src)
new /obj/item/storage/box/skillchips/engineering(src)
+<<<<<<< HEAD
new /obj/item/storage/box/gas_miner_beacons(src) // SKYRAT EDIT ADDITION
new /obj/item/construction/plumbing/engineering(src) //SKYRAT EDIT ADDITION
new /obj/item/circuitboard/machine/rodstopper(src) //SKYRAT EDIT ADDITION
new /obj/item/card/id/departmental_budget/eng(src) //SKYRAT EDIT ADDITION
+=======
+ new /obj/item/storage/box/stickers/chief_engineer(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/engineering_chief/populate_contents_immediate()
. = ..()
// Traitor steal objective
new /obj/item/blueprints(src)
+<<<<<<< HEAD
new /obj/item/pipe_dispenser/bluespace(src) // SKYRAT EDIT -- BLUESPACE RPD -- ORIGINAL: new /obj/item/pipe_dispenser(src)
+=======
+ new /obj/item/pipe_dispenser(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/engineering_electrical
name = "electrical supplies locker"
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm
index e5eed4cb295..1c321693475 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm
@@ -86,7 +86,10 @@
new /obj/item/defibrillator/compact/loaded(src)
new /obj/item/healthanalyzer/advanced(src)
new /obj/item/assembly/flash/handheld(src)
+<<<<<<< HEAD
new /obj/item/storage/briefcase/medicalgunset/cmo(src) //SKYRAT EDIT ADDITION MEDIGUNS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/autosurgeon/medical_hud(src)
new /obj/item/door_remote/chief_medical_officer(src)
new /obj/item/clothing/neck/petcollar(src)
@@ -95,14 +98,21 @@
new /obj/item/circuitboard/machine/techfab/department/medical(src)
new /obj/item/storage/photo_album/cmo(src)
new /obj/item/storage/lockbox/medal/med(src)
+<<<<<<< HEAD
new /obj/item/card/id/departmental_budget/med(src) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/chief_medical/populate_contents_immediate()
. = ..()
// Traitor steal objective
+<<<<<<< HEAD
//new /obj/item/reagent_containers/hypospray/cmo(src) - ORIGINAL
new /obj/item/storage/hypospraykit/cmo/preloaded(src) //SKYRAT EDIT ADDITION - New Hyposprays
+=======
+ new /obj/item/reagent_containers/hypospray/cmo(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/animal
name = "animal control locker"
@@ -127,8 +137,11 @@
new /obj/item/storage/box/pillbottles(src)
new /obj/item/storage/box/medigels(src)
new /obj/item/storage/box/medigels(src)
+<<<<<<< HEAD
new /obj/item/storage/box/hypospray(src) //SKYRAT EDIT ADDITION - HYPOSPRAYS
new /obj/item/storage/box/hypospray(src) //SKYRAT EDIT ADDITION - HYPOSPRAYS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/ph_booklet(src)
new /obj/item/reagent_containers/dropper(src)
new /obj/item/reagent_containers/cup/bottle/acidic_buffer(src) //hopefully they get the hint
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm
index a48d551b768..a5b5d346ebf 100755
--- a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm
@@ -18,7 +18,10 @@
new /obj/item/circuitboard/machine/techfab/department/science(src)
new /obj/item/storage/photo_album/rd(src)
new /obj/item/storage/box/skillchips/science(src)
+<<<<<<< HEAD
new /obj/item/card/id/departmental_budget/sci(src) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/research_director/populate_contents_immediate()
. = ..()
diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm
index 4474f1d2fec..c036af905d4 100644
--- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm
+++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm
@@ -24,6 +24,10 @@
new /obj/item/gun/energy/e_gun(src)
new /obj/item/storage/belt/sabre(src)
+/obj/structure/closet/secure_closet/captains/populate_contents_immediate()
+ new /obj/item/gun/energy/e_gun(src)
+ new /obj/item/storage/belt/sabre(src)
+
/obj/structure/closet/secure_closet/hop
name = "head of personnel's locker"
icon_state = "hop"
@@ -46,7 +50,10 @@
new /obj/item/circuitboard/machine/techfab/department/service(src)
new /obj/item/storage/photo_album/hop(src)
new /obj/item/storage/lockbox/medal/hop(src)
+<<<<<<< HEAD
new /obj/item/card/id/departmental_budget/srv(src) //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/hop/populate_contents_immediate()
new /obj/item/gun/energy/e_gun(src)
@@ -82,6 +89,14 @@
new /obj/item/pinpointer/nuke(src)
new /obj/item/gun/ballistic/shotgun/automatic/combat/compact(src)
+/obj/structure/closet/secure_closet/hos/populate_contents_immediate()
+ . = ..()
+
+ // Traitor steal objectives
+ new /obj/item/gun/energy/e_gun/hos(src)
+ new /obj/item/pinpointer/nuke(src)
+ new /obj/item/gun/ballistic/shotgun/automatic/combat/compact(src)
+
/obj/structure/closet/secure_closet/warden
name = "warden's locker"
icon_state = "warden"
@@ -113,7 +128,11 @@
new /obj/item/radio/headset/headset_sec/alt(src)
new /obj/item/clothing/glasses/hud/security/sunglasses(src)
new /obj/item/flashlight/seclite(src)
+<<<<<<< HEAD
new /obj/item/clothing/gloves/tackler/security(src) // SKYRAT EDIT CHANGE - Gives Them The Blue Ones - ORIGINAL: new /obj/item/clothing/gloves/tackler(src)
+=======
+ new /obj/item/clothing/gloves/tackler(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/secure_closet/security/sec
@@ -283,6 +302,10 @@
/obj/structure/closet/secure_closet/armory1
name = "armory armor locker"
+<<<<<<< HEAD
+=======
+ icon_state = "armory"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
req_access = list(ACCESS_ARMORY)
/obj/structure/closet/secure_closet/armory1/PopulateContents()
diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
index 7367e04e6f5..12bbbfe2f6b 100644
--- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
+++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm
@@ -38,8 +38,12 @@
if (prob(40))
new /obj/item/storage/toolbox/emergency(src)
+<<<<<<< HEAD
//switch (pick_weight(list("small" = 35, "aid" = 30, "tank" = 20, "both" = 10, "nothing" = 4))) // ORIGINAL
switch (pick_weight(list("small" = 35, "aid" = 30, "tank" = 20, "both" = 10))) // SKYRAT EDIT CHANGE
+=======
+ switch (pick_weight(list("small" = 35, "aid" = 30, "tank" = 20, "both" = 10, "nothing" = 4)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if ("small")
new /obj/item/tank/internals/emergency_oxygen(src)
new /obj/item/tank/internals/emergency_oxygen(src)
@@ -64,8 +68,11 @@
if ("nothing")
// doot
pass()
+<<<<<<< HEAD
*/
// SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/*
* Fire Closet
@@ -77,23 +84,39 @@
/obj/structure/closet/firecloset/PopulateContents()
..()
+<<<<<<< HEAD
new /obj/item/clothing/suit/utility/fire/firefighter(src)
new /obj/item/clothing/mask/gas/alt(src) //SKYRAT EDIT CHANGE - ORIGINAL: /obj/item/clothing/mask/gas(src)
+=======
+
+ new /obj/item/clothing/suit/utility/fire/firefighter(src)
+ new /obj/item/clothing/mask/gas(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/tank/internals/oxygen/red(src)
new /obj/item/extinguisher(src)
new /obj/item/clothing/head/utility/hardhat/red(src)
new /obj/item/crowbar/large/emergency(src)
+<<<<<<< HEAD
new /obj/item/storage/inflatable(src) //SKYRAT EDIT ADDITION - INFLATABLES
/obj/structure/closet/firecloset/full/PopulateContents()
new /obj/item/clothing/suit/utility/fire/firefighter(src)
new /obj/item/clothing/mask/gas/alt(src) //SKYRAT EDIT CHANGE - ORIGINAL: /obj/item/clothing/mask/gas(src)
+=======
+
+/obj/structure/closet/firecloset/full/PopulateContents()
+ new /obj/item/clothing/suit/utility/fire/firefighter(src)
+ new /obj/item/clothing/mask/gas(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new /obj/item/flashlight(src)
new /obj/item/tank/internals/oxygen/red(src)
new /obj/item/extinguisher(src)
new /obj/item/clothing/head/utility/hardhat/red(src)
new /obj/item/crowbar/large/emergency(src)
+<<<<<<< HEAD
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/*
* Tool Closet
diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm
index a21aa5926fa..dc0e22abff5 100644
--- a/code/game/objects/structures/crates_lockers/crates.dm
+++ b/code/game/objects/structures/crates_lockers/crates.dm
@@ -1,7 +1,11 @@
/obj/structure/closet/crate
name = "crate"
desc = "A rectangular steel crate."
+<<<<<<< HEAD
icon = 'icons/obj/storage/crates.dmi' //ICON OVERRIDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/storage/crates.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "crate"
base_icon_state = "crate"
req_access = null
@@ -222,6 +226,15 @@
icon_state = "medicalcrate"
base_icon_state = "medicalcrate"
+<<<<<<< HEAD
+=======
+/obj/structure/closet/crate/deforest
+ name = "deforest medical crate"
+ desc = "A DeFortest brand crate of medical supplies."
+ icon_state = "deforest"
+ base_icon_state = "deforest"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/crate/medical/department
icon_state = "medical"
base_icon_state = "medical"
@@ -289,6 +302,27 @@
name = "food icebox"
icon_state = "food"
base_icon_state = "food"
+<<<<<<< HEAD
+=======
+
+/obj/structure/closet/crate/freezer/donk
+ name = "donk co. fridge"
+ desc = "A Donk Co. brand fridge, keeps your donkpcokets and foam ammunition fresh!"
+ icon_state = "donkcocrate"
+ base_icon_state = "donkcocrate"
+
+/obj/structure/closet/crate/freezer/interdyne
+ name = "interdyne freezer"
+ desc = "Interdyne Pharmauceutics branded freezer. Might or might not contain cold steel, or fresh organs."
+ icon_state = "interdynefreezer"
+ base_icon_state = "interdynefreezer"
+
+/obj/structure/closet/crate/freezer/blood/interdyne
+ name = "interdyne blood freezer"
+ desc = "Interdyne Pharmauceutics branded freezer. Only freshly harvested- I mean, freshly kept blood inside!"
+ icon_state = "interdynefreezer"
+ base_icon_state = "interdynefreezer"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/crate/radiation
desc = "A crate with a radiation sign on it."
@@ -312,6 +346,15 @@
icon_state = "cargo"
base_icon_state = "cargo"
+<<<<<<< HEAD
+=======
+/obj/structure/closet/crate/robust
+ name = "robust industries crate"
+ desc = "Robust Inustries LLC. crate. Feels oddly nostalgic."
+ icon_state = "robust"
+ base_icon_state = "robust"
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/crate/cargo/mining
name = "mining crate"
icon_state = "mining"
@@ -321,6 +364,15 @@
name = "engineering crate"
icon_state = "engi_crate"
base_icon_state = "engi_crate"
+<<<<<<< HEAD
+=======
+
+/obj/structure/closet/crate/nakamura
+ name = "nakamura engineering crate"
+ desc = "Crate from Nakamura Engineering, most likely containing engineering supplies or MODcores."
+ icon_state = "nakamura"
+ base_icon_state = "nakamura"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/crate/engineering/electrical
icon_state = "engi_e_crate"
diff --git a/code/game/objects/structures/crates_lockers/crates/large.dm b/code/game/objects/structures/crates_lockers/crates/large.dm
index 073d4a936d8..be0d4e8c24b 100644
--- a/code/game/objects/structures/crates_lockers/crates/large.dm
+++ b/code/game/objects/structures/crates_lockers/crates/large.dm
@@ -34,7 +34,12 @@
if(W.tool_behaviour == TOOL_CROWBAR)
if(manifest)
tear_manifest(user)
+<<<<<<< HEAD
+=======
+ if(!open(user))
+ return FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
user.visible_message(span_notice("[user] pries \the [src] open."), \
span_notice("You pry open \the [src]."), \
span_hear("You hear splitting wood."))
@@ -45,7 +50,6 @@
new material_drop(src)
for(var/atom/movable/AM in contents)
AM.forceMove(T)
-
qdel(src)
else
diff --git a/code/game/objects/structures/crates_lockers/crates/secure.dm b/code/game/objects/structures/crates_lockers/crates/secure.dm
index 1a102fdb512..24965b07f59 100644
--- a/code/game/objects/structures/crates_lockers/crates/secure.dm
+++ b/code/game/objects/structures/crates_lockers/crates/secure.dm
@@ -43,6 +43,20 @@
name = "weapons crate"
icon_state = "weaponcrate"
base_icon_state = "weaponcrate"
+<<<<<<< HEAD
+=======
+
+/obj/structure/closet/crate/secure/gorlex_weapons
+ desc = "A secure weapons crate of Gorlex Marauders."
+ name = "weapons crate"
+ icon_state = "gorlex_weaponcrate"
+ base_icon_state = "gorlex_weaponcrate"
+
+/obj/structure/closet/crate/secure/gorlex_weapons/jammed
+ desc = "A beaten up, jammed open weapon crate of Gorlex Marauders."
+ name = "jammed weapons crate"
+ locked = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/closet/crate/secure/plasma
desc = "A secure plasma crate."
@@ -192,3 +206,65 @@
else if(!silent)
to_chat(user, span_warning("[src] is broken!"))
else ..()
+
+/obj/structure/closet/crate/secure/interdyne
+ name = "interdyne crate"
+ desc = "Crate belonging to Interdyne Pharmaceutics. Hopefully doesn't have bioweapons inside..."
+ icon_state = "interdynecrate"
+ base_icon_state = "interdynecrate"
+
+/obj/structure/closet/crate/secure/tiger
+ name = "tiger co-op crate"
+ icon_state = "tigercrate"
+ base_icon_state = "tigercrate"
+
+/obj/structure/closet/crate/secure/self
+ name = "s.e.l.f. crate"
+ desc = "A secure crate locked from the inside with a scanning panel above it and holographic display of lock's status. Sentient Engine Liberation Front engineers are quite the show-offs."
+ icon_state = "selfcrate"
+ base_icon_state = "selfcrate"
+
+/obj/structure/closet/crate/secure/m13
+ name = "mysterious secure crate"
+ desc = "A secure crate. Lacks any obvious logos or even codes for where it arrived from, but looks like taken straight from a spy movie."
+ icon_state = "mithirteencrate"
+ base_icon_state = "mithirteencrate"
+
+/obj/structure/closet/crate/secure/arc
+ name = "animal rights consortium crate"
+ icon_state = "arccrate"
+ base_icon_state = "arccrate"
+
+/obj/structure/closet/crate/secure/cybersun
+ name = "cybersun crate"
+
+/obj/structure/closet/crate/secure/cybersun/dawn
+ desc = "A secure crate from Cybersun Industries. It has distinct orange-green colouring, probably of some departament or division, but you cannot tell what is it."
+ icon_state = "cyber_dawncrate"
+ base_icon_state = "cyber_dawncrate"
+
+/obj/structure/closet/crate/secure/cybersun/noon
+ desc = "A secure crate from Cybersun Industries. It has distinct yellow-orange colouring, probably of some departament or division, but you cannot tell what is it."
+ icon_state = "cyber_nooncrate"
+ base_icon_state = "cyber_nooncrate"
+
+/obj/structure/closet/crate/secure/cybersun/dusk
+ desc = "A secure crate from Cybersun Industries. It has distinct purple-green colouring, probably of some departament or division, but you cannot tell what is it."
+ icon_state = "cyber_duskcrate"
+ base_icon_state = "cyber_duskcrate"
+
+/obj/structure/closet/crate/secure/cybersun/night
+ desc = "A secure crate from Cybersun Industries. This one blatantly adorns syndicate colours. You can only guess it contains equipement for syndicate operatives."
+ icon_state = "cyber_nightcrate"
+ base_icon_state = "cyber_nightcrate"
+
+/obj/structure/closet/crate/secure/wafflecorp
+ name = "wafflecorp crate"
+ desc = "A very outdated model and design of shipment crate with a modern lock strapped on it, how befitting of its brand owner, Waffle Corporation. Golden lettering written in cursive by the logo reads 'bringing you consecutively top five world-wide rated* breakfast since 2055. A much smaller fineprint, also in cursive, clarifies: '*in years 2099-2126'... It's year 2563 now, however."
+ icon_state = "wafflecrate"
+ base_icon_state = "wafflecrate"
+
+/obj/structure/closet/crate/secure/gorlex
+ name = "gorlex marauders crate"
+ icon_state = "gorlexcrate"
+ base_icon_state = "gorlexcrate"
diff --git a/code/game/objects/structures/deployable_turret.dm b/code/game/objects/structures/deployable_turret.dm
index 2b1a90500cc..032c698acec 100644
--- a/code/game/objects/structures/deployable_turret.dm
+++ b/code/game/objects/structures/deployable_turret.dm
@@ -85,7 +85,11 @@
STOP_PROCESSING(SSfastprocess, src)
/obj/machinery/deployable_turret/user_buckle_mob(mob/living/M, mob/user, check_loc = TRUE)
+<<<<<<< HEAD
if(user.incapacitated() || !istype(user))
+=======
+ if(user.incapacitated || !istype(user))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
M.forceMove(get_turf(src))
. = ..()
@@ -129,7 +133,11 @@
calculated_projectile_vars = calculate_projectile_angle_and_pixel_offsets(controller, target_turf, modifiers)
/obj/machinery/deployable_turret/proc/direction_track(mob/user, atom/targeted)
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
setDir(get_dir(src,targeted))
user.setDir(dir)
@@ -169,7 +177,11 @@
/obj/machinery/deployable_turret/proc/checkfire(atom/targeted_atom, mob/user)
target = targeted_atom
+<<<<<<< HEAD
if(target == user || user.incapacitated() || target == get_turf(src))
+=======
+ if(target == user || user.incapacitated || target == get_turf(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(world.time < cooldown)
if(!warned && world.time > (cooldown - cooldown_duration + rate_of_fire*number_of_shots)) // To capture the window where one is done firing
@@ -187,7 +199,11 @@
addtimer(CALLBACK(src, TYPE_PROC_REF(/obj/machinery/deployable_turret/, fire_helper), user), i*rate_of_fire)
/obj/machinery/deployable_turret/proc/fire_helper(mob/user)
+<<<<<<< HEAD
if(user.incapacitated() || !(user in buckled_mobs))
+=======
+ if(user.incapacitated || !(user in buckled_mobs))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
update_positioning() //REFRESH MOUSE TRACKING!!
var/turf/targets_from = get_turf(src)
diff --git a/code/game/objects/structures/detectiveboard.dm b/code/game/objects/structures/detectiveboard.dm
new file mode 100644
index 00000000000..f9d0560dfde
--- /dev/null
+++ b/code/game/objects/structures/detectiveboard.dm
@@ -0,0 +1,308 @@
+#define MAX_ICON_NOTICES 8
+#define MAX_CASES 8
+#define MAX_EVIDENCE_Y 3500
+#define MAX_EVIDENCE_X 1180
+
+#define EVIDENCE_TYPE_PHOTO "photo"
+#define EVIDENCE_TYPE_PAPER "paper"
+
+/obj/structure/detectiveboard
+ name = "detective notice board"
+ desc = "A board for linking evidence to crimes."
+ icon = 'icons/obj/wallmounts.dmi'
+ icon_state = "noticeboard"
+ density = FALSE
+ anchored = TRUE
+ max_integrity = 150
+
+ /// When player attaching evidence to board this will become TRUE
+ var/attaching_evidence = FALSE
+ /// Colors for case color
+ var/list/case_colors = list("red", "orange", "yellow", "green", "blue", "violet")
+ /// List of board cases
+ var/list/datum/case/cases = list()
+ /// Index of viewing case in cases array
+ var/current_case = 1
+
+MAPPING_DIRECTIONAL_HELPERS(/obj/structure/detectiveboard, 32)
+
+/obj/structure/detectiveboard/Initialize(mapload)
+ . = ..()
+
+ if(mapload)
+ for(var/obj/item/item in loc)
+ if(istype(item, /obj/item/paper) || istype(item, /obj/item/photo))
+ item.forceMove(src)
+ cases[current_case].notices++
+
+ register_context()
+ find_and_hang_on_wall()
+
+/// Attaching evidences: photo and papers
+
+/obj/structure/detectiveboard/attackby(obj/item/item, mob/user, params)
+ if(istype(item, /obj/item/paper) || istype(item, /obj/item/photo))
+ if(!cases.len)
+ to_chat(user, "There are no cases!")
+ return
+
+ if(attaching_evidence)
+ to_chat(user, "You already attaching evidence!")
+ return
+ attaching_evidence = TRUE
+ var/name = tgui_input_text(user, "Please enter the evidence name", "Detective's Board")
+ if(!name)
+ attaching_evidence = FALSE
+ return
+ var/desc = tgui_input_text(user, "Please enter the evidence description", "Detective's Board")
+ if(!desc)
+ attaching_evidence = FALSE
+ return
+
+ if(!user.transferItemToLoc(item, src))
+ attaching_evidence = FALSE
+ return
+ cases[current_case].notices++
+ var/datum/evidence/evidence = new (name, desc, item)
+ cases[current_case].evidences += evidence
+ to_chat(user, span_notice("You pin the [item] to the detective board."))
+ attaching_evidence = FALSE
+ update_appearance(UPDATE_ICON)
+ return
+ return ..()
+
+/obj/structure/detectiveboard/wrench_act_secondary(mob/living/user, obj/item/tool)
+ . = ..()
+ balloon_alert(user, "[anchored ? "un" : ""]securing...")
+ tool.play_tool_sound(src)
+ if(tool.use_tool(src, user, 6 SECONDS))
+ playsound(loc, 'sound/items/deconstruct.ogg', 50, TRUE)
+ balloon_alert(user, "[anchored ? "un" : ""]secured")
+ deconstruct()
+ return TRUE
+
+/obj/structure/detectiveboard/ui_state(mob/user)
+ return GLOB.physical_state
+
+/obj/structure/detectiveboard/ui_interact(mob/user, datum/tgui/ui)
+ ui = SStgui.try_update_ui(user, src, ui)
+ if(!ui)
+ ui = new(user, src, "DetectiveBoard", name, 1200, 800)
+ ui.open()
+
+/obj/structure/detectiveboard/ui_data(mob/user)
+ var/list/data = list()
+ var/list/data_cases = list()
+ for(var/datum/case/case in cases)
+ var/list/data_case = list("ref"=REF(case),"name" = case.name, "color" = case.color)
+ var/list/data_evidences = list()
+ for(var/datum/evidence/evidence in case.evidences)
+ var/list/data_evidence = list("ref" = REF(evidence), "name" = evidence.name, "type" = evidence.evidence_type, "description" = evidence.description, "x"=evidence.x, "y"=evidence.y)
+ var/list/data_connections = list()
+ for(var/datum/evidence/connection in evidence.connections)
+ data_connections += REF(connection) // TODO: create array of strings
+ data_evidence["connections"] = data_connections
+ switch(evidence.evidence_type)
+ if(EVIDENCE_TYPE_PHOTO)
+ var/obj/item/photo/photo = evidence.item
+ var/tmp_picture_name = "evidence_photo[REF(photo)].png"
+ user << browse_rsc(photo.picture.picture_image, tmp_picture_name)
+ data_evidence["photo_url"] = tmp_picture_name
+ if(EVIDENCE_TYPE_PAPER)
+ var/obj/item/paper/paper = evidence.item
+ data_evidence["text"] = ""
+ if(paper.raw_text_inputs && paper.raw_text_inputs.len)
+ data_evidence["text"] = paper.raw_text_inputs[1].raw_text
+ data_evidences += list(data_evidence)
+ data_case["evidences"] = data_evidences
+ var/list/connections = list()
+ for(var/datum/evidence/evidence in case.evidences)
+ for(var/datum/evidence/connection in evidence.connections)
+ var/list/from_pos = get_pin_position(evidence)
+ var/list/to_pos = get_pin_position(connection)
+ var/found_in_connections = FALSE
+ for(var/list/con in connections)
+ if(con["from"]["x"] == to_pos["x"] && con["from"]["y"] == to_pos["y"] && con["to"]["x"] == from_pos["x"] && con["to"]["y"] == from_pos["y"] )
+ found_in_connections = TRUE
+ if(!found_in_connections)
+ var/list/data_connection = list("color" = "red", "from" = from_pos, "to" = to_pos)
+ connections += list(data_connection)
+ data_case["connections"] = connections
+ data_cases += list(data_case)
+
+ data["cases"] = data_cases
+ data["current_case"] = current_case
+ return data
+
+/obj/structure/detectiveboard/proc/get_pin_position(datum/evidence/evidence)
+ return list("x" = evidence.x + 15, "y" = evidence.y + 15)
+
+/obj/structure/detectiveboard/ui_act(action, params, datum/tgui/ui, datum/ui_state/state)
+ . = ..()
+ if(.)
+ return
+ var/mob/user = ui.user
+ switch(action)
+ if("add_case")
+ if(cases.len == MAX_CASES)
+ return FALSE
+ var/new_case = tgui_input_text(user, "Please enter the case name", "Detective's Board")
+ if(!new_case)
+ return FALSE
+ var/case_color = tgui_input_list(user, "Please choose case color", "Detective's Board", case_colors)
+ if(!case_color)
+ return FALSE
+
+ var/datum/case/case = new (new_case, case_color)
+ cases += case
+ current_case = clamp(cases.len, 1, MAX_CASES)
+ update_appearance(UPDATE_ICON)
+ return TRUE
+ if("set_case")
+ if(cases && params["case"] && params["case"] <= cases.len)
+ current_case = clamp(params["case"], 1, MAX_CASES)
+ update_appearance(UPDATE_ICON)
+ return TRUE
+ if("remove_case")
+ var/datum/case/case = locate(params["case_ref"]) in cases
+ if(case)
+ for(var/datum/evidence/evidence in case.evidences)
+ remove_item(evidence.item, user)
+ cases -= case
+ current_case = clamp(cases.len, 1, MAX_CASES)
+ update_appearance(UPDATE_ICON)
+ return TRUE
+ if("rename_case")
+ var/new_name = tgui_input_text(user, "Please ender the case new name", "Detective's Board")
+ if(new_name)
+ var/datum/case/case = locate(params["case_ref"]) in cases
+ case.name = new_name
+ return TRUE
+ if("look_evidence")
+ var/datum/case/case = locate(params["case_ref"]) in cases
+ var/datum/evidence/evidence = locate(params["evidence_ref"]) in case.evidences
+ if(evidence.evidence_type == EVIDENCE_TYPE_PHOTO)
+ var/obj/item/photo/item = evidence.item
+ item.show(user)
+ return TRUE
+
+ var/obj/item/paper/paper = evidence.item
+ var/paper_text = ""
+ for(var/datum/paper_input/text_input as anything in paper.raw_text_inputs)
+ paper_text += text_input.raw_text
+ user << browse("[paper.name] " \
+ + "" \
+ + "[paper_text]" \
+ + "", "window=photo_showing;size=480x608")
+ onclose(user, "[name]")
+ if("remove_evidence")
+ var/datum/case/case = cases[current_case]
+ var/datum/evidence/evidence = locate(params["evidence_ref"]) in case.evidences
+ if(evidence)
+ var/obj/item/item = evidence.item
+ if(!istype(item) || item.loc != src)
+ return
+ remove_item(item, user)
+ for(var/datum/evidence/connection in evidence.connections)
+ connection.connections.Remove(evidence)
+ case.evidences -= evidence
+ update_appearance(UPDATE_ICON)
+ return TRUE
+ if("set_evidence_cords")
+ var/datum/case/case = locate(params["case_ref"]) in cases
+ if(case)
+ var/datum/evidence/evidence = locate(params["evidence_ref"]) in case.evidences
+ if(evidence)
+ evidence.x = clamp(params["rel_x"], 0, MAX_EVIDENCE_X)
+ evidence.y = clamp(params["rel_y"], 0, MAX_EVIDENCE_Y)
+ return TRUE
+ if("add_connection")
+ var/datum/evidence/from_evidence = locate(params["from_ref"]) in cases[current_case].evidences
+ var/datum/evidence/to_evidence = locate(params["to_ref"]) in cases[current_case].evidences
+ if(from_evidence && to_evidence)
+ from_evidence.connections += to_evidence
+ to_evidence.connections += from_evidence
+ return TRUE
+
+
+ return FALSE
+
+/obj/structure/detectiveboard/update_overlays()
+ . = ..()
+ if(!cases.len)
+ return
+ if(cases[current_case].notices < MAX_ICON_NOTICES)
+ . += "notices_[cases[current_case].notices]"
+ else
+ . += "notices_[MAX_ICON_NOTICES]"
+/**
+ * Removes an item from the notice board
+ *
+ * Arguments:
+ * * item - The item that is to be removed
+ * * user - The mob that is trying to get the item removed, if there is one
+ */
+/obj/structure/detectiveboard/proc/remove_item(obj/item/item, mob/user)
+ item.forceMove(drop_location())
+ if(user)
+ user.put_in_hands(item)
+ balloon_alert(user, "removed from board")
+ cases[current_case].notices--
+ update_appearance(UPDATE_ICON)
+
+/obj/structure/detectiveboard/atom_deconstruct(disassembled = TRUE)
+ if(!disassembled)
+ new /obj/item/stack/sheet/mineral/wood(loc)
+ else
+ new /obj/item/wallframe/detectiveboard(loc)
+ for(var/obj/item/content in contents)
+ remove_item(content)
+
+/obj/item/wallframe/detectiveboard
+ name = "detective notice board"
+ desc = "A board for linking evidence to crimes."
+ icon = 'icons/obj/wallmounts.dmi'
+ icon_state = "noticeboard"
+ custom_materials = list(
+ /datum/material/wood = SHEET_MATERIAL_AMOUNT,
+ )
+ resistance_flags = FLAMMABLE
+ result_path = /obj/structure/detectiveboard
+ pixel_shift = 32
+
+/datum/evidence
+ var/name = "None"
+ var/description = "No description"
+ var/evidence_type = "none"
+ var/x = 0
+ var/y = 0
+ var/list/datum/evidence/connections = list()
+ var/obj/item/item = null
+
+/datum/evidence/New(param_name, param_desc, obj/item/param_item)
+ name = param_name
+ description = param_desc
+ item = param_item
+ if(istype(param_item, /obj/item/photo))
+ evidence_type = EVIDENCE_TYPE_PHOTO
+ else
+ evidence_type = EVIDENCE_TYPE_PAPER
+
+/datum/case
+ var/notices = 0
+ var/name = ""
+ var/color = 0
+ var/list/datum/evidence/evidences = list()
+
+/datum/case/New(param_name, param_color)
+ name = param_name
+ color = param_color
+
+
+#undef EVIDENCE_TYPE_PHOTO
+#undef EVIDENCE_TYPE_PAPER
+
+#undef MAX_EVIDENCE_Y
+#undef MAX_EVIDENCE_X
+#undef MAX_ICON_NOTICES
+#undef MAX_CASES
diff --git a/code/game/objects/structures/displaycase.dm b/code/game/objects/structures/displaycase.dm
index faebf85265c..7061d514a29 100644
--- a/code/game/objects/structures/displaycase.dm
+++ b/code/game/objects/structures/displaycase.dm
@@ -101,8 +101,13 @@
/obj/structure/displaycase/proc/trigger_alarm()
if(!alert)
return
+<<<<<<< HEAD
//var/area/alarmed = get_area(src) SKYRAT EDIT REMOVAL
//alarmed.burglaralert(src) SKYRAT EDIT REMOVAL
+=======
+ var/area/alarmed = get_area(src)
+ alarmed.burglaralert(src)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
alarm_manager.send_alarm(ALARM_BURGLAR)
addtimer(CALLBACK(alarm_manager, TYPE_PROC_REF(/datum/alarm_handler, clear_alarm), ALARM_BURGLAR), 1 MINUTES)
@@ -411,7 +416,11 @@
data["showpiece_icon"] = icon2base64(getFlatIcon(showpiece, no_anim=TRUE))
return data
+<<<<<<< HEAD
/obj/structure/displaycase/trophy/ui_act(action, params)
+=======
+/obj/structure/displaycase/trophy/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -526,7 +535,11 @@
data["product_icon"] = showpiece ? icon2base64(getFlatIcon(showpiece, no_anim=TRUE)) : null
return data
+<<<<<<< HEAD
/obj/structure/displaycase/forsale/ui_act(action, params)
+=======
+/obj/structure/displaycase/forsale/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/structures/dresser.dm b/code/game/objects/structures/dresser.dm
index feb9cff2f00..13618546ebf 100644
--- a/code/game/objects/structures/dresser.dm
+++ b/code/game/objects/structures/dresser.dm
@@ -34,7 +34,11 @@
to_chat(dressing_human, span_warning("You are not capable of wearing underwear."))
return
+<<<<<<< HEAD
var/choice = tgui_input_list(user, "Underwear, Bra, Undershirt, or Socks?", "Changing", list("Underwear", "Underwear Color", "Bra", "Bra Color", "Undershirt", "Undershirt Color", "Socks", "Socks Color")) //SKYRAT EDIT ADDITION - Colorable Undershirt/Socks/Bra
+=======
+ var/choice = tgui_input_list(user, "Underwear, Undershirt, or Socks?", "Changing", list("Underwear","Underwear Color","Undershirt","Socks"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(isnull(choice))
return
@@ -57,6 +61,7 @@
var/new_socks = tgui_input_list(user, "Select your socks", "Changing", SSaccessories.socks_list)
if(new_socks)
dressing_human.socks = new_socks
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - Colorable Undershirt/Socks/Bras
if("Undershirt Color")
var/new_undershirt_color = input(dressing_human, "Choose your undershirt color", "Undershirt Color", dressing_human.undershirt_color) as color|null
@@ -79,5 +84,8 @@
//SKYRAT EDIT ADDITION END - Colorable Undershirt/Socks/Bras
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
add_fingerprint(dressing_human)
dressing_human.update_body()
diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm
index 1791d72aa12..74646977069 100644
--- a/code/game/objects/structures/extinguisher.dm
+++ b/code/game/objects/structures/extinguisher.dm
@@ -16,8 +16,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/extinguisher_cabinet, 29)
. = ..()
if(building)
opened = TRUE
+<<<<<<< HEAD
//icon_state = "extinguisher_empty" ORIGINAL
icon_state = "extinguisher_empty_open" //SKYRAT EDIT CHANGE - AESTHETICS
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
stored_extinguisher = new /obj/item/extinguisher(src)
update_appearance(UPDATE_ICON)
@@ -160,7 +163,10 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/extinguisher_cabinet, 29)
icon_state += "_closed"
return ..()
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/extinguisher_cabinet/atom_break(damage_flag)
. = ..()
diff --git a/code/game/objects/structures/fireplace.dm b/code/game/objects/structures/fireplace.dm
index 97a9ce8bd4d..8958d4a62b2 100644
--- a/code/game/objects/structures/fireplace.dm
+++ b/code/game/objects/structures/fireplace.dm
@@ -95,6 +95,7 @@
return
switch(burn_time_remaining())
+<<<<<<< HEAD
if(0 to 19999) //SKYRAT EDIT original: if(0 to 500)
. += "fireplace_fire0"
if(20000 to 39999) //SKYRAT EDIT original: if(500 to 1000)
@@ -104,6 +105,17 @@
if(60000 to 79999) //SKYRAT EDIT original: if(1500 to 2000)
. += "fireplace_fire3"
if(80000 to MAXIMUM_BURN_TIMER) //SKYRAT EDIT original: if(2000 to MAXIMUM_BURN_TIMER)
+=======
+ if(0 to 500)
+ . += "fireplace_fire0"
+ if(500 to 1000)
+ . += "fireplace_fire1"
+ if(1000 to 1500)
+ . += "fireplace_fire2"
+ if(1500 to 2000)
+ . += "fireplace_fire3"
+ if(2000 to MAXIMUM_BURN_TIMER)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. += "fireplace_fire4"
. += "fireplace_glow"
diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm
index c9804fab0f8..bd8bad94406 100644
--- a/code/game/objects/structures/girders.dm
+++ b/code/game/objects/structures/girders.dm
@@ -82,7 +82,11 @@
balloon_alert(user, "need [amount] rods!")
return
balloon_alert(user, "concealing entrance...")
+<<<<<<< HEAD
if(do_after(user, 2 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 2 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(rod.get_amount() < amount)
return
rod.use(amount)
@@ -96,13 +100,20 @@
balloon_alert(user, "need [amount] rods!")
return
balloon_alert(user, "adding plating...")
+<<<<<<< HEAD
if(do_after(user, 4 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 4 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(rod.get_amount() < amount)
return
rod.use(amount)
var/turf/T = get_turf(src)
T.place_on_top(/turf/closed/wall/mineral/iron)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
transfer_fingerprints_to(T)
qdel(src)
return
@@ -118,7 +129,11 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "concealing entrance...")
+<<<<<<< HEAD
if(do_after(user, 20 * platingmodifier * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 20*platingmodifier, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
@@ -135,12 +150,19 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "adding plating...")
+<<<<<<< HEAD
if (do_after(user, 4 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if (do_after(user, 4 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
var/obj/structure/tram/alt/iron/tram_wall = new(loc)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
transfer_fingerprints_to(tram_wall)
qdel(src)
return
@@ -149,13 +171,20 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "adding plating...")
+<<<<<<< HEAD
if (do_after(user, 40 * platingmodifier * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if (do_after(user, 40*platingmodifier, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
var/turf/T = get_turf(src)
T.place_on_top(/turf/closed/wall)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
transfer_fingerprints_to(T)
qdel(src)
return
@@ -166,12 +195,19 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "adding panel...")
+<<<<<<< HEAD
if (do_after(user, 2 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if (do_after(user, 2 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
var/obj/structure/tram/tram_wall = new(loc)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
transfer_fingerprints_to(tram_wall)
qdel(src)
return
@@ -183,7 +219,11 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "concealing entrance...")
+<<<<<<< HEAD
if(do_after(user, 2 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 2 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
@@ -197,13 +237,20 @@
if(sheets.get_amount() < amount)
return
balloon_alert(user, "adding plating...")
+<<<<<<< HEAD
if(do_after(user, 50 * platingmodifier * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 50*platingmodifier, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
var/turf/T = get_turf(src)
T.place_on_top(/turf/closed/wall/r_wall)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
transfer_fingerprints_to(T)
qdel(src)
return
@@ -212,7 +259,11 @@
if(sheets.get_amount() < amount)
return
balloon_alert(user, "reinforcing frame...")
+<<<<<<< HEAD
if(do_after(user, 60 * platingmodifier * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 60*platingmodifier, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
@@ -226,6 +277,10 @@
if(istype(src, /obj/structure/girder/reinforced))
balloon_alert(user, "need plasteel!")
return
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/M = sheets.sheettype
var/amount = construction_cost["exotic_material"]
if(state == GIRDER_TRAM)
@@ -237,12 +292,19 @@
balloon_alert(user, "need titanium glass or mineral!")
return
balloon_alert(user, "adding plating...")
+<<<<<<< HEAD
if (do_after(user, 4 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if (do_after(user, 4 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
var/obj/structure/tram/tram_wall
tram_wall = new tram_wall_type(loc)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sheets.use(amount)
transfer_fingerprints_to(tram_wall)
qdel(src)
@@ -253,12 +315,19 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "concealing entrance...")
+<<<<<<< HEAD
if(do_after(user, 2 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if(do_after(user, 2 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
var/obj/structure/falsewall/falsewall
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(falsewall_type)
falsewall = new falsewall_type (loc)
else
@@ -276,12 +345,19 @@
balloon_alert(user, "need [amount] sheets!")
return
balloon_alert(user, "adding plating...")
+<<<<<<< HEAD
if (do_after(user, 4 SECONDS * skill_modifier, target = src)) //SKYRAT EDIT
+=======
+ if (do_after(user, 4 SECONDS, target = src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.get_amount() < amount)
return
sheets.use(amount)
var/turf/T = get_turf(src)
+<<<<<<< HEAD
user.mind.adjust_experience(/datum/skill/construction, 5) //SKYRAT EDIT
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(sheets.walltype)
T.place_on_top(sheets.walltype)
else
diff --git a/code/game/objects/structures/guncase.dm b/code/game/objects/structures/guncase.dm
index 4f4972d4864..49a6c95604b 100644
--- a/code/game/objects/structures/guncase.dm
+++ b/code/game/objects/structures/guncase.dm
@@ -104,7 +104,11 @@
return FALSE
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated())
+=======
+ if(user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/structures/janitor.dm b/code/game/objects/structures/janitor.dm
index 0413bcac539..1c981e56954 100644
--- a/code/game/objects/structures/janitor.dm
+++ b/code/game/objects/structures/janitor.dm
@@ -337,7 +337,11 @@
* * user The mob interacting with a menu
*/
/obj/structure/mop_bucket/janitorialcart/proc/check_menu(mob/living/user)
+<<<<<<< HEAD
return istype(user) && !user.incapacitated()
+=======
+ return istype(user) && !user.incapacitated
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/mop_bucket/janitorialcart/update_overlays()
. = ..()
diff --git a/code/game/objects/structures/kitchen_spike.dm b/code/game/objects/structures/kitchen_spike.dm
index c13e8f7e4ae..f739a67bb5d 100644
--- a/code/game/objects/structures/kitchen_spike.dm
+++ b/code/game/objects/structures/kitchen_spike.dm
@@ -12,6 +12,60 @@
/obj/structure/kitchenspike_frame/Initialize(mapload)
. = ..()
register_context()
+<<<<<<< HEAD
+=======
+
+/obj/structure/kitchenspike_frame/examine(mob/user)
+ . = ..()
+ . += "It can be welded apart."
+ . += "You could attach [MEATSPIKE_IRONROD_REQUIREMENT] iron rods to it to create a Meat Spike ."
+
+/obj/structure/kitchenspike_frame/add_context(atom/source, list/context, obj/item/held_item, mob/living/user)
+ if(isnull(held_item))
+ return NONE
+
+ var/message = ""
+ if(held_item.tool_behaviour == TOOL_WELDER)
+ message = "Deconstruct"
+ else if(held_item.tool_behaviour == TOOL_WRENCH)
+ message = "Bolt Down Frame"
+
+ if(!message)
+ return NONE
+ context[SCREENTIP_CONTEXT_LMB] = message
+ return CONTEXTUAL_SCREENTIP_SET
+
+/obj/structure/kitchenspike_frame/welder_act(mob/living/user, obj/item/tool)
+ if(!tool.tool_start_check(user, amount = 0))
+ return FALSE
+ to_chat(user, span_notice("You begin cutting \the [src] apart..."))
+ if(!tool.use_tool(src, user, 5 SECONDS, volume = 50))
+ return TRUE
+ visible_message(span_notice("[user] slices apart \the [src]."),
+ span_notice("You cut \the [src] apart with \the [tool]."),
+ span_hear("You hear welding."))
+ new /obj/item/stack/sheet/iron(loc, MEATSPIKE_IRONROD_REQUIREMENT)
+ qdel(src)
+ return TRUE
+
+/obj/structure/kitchenspike_frame/wrench_act(mob/living/user, obj/item/tool)
+ default_unfasten_wrench(user, tool)
+ return TRUE
+
+/obj/structure/kitchenspike_frame/attackby(obj/item/attacking_item, mob/user, params)
+ add_fingerprint(user)
+ if(!istype(attacking_item, /obj/item/stack/rods))
+ return ..()
+ var/obj/item/stack/rods/used_rods = attacking_item
+ if(used_rods.get_amount() >= MEATSPIKE_IRONROD_REQUIREMENT)
+ used_rods.use(MEATSPIKE_IRONROD_REQUIREMENT)
+ balloon_alert(user, "meatspike built")
+ var/obj/structure/new_meatspike = new /obj/structure/kitchenspike(loc)
+ transfer_fingerprints_to(new_meatspike)
+ qdel(src)
+ return
+ balloon_alert(user, "[MEATSPIKE_IRONROD_REQUIREMENT] rods needed!")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/kitchenspike_frame/examine(mob/user)
. = ..()
diff --git a/code/game/objects/structures/ladders.dm b/code/game/objects/structures/ladders.dm
index 314539aa2b4..b3ab6b62af4 100644
--- a/code/game/objects/structures/ladders.dm
+++ b/code/game/objects/structures/ladders.dm
@@ -182,7 +182,11 @@
INVOKE_ASYNC(src, PROC_REF(start_travelling), user, going_up)
/obj/structure/ladder/proc/check_menu(mob/user, is_ghost)
+<<<<<<< HEAD
if(user.incapacitated() || (!user.Adjacent(src)))
+=======
+ if(user.incapacitated || (!user.Adjacent(src)))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/structures/maintenance.dm b/code/game/objects/structures/maintenance.dm
index 375d5269918..8d6446b271f 100644
--- a/code/game/objects/structures/maintenance.dm
+++ b/code/game/objects/structures/maintenance.dm
@@ -226,7 +226,11 @@ at the cost of risking a vicious bite.**/
/obj/structure/destructible/cult/pants_altar/proc/check_menu(mob/user)
if(!istype(user))
return FALSE
+<<<<<<< HEAD
if(user.incapacitated() || !user.Adjacent(src))
+=======
+ if(user.incapacitated || !user.Adjacent(src))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return FALSE
return TRUE
diff --git a/code/game/objects/structures/mannequin.dm b/code/game/objects/structures/mannequin.dm
index c5296883763..41e25d61034 100644
--- a/code/game/objects/structures/mannequin.dm
+++ b/code/game/objects/structures/mannequin.dm
@@ -98,6 +98,7 @@
var/datum/sprite_accessory/underwear/underwear = SSaccessories.underwear_list[underwear_name]
if(underwear)
if(body_type == FEMALE && underwear.gender == MALE)
+<<<<<<< HEAD
. += wear_female_version(underwear.icon_state, underwear.icon, BODY_LAYER, FEMALE_UNIFORM_FULL)
else
. += mutable_appearance(underwear.icon, underwear.icon_state, -BODY_LAYER)
@@ -116,6 +117,20 @@
. += mutable_appearance(bra.icon, bra.icon_state, -BODY_LAYER)
//SKYRAT EDIT END
+=======
+ . += mutable_appearance(wear_female_version(underwear.icon_state, underwear.icon, FEMALE_UNIFORM_FULL), layer = -BODY_LAYER)
+ else
+ . += mutable_appearance(underwear.icon, underwear.icon_state, layer = -BODY_LAYER)
+ var/datum/sprite_accessory/undershirt/undershirt = SSaccessories.undershirt_list[undershirt_name]
+ if(undershirt)
+ if(body_type == FEMALE)
+ . += mutable_appearance(wear_female_version(undershirt.icon_state, undershirt.icon), layer = -BODY_LAYER)
+ else
+ . += mutable_appearance(undershirt.icon, undershirt.icon_state, layer = -BODY_LAYER)
+ var/datum/sprite_accessory/socks/socks = SSaccessories.socks_list[socks_name]
+ if(socks)
+ . += mutable_appearance(socks.icon, socks.icon_state, -BODY_LAYER)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
for(var/slot_flag in worn_items)
var/obj/item/worn_item = worn_items[slot_flag]
if(!worn_item)
@@ -169,7 +184,11 @@
. = ..()
if(. == SECONDARY_ATTACK_CANCEL_ATTACK_CHAIN)
return
+<<<<<<< HEAD
var/choice = tgui_input_list(user, "Underwear, Bra, Undershirt, or Socks?", "Changing", list("Underwear", "Bra", "Undershirt","Socks")) //SKYRAT EDIT ADDITION - Underwear and Bra split
+=======
+ var/choice = tgui_input_list(user, "Underwear, Undershirt, or Socks?", "Changing", list("Underwear","Undershirt","Socks"))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!Adjacent(user))
return
switch(choice)
@@ -185,12 +204,15 @@
var/new_socks = tgui_input_list(user, "Select the mannequin's socks", "Changing", SSaccessories.socks_list)
if(new_socks)
socks_name = new_socks
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION BEGIN - Underwear and Bra split
if("Bra")
var/new_bra = tgui_input_list(user, "Select the mannequin's bra", "Changing", SSaccessories.bra_list)
if(new_bra)
bra_name = new_bra
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
update_appearance()
/obj/structure/mannequin/wood
diff --git a/code/game/objects/structures/mirror.dm b/code/game/objects/structures/mirror.dm
index 5fae9be3e88..b682e8f45b3 100644
--- a/code/game/objects/structures/mirror.dm
+++ b/code/game/objects/structures/mirror.dm
@@ -79,7 +79,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/mirror/broken, 28)
/obj/structure/mirror/attack_hand(mob/living/carbon/human/user)
. = ..()
+<<<<<<< HEAD
if(. || !ishuman(user) || broken || !istype(src, /obj/structure/mirror/magic)) // SKYRAT EDIT CHANGE - MUNDANE MIRRORS DON'T LET YOU CHANGE - ORIGINAL: if(. || !ishuman(user) || broken)
+=======
+ if(. || !ishuman(user) || broken)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return TRUE
if(!istype(src, /obj/structure/mirror/magic) && !user.can_perform_action(src, FORBID_TELEKINESIS_REACH))
@@ -354,7 +358,10 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/mirror/broken, 28)
user.set_facial_haircolor(sanitize_hexcolor(new_face_color), update = FALSE)
user.dna.update_ui_block(DNA_FACIAL_HAIR_COLOR_BLOCK)
user.update_body_parts()
+<<<<<<< HEAD
user.update_mutant_bodyparts() /// SKYRAT EDIT ADDITION - Mirrors are no longer scared of colored ears
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/mirror/magic/attack_hand(mob/living/carbon/human/user)
. = ..()
diff --git a/code/game/objects/structures/morgue.dm b/code/game/objects/structures/morgue.dm
index 27997d3059c..ddafc93e549 100644
--- a/code/game/objects/structures/morgue.dm
+++ b/code/game/objects/structures/morgue.dm
@@ -31,7 +31,11 @@
GLOBAL_LIST_EMPTY(bodycontainers) //Let them act as spawnpoints for revenants and other ghosties.
/obj/structure/bodycontainer
+<<<<<<< HEAD
icon = 'icons/obj/structures.dmi'//ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/structures.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "morgue1"
density = TRUE
anchored = TRUE
@@ -486,10 +490,13 @@ GLOBAL_LIST_EMPTY(crematoriums)
qdel(M)
for(var/obj/O in conts) //conts defined above, ignores crematorium and tray
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION
if(istype(O, /obj/item/goldeneye_key))
continue
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(istype(O, /obj/effect/dummy/phased_mob)) //they're not physical, don't burn em.
continue
qdel(O)
diff --git a/code/game/objects/structures/noticeboard.dm b/code/game/objects/structures/noticeboard.dm
index 841da899725..477b690c8af 100644
--- a/code/game/objects/structures/noticeboard.dm
+++ b/code/game/objects/structures/noticeboard.dm
@@ -66,7 +66,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/noticeboard, 32)
data["items"] += list(content_data)
return data
+<<<<<<< HEAD
/obj/structure/noticeboard/ui_act(action, params)
+=======
+/obj/structure/noticeboard/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm
index d1c70dd188a..65ffa10d1c1 100644
--- a/code/game/objects/structures/plasticflaps.dm
+++ b/code/game/objects/structures/plasticflaps.dm
@@ -2,7 +2,11 @@
name = "airtight plastic flaps"
desc = "Heavy duty, airtight, plastic flaps. Definitely can't get past those. No way."
gender = PLURAL
+<<<<<<< HEAD
icon = 'icons/obj/structures.dmi'//ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/structures.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "plasticflaps"
armor_type = /datum/armor/structure_plasticflaps
density = FALSE
diff --git a/code/game/objects/structures/railings.dm b/code/game/objects/structures/railings.dm
index b23641a416a..028b659d017 100644
--- a/code/game/objects/structures/railings.dm
+++ b/code/game/objects/structures/railings.dm
@@ -24,18 +24,42 @@
laser = 50
energy = 100
bomb = 10
+<<<<<<< HEAD
+=======
+
+/obj/structure/railing/unbreakable
+ resistance_flags = INDESTRUCTIBLE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/railing/corner //aesthetic corner sharp edges hurt oof ouch
icon_state = "railing_corner"
density = FALSE
climbable = FALSE
+<<<<<<< HEAD
/obj/structure/railing/corner/end //end of a segment of railing without making a loop
icon_state = "railing_end"
/obj/structure/railing/corner/end/flip //same as above but flipped around
icon_state = "railing_end_flip"
+=======
+/obj/structure/railing/corner/unbreakable
+ resistance_flags = INDESTRUCTIBLE
+
+/obj/structure/railing/corner/end //end of a segment of railing without making a loop
+ icon_state = "railing_end"
+
+/obj/structure/railing/corner/end/unbreakable
+ resistance_flags = INDESTRUCTIBLE
+
+/obj/structure/railing/corner/end/flip //same as above but flipped around
+ icon_state = "railing_end_flip"
+
+/obj/structure/railing/corner/end/flip/unbreakable
+ resistance_flags = INDESTRUCTIBLE
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/structure/railing/Initialize(mapload)
. = ..()
if(climbable)
diff --git a/code/game/objects/structures/reflector.dm b/code/game/objects/structures/reflector.dm
index e27f5fcf42b..12b6cf134b8 100644
--- a/code/game/objects/structures/reflector.dm
+++ b/code/game/objects/structures/reflector.dm
@@ -311,7 +311,11 @@
return data
+<<<<<<< HEAD
/obj/structure/reflector/ui_act(action, params)
+=======
+/obj/structure/reflector/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm
index bcc9d138695..b5a2527b6c9 100644
--- a/code/game/objects/structures/safe.dm
+++ b/code/game/objects/structures/safe.dm
@@ -129,7 +129,11 @@ FLOOR SAFES
return data
+<<<<<<< HEAD
/obj/structure/safe/ui_act(action, params)
+=======
+/obj/structure/safe/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/structures/showcase.dm b/code/game/objects/structures/showcase.dm
index 14ac0526394..6d18c5d58c3 100644
--- a/code/game/objects/structures/showcase.dm
+++ b/code/game/objects/structures/showcase.dm
@@ -52,7 +52,10 @@
/obj/structure/showcase/machinery/oldpod/used/psyker
name = "opened mental energizer"
desc = "A mental energizer that has recently discharged its occupant. The pod appears non-functional."
+<<<<<<< HEAD
icon = 'icons/obj/machines/sleeper.dmi'
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "psykerpod-open"
/obj/structure/showcase/cyborg/old
diff --git a/code/game/objects/structures/shower.dm b/code/game/objects/structures/shower.dm
index 67fe92951d0..b2889a29469 100644
--- a/code/game/objects/structures/shower.dm
+++ b/code/game/objects/structures/shower.dm
@@ -120,6 +120,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/shower, (-16))
return TRUE
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
/obj/machinery/shower/plunger_act(obj/item/plunger/P, mob/living/user, reinforced)
if(do_after(user, 3 SECONDS, src))
@@ -127,6 +128,8 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/shower, (-16))
balloon_alert(user, "reservoir emptied")
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/shower/analyzer_act(mob/living/user, obj/item/tool)
. = ..()
@@ -194,10 +197,13 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/shower, (-16))
I.play_tool_sound(src)
deconstruct()
return TRUE
+<<<<<<< HEAD
/obj/machinery/shower/setDir(newdir)
. = ..()
update_appearance(UPDATE_OVERLAYS)
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/obj/machinery/shower/update_overlays()
. = ..()
@@ -206,6 +212,7 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/shower, (-16))
var/mutable_appearance/water_falling = mutable_appearance('icons/obj/watercloset.dmi', "water", ABOVE_MOB_LAYER)
water_falling.color = mix_color_from_reagents(reagents.reagent_list)
switch(dir)
+<<<<<<< HEAD
if(SOUTH)
water_falling.pixel_z -= 24
@@ -214,6 +221,16 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/machinery/shower, (-16))
if(WEST)
water_falling.pixel_w -= 16
+=======
+ if(NORTH)
+ water_falling.pixel_y += pixel_shift
+ if(SOUTH)
+ water_falling.pixel_y -= pixel_shift
+ if(EAST)
+ water_falling.pixel_x += pixel_shift
+ if(WEST)
+ water_falling.pixel_x -= pixel_shift
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. += water_falling
/obj/machinery/shower/on_changed_z_level(turf/old_turf, turf/new_turf, same_z_layer, notify_contents)
diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm
index f813e355c7e..3a2b7324854 100644
--- a/code/game/objects/structures/tables_racks.dm
+++ b/code/game/objects/structures/tables_racks.dm
@@ -480,7 +480,11 @@
check_break(M)
/obj/structure/table/glass/proc/check_break(mob/living/M)
+<<<<<<< HEAD
if(M.has_gravity() && M.mob_size > MOB_SIZE_SMALL && !(M.movement_type & MOVETYPES_NOT_TOUCHING_GROUND) && (!isteshari(M))) //SKYRAT EDIT ADDITION - Allows Teshari to climb on glassies safely.
+=======
+ if(M.has_gravity() && M.mob_size > MOB_SIZE_SMALL && !(M.movement_type & MOVETYPES_NOT_TOUCHING_GROUND))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
table_shatter(M)
/obj/structure/table/glass/proc/table_shatter(mob/living/victim)
@@ -794,6 +798,7 @@
pushed_mob.set_resting(TRUE, TRUE)
visible_message(span_notice("[user] lays [pushed_mob] on [src]."))
+<<<<<<< HEAD
/// Any mob that enters our tile will be marked as a potential patient. They will be turned into a patient if they lie down.
/obj/structure/table/optable/proc/mark_patient(datum/source, mob/living/carbon/potential_patient)
SIGNAL_HANDLER
@@ -802,6 +807,26 @@
RegisterSignal(potential_patient, COMSIG_LIVING_SET_BODY_POSITION, PROC_REF(recheck_patient))
recheck_patient(potential_patient) // In case the mob is already lying down before they entered.
+=======
+///Align the mob with the table when buckled.
+/obj/structure/table/optable/post_buckle_mob(mob/living/buckled)
+ . = ..()
+ buckled.pixel_y += 6
+
+///Disalign the mob with the table when unbuckled.
+/obj/structure/table/optable/post_unbuckle_mob(mob/living/buckled)
+ . = ..()
+ buckled.pixel_y -= 6
+
+/// Any mob that enters our tile will be marked as a potential patient. They will be turned into a patient if they lie down.
+/obj/structure/table/optable/proc/mark_patient(datum/source, mob/living/carbon/potential_patient)
+ SIGNAL_HANDLER
+ if(!istype(potential_patient))
+ return
+ RegisterSignal(potential_patient, COMSIG_LIVING_SET_BODY_POSITION, PROC_REF(recheck_patient))
+ recheck_patient(potential_patient) // In case the mob is already lying down before they entered.
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// Unmark the potential patient.
/obj/structure/table/optable/proc/unmark_patient(datum/source, mob/living/carbon/potential_patient)
SIGNAL_HANDLER
@@ -821,12 +846,17 @@
if(potential_patient.body_position == LYING_DOWN && potential_patient.loc == loc)
patient = potential_patient
+<<<<<<< HEAD
chill_out(patient) // SKYRAT EDIT - Operation Table Numbing
return
if(!isnull(patient)) // SKYRAT EDIT - Operation Table Numbing
thaw_them(patient) // SKYRAT EDIT - Operation Table Numbing
+=======
+ return
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Find another lying mob as a replacement.
for (var/mob/living/carbon/replacement_patient in loc.contents)
if(replacement_patient.body_position == LYING_DOWN)
diff --git a/code/game/objects/structures/training_machine.dm b/code/game/objects/structures/training_machine.dm
index bed4c4805cc..e08e9a251d7 100644
--- a/code/game/objects/structures/training_machine.dm
+++ b/code/game/objects/structures/training_machine.dm
@@ -79,7 +79,11 @@
*
* Will not respond if moving and emagged, so once you set it to go it can't be stopped!
*/
+<<<<<<< HEAD
/obj/structure/training_machine/ui_act(action, params)
+=======
+/obj/structure/training_machine/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/game/objects/structures/transit_tubes/transit_tube_pod.dm b/code/game/objects/structures/transit_tubes/transit_tube_pod.dm
index f88aadc0463..bbd5a0cd308 100644
--- a/code/game/objects/structures/transit_tubes/transit_tube_pod.dm
+++ b/code/game/objects/structures/transit_tubes/transit_tube_pod.dm
@@ -69,7 +69,11 @@
deconstruct(FALSE)
/obj/structure/transit_tube_pod/container_resist_act(mob/living/user)
+<<<<<<< HEAD
if(!user.incapacitated())
+=======
+ if(!user.incapacitated)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
empty_pod()
return
if(!moving)
diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm
index 04428bb617f..60bb9f3aec5 100644
--- a/code/game/objects/structures/window.dm
+++ b/code/game/objects/structures/window.dm
@@ -108,7 +108,11 @@
/obj/structure/window/singularity_pull(S, current_size)
..()
+<<<<<<< HEAD
if(anchored && current_size >= STAGE_FIVE) //SKYRAT EDIT CHANGE
+=======
+ if(anchored && current_size >= STAGE_TWO)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
set_anchored(FALSE)
if(current_size >= STAGE_FIVE)
deconstruct(FALSE)
@@ -450,6 +454,10 @@
addtimer(CALLBACK(src, TYPE_PROC_REF(/atom/movable, forceMove), loc), time_to_go + time_to_return) //we back boys
addtimer(VARSET_CALLBACK(src, dramatically_disappearing, FALSE), time_to_go + time_to_return) //also set the var back
addtimer(CALLBACK(src, TYPE_PROC_REF(/atom, update_appearance)), time_to_go + time_to_return)
+<<<<<<< HEAD
+=======
+ addtimer(CALLBACK(GLOBAL_PROC, GLOBAL_PROC_REF(playsound), get_turf(src), 'sound/effects/glass_reverse.ogg', 70, TRUE), time_to_go + time_to_return)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/obj/structure/grille/grill = take_grill ? (locate(/obj/structure/grille) in loc) : null
if(grill)
@@ -490,7 +498,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/window/unanchored/spawner, 0)
//2022 BABYYYYY ~lewc
//2023 ONE YEAR TO GO! -LT3
/datum/armor/window_reinforced
+<<<<<<< HEAD
melee = 50
+=======
+ melee = 80
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
bomb = 25
fire = 80
acid = 100
@@ -684,7 +696,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/window/reinforced/tinted/frosted/spaw
/obj/structure/window/fulltile
name = "full tile window"
desc = "A full tile window."
+<<<<<<< HEAD
icon = 'icons/obj/smooth_structures/window.dmi' //ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/smooth_structures/window.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "window-0"
base_icon_state = "window"
max_integrity = 100
@@ -705,7 +721,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/window/reinforced/tinted/frosted/spaw
anchored = FALSE
/obj/structure/window/plasma/fulltile
+<<<<<<< HEAD
icon = 'icons/obj/smooth_structures/plasma_window.dmi' //ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/smooth_structures/plasma_window.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "plasma_window-0"
base_icon_state = "plasma_window"
max_integrity = 400
@@ -721,7 +741,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/window/reinforced/tinted/frosted/spaw
anchored = FALSE
/obj/structure/window/reinforced/plasma/fulltile
+<<<<<<< HEAD
icon = 'icons/obj/smooth_structures/rplasma_window.dmi' //ICON OVERRIDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/smooth_structures/rplasma_window.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "rplasma_window-0"
base_icon_state = "rplasma_window"
state = RWINDOW_SECURE
@@ -741,7 +765,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/window/reinforced/tinted/frosted/spaw
/obj/structure/window/reinforced/fulltile
name = "full tile reinforced window"
desc = "A full tile window that is reinforced with metal rods."
+<<<<<<< HEAD
icon = 'icons/obj/smooth_structures/reinforced_window.dmi' //ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/smooth_structures/reinforced_window.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "reinforced_window-0"
base_icon_state = "reinforced_window"
max_integrity = 150
@@ -764,7 +792,11 @@ MAPPING_DIRECTIONAL_HELPERS(/obj/structure/window/reinforced/tinted/frosted/spaw
state = WINDOW_OUT_OF_FRAME
/obj/structure/window/reinforced/tinted/fulltile
+<<<<<<< HEAD
icon = 'icons/obj/smooth_structures/tinted_window.dmi' //ICON OVERRIDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/obj/smooth_structures/tinted_window.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "tinted_window-0"
base_icon_state = "tinted_window"
fulltile = TRUE
diff --git a/code/game/say.dm b/code/game/say.dm
index ee54ef4a8f7..c94a1db85a1 100644
--- a/code/game/say.dm
+++ b/code/game/say.dm
@@ -12,6 +12,7 @@ GLOBAL_LIST_INIT(freqtospan, list(
"[FREQ_SECURITY]" = "secradio",
"[FREQ_COMMAND]" = "comradio",
"[FREQ_AI_PRIVATE]" = "aiprivradio",
+ "[FREQ_ENTERTAINMENT]" = "enteradio",
"[FREQ_SYNDICATE]" = "syndradio",
"[FREQ_UPLINK]" = "syndradio", // this probably shouldnt appear ingame
"[FREQ_CENTCOM]" = "centcomradio",
diff --git a/code/game/sound.dm b/code/game/sound.dm
index 7ce288c9db8..01371ce1030 100644
--- a/code/game/sound.dm
+++ b/code/game/sound.dm
@@ -170,8 +170,13 @@
sound_to_use.environment = A.sound_environment
if(use_reverb && sound_to_use.environment != SOUND_ENVIRONMENT_NONE) //We have reverb, reset our echo setting
+<<<<<<< HEAD
sound_to_use.echo[3] = -1300 //Room setting, 0 means normal reverb //SKYRAT EDIT CHANGE
sound_to_use.echo[4] = -1300 //RoomHF setting, 0 means normal reverb. //SKYRAT EDIT CHANGE
+=======
+ sound_to_use.echo[3] = 0 //Room setting, 0 means normal reverb
+ sound_to_use.echo[4] = 0 //RoomHF setting, 0 means normal reverb.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SEND_SOUND(src, sound_to_use)
@@ -203,7 +208,10 @@
///Used to convert a SFX define into a .ogg so we can add some variance to sounds. If soundin is already a .ogg, we simply return it
/proc/get_sfx(soundin)
+<<<<<<< HEAD
soundin = get_sfx_skyrat(soundin) // SKYRAT EDIT ADDITION - This overrides the default sound effects too, so use it to modularly change a sound effect output.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!istext(soundin))
return soundin
switch(soundin)
@@ -496,4 +504,28 @@
'sound/items/stones/stone_pick_up1.ogg',
'sound/items/stones/stone_pick_up2.ogg',
)
+<<<<<<< HEAD
+=======
+ if(SFX_MUFFLED_SPEECH)
+ soundin = pick(
+ 'sound/effects/muffspeech/muffspeech1.ogg',
+ 'sound/effects/muffspeech/muffspeech2.ogg',
+ 'sound/effects/muffspeech/muffspeech3.ogg',
+ 'sound/effects/muffspeech/muffspeech4.ogg',
+ 'sound/effects/muffspeech/muffspeech5.ogg',
+ 'sound/effects/muffspeech/muffspeech6.ogg',
+ 'sound/effects/muffspeech/muffspeech7.ogg',
+ 'sound/effects/muffspeech/muffspeech8.ogg',
+ 'sound/effects/muffspeech/muffspeech9.ogg',
+ )
+ if(SFX_DEFAULT_FISH_SLAP)
+ soundin = 'sound/creatures/fish/fish_slap1.ogg'
+ if(SFX_ALT_FISH_SLAP)
+ soundin = 'sound/creatures/fish/fish_slap2.ogg'
+ if(SFX_FISH_PICKUP)
+ soundin = pick(
+ 'sound/creatures/fish/fish_pickup1.ogg',
+ 'sound/creatures/fish/fish_pickup2.ogg',
+ )
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return soundin
diff --git a/code/game/turfs/change_turf.dm b/code/game/turfs/change_turf.dm
index a1f64556153..6433c15bbc0 100644
--- a/code/game/turfs/change_turf.dm
+++ b/code/game/turfs/change_turf.dm
@@ -76,11 +76,14 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list(
var/old_lighting_corner_NW = lighting_corner_NW
var/old_directional_opacity = directional_opacity
var/old_dynamic_lumcount = dynamic_lumcount
+<<<<<<< HEAD
//SKYRAT EDIT CHANGE
var/obj/effect/abstract/liquid_turf/old_liquids = liquids
if(lgroup)
lgroup.remove_from_group(src)
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/old_rcd_memory = rcd_memory
var/old_explosion_throw_details = explosion_throw_details
var/old_opacity = opacity
@@ -156,6 +159,7 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list(
directional_opacity = old_directional_opacity
recalculate_directional_opacity()
+<<<<<<< HEAD
if(lighting_object && !lighting_object.needs_update)
lighting_object.update()
@@ -210,6 +214,38 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list(
if(old_opacity != opacity && SSticker)
GLOB.cameranet.bareMajorChunkChange(src)
+=======
+
+ if(lighting_object && !lighting_object.needs_update)
+ lighting_object.update()
+
+ // If we're space, then we're either lit, or not, and impacting our neighbors, or not
+ if(isspaceturf(src))
+ var/turf/open/space/lit_turf = src
+ // This also counts as a removal, so we need to do a full rebuild
+ if(!ispath(old_type, /turf/open/space))
+ lit_turf.update_starlight()
+ for(var/turf/open/space/space_tile in RANGE_TURFS(1, src) - src)
+ space_tile.update_starlight()
+ else if(old_light_range)
+ lit_turf.enable_starlight()
+
+ // If we're a cordon we count against a light, but also don't produce any ourselves
+ else if (istype(src, /turf/cordon))
+ // This counts as removing a source of starlight, so we need to update the space tile to inform it
+ if(!ispath(old_type, /turf/open/space))
+ for(var/turf/open/space/space_tile in RANGE_TURFS(1, src))
+ space_tile.update_starlight()
+
+ // If we're not either, but were formerly a space turf, then we want light
+ else if(ispath(old_type, /turf/open/space))
+ for(var/turf/open/space/space_tile in RANGE_TURFS(1, src))
+ space_tile.enable_starlight()
+
+ if(old_opacity != opacity && SSticker)
+ GLOB.cameranet.bareMajorChunkChange(src)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// We will only run this logic if the tile is not on the prime z layer, since we use area overlays to cover that
if(SSmapping.z_level_to_plane_offset[z])
var/area/our_area = new_turf.loc
@@ -228,17 +264,23 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list(
var/datum/gas_mixture/stashed_air = new()
stashed_air.copy_from(air)
var/stashed_state = excited
+<<<<<<< HEAD
var/datum/pollution/stashed_pollution = pollution //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/datum/excited_group/stashed_group = excited_group
. = ..() //If path == type this will return us, don't bank on making a new type
if (!.) // changeturf failed or didn't do anything
return
var/turf/open/new_turf = .
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(stashed_pollution)
new_turf.pollution = stashed_pollution
stashed_pollution.handle_overlay()
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
new_turf.air.copy_from(stashed_air)
new_turf.excited = stashed_state
new_turf.excited_group = stashed_group
@@ -250,10 +292,13 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list(
if(stashed_group.should_display || SSair.display_all_groups)
stashed_group.display_turf(new_turf)
else
+<<<<<<< HEAD
//SKYRAT EDIT ADDITION
if(pollution)
qdel(pollution)
//SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(excited || excited_group)
SSair.remove_from_active(src) //Clean up wall excitement, and refresh excited groups
if(ispath(path, /turf/closed) || ispath(path, /turf/cordon))
diff --git a/code/game/turfs/closed/indestructible.dm b/code/game/turfs/closed/indestructible.dm
index 470177ee397..bc2bb5547c3 100644
--- a/code/game/turfs/closed/indestructible.dm
+++ b/code/game/turfs/closed/indestructible.dm
@@ -66,12 +66,20 @@
baseturfs = /turf/cordon
icon = 'icons/blanks/blank_title.png'
icon_state = ""
+<<<<<<< HEAD
pixel_x = 0 // SKYRAT EDIT - Re-centering the title screen - ORIGINAL: pixel_x = -64
+=======
+ pixel_x = -64
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
plane = SPLASHSCREEN_PLANE
bullet_bounce_sound = null
INITIALIZE_IMMEDIATE(/turf/closed/indestructible/splashscreen)
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/closed/indestructible/splashscreen/Initialize(mapload)
. = ..()
SStitle.splash_turf = src
@@ -87,10 +95,13 @@ INITIALIZE_IMMEDIATE(/turf/closed/indestructible/splashscreen)
pixel_x = 0
else if(width == 608) // 608x480 is widescreen
pixel_x = -64
+<<<<<<< HEAD
// SKYRAT EDIT START - Wider widescreen
else if(width == 672) // Skyrat's widescreen is slightly wider than /tg/'s, so we need to accomodate that too.
pixel_x = -96
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/closed/indestructible/splashscreen/vv_edit_var(var_name, var_value)
. = ..()
@@ -103,7 +114,10 @@ INITIALIZE_IMMEDIATE(/turf/closed/indestructible/splashscreen)
/turf/closed/indestructible/splashscreen/examine()
desc = pick(strings(SPLASH_FILE, "splashes"))
return ..()
+<<<<<<< HEAD
SKYRAT EDIT REMOVAL END */
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/closed/indestructible/reinforced
name = "reinforced wall"
diff --git a/code/game/turfs/closed/minerals.dm b/code/game/turfs/closed/minerals.dm
index 11125a9de0c..c678c52fa0b 100644
--- a/code/game/turfs/closed/minerals.dm
+++ b/code/game/turfs/closed/minerals.dm
@@ -4,7 +4,11 @@
/turf/closed/mineral //wall piece
name = "rock"
+<<<<<<< HEAD
icon = MAP_SWITCH('modular_skyrat/modules/liquids/icons/turf/smoothrocks.dmi', 'icons/turf/mining.dmi') // SKYRAT EDIT CHANGE
+=======
+ icon = MAP_SWITCH('icons/turf/smoothrocks.dmi', 'icons/turf/mining.dmi')
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "rock"
smoothing_groups = SMOOTH_GROUP_CLOSED_TURFS + SMOOTH_GROUP_MINERAL_WALLS
canSmoothWith = SMOOTH_GROUP_MINERAL_WALLS
@@ -25,8 +29,11 @@
transform = MAP_SWITCH(TRANSLATE_MATRIX(-4, -4), matrix())
temperature = TCMB
+<<<<<<< HEAD
color = "#677" //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/turf/open/floor/plating/turf_type = /turf/open/misc/asteroid/airless
/// The path of the ore stack we spawn when we're mined.
var/obj/item/stack/ore/mineralType = null
@@ -312,13 +319,19 @@
var/path = pick(spawn_chance_list)
if(ispath(path, /turf))
var/stored_flags = 0
+<<<<<<< HEAD
var/stored_color = color //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(turf_flags & NO_RUINS)
stored_flags |= NO_RUINS
var/turf/T = ChangeTurf(path,null,CHANGETURF_IGNORE_AIR)
T.flags_1 |= stored_flags
+<<<<<<< HEAD
T.color = stored_color //SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(ismineralturf(T))
var/turf/closed/mineral/M = T
M.turf_type = src.turf_type
@@ -408,7 +421,11 @@
baseturfs = /turf/open/misc/asteroid/basalt/lava_land_surface
initial_gas_mix = LAVALAND_DEFAULT_ATMOS
defer_change = TRUE
+<<<<<<< HEAD
proximity_based = FALSE //SKYRAT EDIT: Original TRUE
+=======
+ proximity_based = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
mineralChance = 5
/turf/closed/mineral/random/volcanic/mineral_chances()
@@ -436,7 +453,11 @@
baseturfs = /turf/open/misc/asteroid/snow/icemoon
initial_gas_mix = ICEMOON_DEFAULT_ATMOS
weak_turf = TRUE
+<<<<<<< HEAD
proximity_based = FALSE //SKYRAT EDIT: Original TRUE
+=======
+ proximity_based = TRUE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/closed/mineral/random/snow/Change_Ore(ore_type, random = 0)
. = ..()
diff --git a/code/game/turfs/closed/wall/misc_walls.dm b/code/game/turfs/closed/wall/misc_walls.dm
index be4b6ca7ad2..87299d4eacc 100644
--- a/code/game/turfs/closed/wall/misc_walls.dm
+++ b/code/game/turfs/closed/wall/misc_walls.dm
@@ -50,6 +50,16 @@
/turf/closed/wall/rust/Initialize(mapload)
. = ..()
AddElement(/datum/element/rust)
+<<<<<<< HEAD
+=======
+
+/turf/closed/wall/heretic_rust
+ color = MAP_SWITCH(null, COLOR_GREEN_GRAY)
+
+/turf/closed/wall/heretic_rust/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/rust/heretic)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/closed/wall/r_wall/rust
//SDMM supports colors, this is simply for easier mapping
@@ -60,6 +70,16 @@
/turf/closed/wall/r_wall/rust/Initialize(mapload)
. = ..()
AddElement(/datum/element/rust)
+<<<<<<< HEAD
+=======
+
+/turf/closed/wall/r_wall/heretic_rust
+ color = MAP_SWITCH(null, COLOR_GREEN_GRAY)
+
+/turf/closed/wall/r_wall/heretic_rust/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/rust/heretic)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/closed/wall/mineral/bronze
name = "clockwork wall"
diff --git a/code/game/turfs/closed/wall/reinf_walls.dm b/code/game/turfs/closed/wall/reinf_walls.dm
index 06bc0ebe02b..2722bb39266 100644
--- a/code/game/turfs/closed/wall/reinf_walls.dm
+++ b/code/game/turfs/closed/wall/reinf_walls.dm
@@ -1,7 +1,11 @@
/turf/closed/wall/r_wall
name = "reinforced wall"
desc = "A huge chunk of reinforced metal used to separate rooms."
+<<<<<<< HEAD
icon = 'icons/turf/walls/reinforced_wall.dmi' //ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/turf/walls/reinforced_wall.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "reinforced_wall-0"
base_icon_state = "reinforced_wall"
opacity = TRUE
@@ -202,10 +206,17 @@
// We don't react to smoothing changing here because this else exists only to "revert" intact changes
/turf/closed/wall/r_wall/update_icon_state()
if(d_state != INTACT)
+<<<<<<< HEAD
icon = 'modular_skyrat/modules/aesthetics/walls/icons/reinforced_wall.dmi' // SKYRAT EDIT CHANGE - ORIGINAL: icon = 'icons/turf/walls/reinforced_states.dmi'
icon_state = "[base_decon_state]-[d_state]"
else
icon = 'modular_skyrat/modules/aesthetics/walls/icons/reinforced_wall.dmi' // SKYRAT EDIT CHANGE - ORIGINAL: icon = 'icons/turf/walls/reinforced_wall.dmi'
+=======
+ icon = 'icons/turf/walls/reinforced_states.dmi'
+ icon_state = "[base_decon_state]-[d_state]"
+ else
+ icon = 'icons/turf/walls/reinforced_wall.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon_state = "[base_icon_state]-[smoothing_junction]"
return ..()
diff --git a/code/game/turfs/closed/walls.dm b/code/game/turfs/closed/walls.dm
index 0ff9e3c76d4..886bd4c111d 100644
--- a/code/game/turfs/closed/walls.dm
+++ b/code/game/turfs/closed/walls.dm
@@ -2,7 +2,11 @@
/turf/closed/wall
name = "wall"
+<<<<<<< HEAD
desc = "A huge chunk of iron used to separate rooms." //ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ desc = "A huge chunk of iron used to separate rooms."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
icon = 'icons/turf/walls/wall.dmi'
icon_state = "wall-0"
base_icon_state = "wall"
@@ -40,7 +44,11 @@
if(!iscarbon(dropping) && !iscyborg(dropping))
return
var/mob/living/leaner = dropping
+<<<<<<< HEAD
if(leaner.incapacitated(IGNORE_RESTRAINTS) || leaner.stat != CONSCIOUS || HAS_TRAIT(leaner, TRAIT_NO_TRANSFORM))
+=======
+ if(INCAPACITATED_IGNORING(leaner, INCAPABLE_RESTRAINTS) || leaner.stat != CONSCIOUS || HAS_TRAIT(leaner, TRAIT_NO_TRANSFORM))
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return
if(!leaner.density || leaner.pulledby || leaner.buckled || !(leaner.mobility_flags & MOBILITY_STAND))
return
diff --git a/code/game/turfs/open/_open.dm b/code/game/turfs/open/_open.dm
index 777adb9bb2c..a61b493b88d 100644
--- a/code/game/turfs/open/_open.dm
+++ b/code/game/turfs/open/_open.dm
@@ -359,6 +359,7 @@
// Stops sliding
slide_distance = 0
+<<<<<<< HEAD
// SKYRAT EDIT START - Akula species
if(HAS_TRAIT(slipper, TRAIT_SLIPPERY))
if(!(lube & SLIDE_ICE))
@@ -389,6 +390,30 @@
for(var/obj/item/item in slipper.held_items)
slipper.accident(item)
+=======
+ var/obj/buckled_obj
+ if(slipper.buckled)
+ if(!(lube & GALOSHES_DONT_HELP)) //can't slip while buckled unless it's lube.
+ return FALSE
+ buckled_obj = slipper.buckled
+ else
+ if(!(lube & SLIP_WHEN_CRAWLING) && (slipper.body_position == LYING_DOWN || !(slipper.status_flags & CANKNOCKDOWN))) // can't slip unbuckled mob if they're lying or can't fall.
+ return FALSE
+ if(slipper.move_intent == MOVE_INTENT_WALK && (lube & NO_SLIP_WHEN_WALKING))
+ return FALSE
+
+ if(!(lube & SLIDE_ICE))
+ // Ice slides are intended to be combo'd so don't give the feedback
+ to_chat(slipper, span_notice("You slipped[ slippable ? " on the [slippable.name]" : ""]!"))
+ playsound(slipper.loc, 'sound/misc/slip.ogg', 50, TRUE, -3)
+
+ SEND_SIGNAL(slipper, COMSIG_ON_CARBON_SLIP)
+ slipper.add_mood_event("slipped", /datum/mood_event/slipped)
+ if(force_drop)
+ for(var/obj/item/item in slipper.held_items)
+ slipper.accident(item)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/olddir = slipper.dir
slipper.moving_diagonally = 0 //If this was part of diagonal move slipping will stop it.
if(lube & SLIDE_ICE)
@@ -423,10 +448,14 @@
/turf/open/get_dumping_location()
return src
-/turf/open/proc/ClearWet()//Nuclear option of immediately removing slipperyness from the tile instead of the natural drying over time
+/turf/open/proc/ClearWet()//Nuclear option of immediately removing slipperiness from the tile instead of the natural drying over time
qdel(GetComponent(/datum/component/wet_floor))
+<<<<<<< HEAD
/// Builds with rods. This doesn't exist to be overriden, just to remove duplicate logic for turfs that want
+=======
+/// Builds with rods. This doesn't exist to be overridden, just to remove duplicate logic for turfs that want
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/// To support floor tile creation
/// I'd make it a component, but one of these things is space. So no.
/turf/open/proc/build_with_rods(obj/item/stack/rods/used_rods, mob/user)
diff --git a/code/game/turfs/open/floor.dm b/code/game/turfs/open/floor.dm
index 3bf80bc89d4..aac926a8669 100644
--- a/code/game/turfs/open/floor.dm
+++ b/code/game/turfs/open/floor.dm
@@ -1,7 +1,11 @@
/// Anything above a lattice should go here.
/turf/open/floor
name = "floor"
+<<<<<<< HEAD
icon = 'icons/turf/floors.dmi' //ICON OVERRIDDEN IN SKYRAT AESTHETICS - SEE MODULE
+=======
+ icon = 'icons/turf/floors.dmi'
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
base_icon_state = "floor"
baseturfs = /turf/open/floor/plating
diff --git a/code/game/turfs/open/floor/light_floor.dm b/code/game/turfs/open/floor/light_floor.dm
index dd30a86d8de..793e4ce8e55 100644
--- a/code/game/turfs/open/floor/light_floor.dm
+++ b/code/game/turfs/open/floor/light_floor.dm
@@ -184,7 +184,7 @@
/turf/open/floor/light/proc/check_menu(mob/living/user, obj/item/multitool)
if(!istype(user))
return FALSE
- if(user.incapacitated())
+ if(user.incapacitated)
return FALSE
if(!multitool || !user.is_holding(multitool))
return FALSE
diff --git a/code/game/turfs/open/floor/misc_floor.dm b/code/game/turfs/open/floor/misc_floor.dm
index d43e4b5e92f..9688d0504df 100644
--- a/code/game/turfs/open/floor/misc_floor.dm
+++ b/code/game/turfs/open/floor/misc_floor.dm
@@ -257,6 +257,17 @@
AddElement(/datum/element/rust)
color = null
+<<<<<<< HEAD
+=======
+/turf/open/floor/plating/heretic_rust
+ color = COLOR_GREEN_GRAY
+
+/turf/open/floor/plating/heretic_rust/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/rust/heretic)
+ color = null
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/floor/plating/plasma
initial_gas_mix = ATMOS_TANK_PLASMA
diff --git a/code/game/turfs/open/ice.dm b/code/game/turfs/open/ice.dm
index 481dcb6b847..ddd78ac6389 100644
--- a/code/game/turfs/open/ice.dm
+++ b/code/game/turfs/open/ice.dm
@@ -15,10 +15,27 @@
clawfootstep = FOOTSTEP_HARD_CLAW
heavyfootstep = FOOTSTEP_GENERIC_HEAVY
rust_resistance = RUST_RESISTANCE_ORGANIC
+<<<<<<< HEAD
+=======
+ var/can_make_hole = TRUE
+ var/static/list/tool_screentips = list(
+ TOOL_SHOVEL = list(
+ SCREENTIP_CONTEXT_LMB = "Dig fishing hole",
+ ),
+ TOOL_MINING = list(
+ SCREENTIP_CONTEXT_LMB = "Dig fishing hole",
+ ),
+ )
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/ice/Initialize(mapload)
. = ..()
MakeSlippery(TURF_WET_PERMAFROST, INFINITY, 0, INFINITY, TRUE, FALSE)
+<<<<<<< HEAD
+=======
+ if(can_make_hole)
+ AddElement(/datum/element/contextual_screentip_tools, tool_screentips)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/ice/break_tile()
return
@@ -26,6 +43,31 @@
/turf/open/misc/ice/burn_tile()
return
+<<<<<<< HEAD
+=======
+/turf/open/misc/ice/examine(mob/user)
+ . = ..()
+ if(can_make_hole)
+ . += span_info("You could use a [EXAMINE_HINT("shovel")] or a [EXAMINE_HINT("pick")] to dig a fishing hole here.")
+
+/turf/open/misc/ice/item_interaction(mob/living/user, obj/item/tool, list/modifiers)
+ if(!can_make_hole)
+ return NONE
+ if(tool.tool_behaviour != TOOL_SHOVEL && tool.tool_behaviour != TOOL_MINING)
+ return NONE
+ balloon_alert(user, "digging...")
+ playsound(src, 'sound/effects/shovel_dig.ogg', 50, TRUE)
+ if(!do_after(user, 5 SECONDS, src))
+ return NONE
+ balloon_alert(user, "dug hole")
+ AddComponent(/datum/component/fishing_spot, GLOB.preset_fish_sources[/datum/fish_source/ice_fishing])
+ add_overlay(mutable_appearance('icons/turf/overlays.dmi', "ice_hole"))
+ can_make_hole = FALSE
+ RemoveElement(/datum/element/contextual_screentip_tools, tool_screentips)
+ flags_1 &= ~HAS_CONTEXTUAL_SCREENTIPS_1
+ return ITEM_INTERACT_SUCCESS
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/ice/smooth
icon_state = "ice_turf-255"
base_icon_state = "ice_turf"
@@ -40,11 +82,19 @@
/turf/open/misc/ice/icemoon/no_planet_atmos
planetary_atmos = FALSE
+<<<<<<< HEAD
+=======
+ can_make_hole = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/ice/temperate
baseturfs = /turf/open/misc/ice/temperate
desc = "Somehow, it is not melting under these conditions. Must be some very thick ice. Just as slippery too."
initial_gas_mix = COLD_ATMOS //it works with /turf/open/misc/asteroid/snow/temperatre
+<<<<<<< HEAD
+=======
+ can_make_hole = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//For when you want real, genuine ice in your kitchen's cold room.
/turf/open/misc/ice/coldroom
diff --git a/code/game/turfs/open/misc.dm b/code/game/turfs/open/misc.dm
index 02de7489786..ec8a85888a1 100644
--- a/code/game/turfs/open/misc.dm
+++ b/code/game/turfs/open/misc.dm
@@ -3,7 +3,11 @@
/// Please do not bloat this. Love you <3
/turf/open/misc
name = "coder/mapper fucked up"
+<<<<<<< HEAD
desc = "report on github please"
+=======
+ desc = "report on GitHub please"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
flags_1 = NO_SCREENTIPS_1 | CAN_BE_DIRTY_1
turf_flags = IS_SOLID | NO_RUST
diff --git a/code/game/turfs/open/sand.dm b/code/game/turfs/open/sand.dm
index c863e28231d..7baf1343e65 100644
--- a/code/game/turfs/open/sand.dm
+++ b/code/game/turfs/open/sand.dm
@@ -10,6 +10,13 @@
heavyfootstep = FOOTSTEP_GENERIC_HEAVY
rust_resistance = RUST_RESISTANCE_ORGANIC
+<<<<<<< HEAD
+=======
+/turf/open/misc/beach/Initialize(mapload)
+ . = ..()
+ AddElement(/datum/element/lazy_fishing_spot, /datum/fish_source/sand)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/beach/ex_act(severity, target)
return FALSE
@@ -37,6 +44,13 @@
clawfootstep = FOOTSTEP_WATER
heavyfootstep = FOOTSTEP_WATER
+<<<<<<< HEAD
+=======
+/turf/open/misc/beach/coast/Initialize(mapload)
+ . = ..()
+ ADD_TRAIT(src, TRAIT_MESSAGE_IN_A_BOTTLE_LOCATION, INNATE_TRAIT)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/misc/beach/coast/break_tile()
. = ..()
icon_state = "beach"
diff --git a/code/game/turfs/open/water.dm b/code/game/turfs/open/water.dm
index 4a8244a6491..3e12312d18a 100644
--- a/code/game/turfs/open/water.dm
+++ b/code/game/turfs/open/water.dm
@@ -21,7 +21,11 @@
var/immerse_overlay_color = "#5AAA88"
/// Fishing element for this specific water tile
+<<<<<<< HEAD
var/datum/fish_source/fishing_datum = /datum/fish_source/portal
+=======
+ var/datum/fish_source/fishing_datum = /datum/fish_source/river
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/water/Initialize(mapload)
. = ..()
@@ -33,6 +37,10 @@
/turf/open/water/jungle
/turf/open/water/beach
+<<<<<<< HEAD
+=======
+ planetary_atmos = FALSE
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
gender = PLURAL
desc = "Come on in, it's great!"
icon = 'icons/turf/beach.dmi'
@@ -42,6 +50,13 @@
immerse_overlay_color = "#7799AA"
fishing_datum = /datum/fish_source/ocean/beach
+<<<<<<< HEAD
+=======
+/turf/open/water/beach/Initialize(mapload)
+ . = ..()
+ ADD_TRAIT(src, TRAIT_MESSAGE_IN_A_BOTTLE_LOCATION, INNATE_TRAIT)
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/turf/open/water/lavaland_atmos
initial_gas_mix = LAVALAND_DEFAULT_ATMOS
planetary_atmos = TRUE
diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm
index 35381db347c..343ddea5feb 100644
--- a/code/game/turfs/turf.dm
+++ b/code/game/turfs/turf.dm
@@ -3,6 +3,10 @@ GLOBAL_LIST_EMPTY(station_turfs)
/// Any floor or wall. What makes up the station and the rest of the map.
/turf
icon = 'icons/turf/floors.dmi'
+<<<<<<< HEAD
+=======
+ datum_flags = DF_STATIC_OBJECT
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
vis_flags = VIS_INHERIT_ID // Important for interaction with and visualization of openspace.
luminosity = 1
light_height = LIGHTING_HEIGHT_FLOOR
@@ -608,8 +612,12 @@ GLOBAL_LIST_EMPTY(station_turfs)
. = ..()
if((acidpwr <= 0) || (acid_volume <= 0))
return FALSE
+<<<<<<< HEAD
if(QDELETED(src)) //skyrat edit: fix createanddestroy
return FALSE
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AddComponent(/datum/component/acid, acidpwr, acid_volume, GLOB.acid_overlay)
return . || TRUE
diff --git a/code/game/world.dm b/code/game/world.dm
index 4b5b598d341..68bb8fc019a 100644
--- a/code/game/world.dm
+++ b/code/game/world.dm
@@ -336,6 +336,26 @@ GLOBAL_VAR(tracy_log)
return ..()
log_world("World rebooted at [time_stamp()]")
+<<<<<<< HEAD
+=======
+
+ shutdown_logging() // Past this point, no logging procs can be used, at risk of data loss.
+ auxcleanup()
+
+ TgsReboot() // TGS can decide to kill us right here, so it's important to do it last
+
+ ..()
+ #endif
+
+/world/proc/auxcleanup()
+ var/debug_server = world.GetConfig("env", "AUXTOOLS_DEBUG_DLL")
+ if (debug_server)
+ call_ext(debug_server, "auxtools_shutdown")()
+
+/world/Del()
+ auxcleanup()
+ . = ..()
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
shutdown_logging() // Past this point, no logging procs can be used, at risk of data loss.
auxcleanup()
@@ -407,7 +427,10 @@ GLOBAL_VAR(tracy_log)
new_status += "[SSmapping.config ? " | " : " "]Next: [SSmapping.next_map_config.map_path == CUSTOM_MAP_PATH ? "Uncharted Territory" : SSmapping.next_map_config.map_name] "
status = new_status
+<<<<<<< HEAD
*/
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/world/proc/update_hub_visibility(new_visibility)
if(new_visibility == GLOB.hub_visibility)
@@ -419,7 +442,11 @@ GLOBAL_VAR(tracy_log)
hub_password = "SORRYNOPASSWORD"
/**
+<<<<<<< HEAD
* Handles incresing the world's maxx var and intializing the new turfs and assigning them to the global area.
+=======
+ * Handles increasing the world's maxx var and initializing the new turfs and assigning them to the global area.
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
* If map_load_z_cutoff is passed in, it will only load turfs up to that z level, inclusive.
* This is because maploading will handle the turfs it loads itself.
*/
@@ -446,7 +473,11 @@ GLOBAL_VAR(tracy_log)
maxy = new_maxy
if(!map_load_z_cutoff)
return
+<<<<<<< HEAD
var/area/global_area = GLOB.areas_by_type[world.area] // We're guarenteed to be touching the global area, so we'll just do this
+=======
+ var/area/global_area = GLOB.areas_by_type[world.area] // We're guaranteed to be touching the global area, so we'll just do this
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
LISTASSERTLEN(global_area.turfs_by_zlevel, map_load_z_cutoff, list())
for (var/zlevel in 1 to map_load_z_cutoff)
var/list/to_add = block(
@@ -481,6 +512,10 @@ GLOBAL_VAR(tracy_log)
/world/proc/on_tickrate_change()
SStimer?.reset_buckets()
+<<<<<<< HEAD
+=======
+ DREAMLUAU_SET_EXECUTION_LIMIT_MILLIS(tick_lag * 100)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
/world/proc/init_byond_tracy()
var/library
diff --git a/code/modules/NTNet/relays.dm b/code/modules/NTNet/relays.dm
index a2db78a175b..57ab2d8e2c6 100644
--- a/code/modules/NTNet/relays.dm
+++ b/code/modules/NTNet/relays.dm
@@ -113,7 +113,11 @@
data["dos_crashed"] = dos_failure
return data
+<<<<<<< HEAD
/obj/machinery/ntnet_relay/ui_act(action, params)
+=======
+/obj/machinery/ntnet_relay/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/modules/actionspeed/_actionspeed_modifier.dm b/code/modules/actionspeed/_actionspeed_modifier.dm
index 36b9b9c860d..667ea61b580 100644
--- a/code/modules/actionspeed/_actionspeed_modifier.dm
+++ b/code/modules/actionspeed/_actionspeed_modifier.dm
@@ -156,7 +156,11 @@ GLOBAL_LIST_EMPTY(actionspeed_modification_cache)
var/amt = M.multiplicative_slowdown
if(conflict)
// Conflicting modifiers prioritize the larger slowdown or the larger speedup
+<<<<<<< HEAD
// We purposefuly don't handle mixing speedups and slowdowns on the same id
+=======
+ // We purposefully don't handle mixing speedups and slowdowns on the same id
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(abs(conflict_tracker[conflict]) < abs(amt))
conflict_tracker[conflict] = amt
else
diff --git a/code/modules/admin/IsBanned.dm b/code/modules/admin/IsBanned.dm
index 3eb5deb0c25..f7b1c15570c 100644
--- a/code/modules/admin/IsBanned.dm
+++ b/code/modules/admin/IsBanned.dm
@@ -32,7 +32,10 @@
if(GLOB.admin_datums[ckey] || GLOB.deadmins[ckey])
admin = TRUE
+<<<<<<< HEAD
/* SKYRAT EDIT REMOVAL START - We have the panic bunker on 24/7, this just makes our method unusable.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!real_bans_only && !admin && CONFIG_GET(flag/panic_bunker) && !CONFIG_GET(flag/panic_bunker_interview))
var/datum/db_query/query_client_in_db = SSdbcore.NewQuery(
"SELECT 1 FROM [format_table_name("player")] WHERE ckey = :ckey",
@@ -52,7 +55,10 @@
return list("reason"="panicbunker", "desc" = "Sorry but the server is currently not accepting connections from never before seen players")
qdel(query_client_in_db)
+<<<<<<< HEAD
*/ // SKYRAT EDIT REMOVAL END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
//Whitelist
if(!real_bans_only && !C && CONFIG_GET(flag/usewhitelist))
@@ -117,7 +123,11 @@
This ban (BanID #[i["id"]]) was applied by [i["admin_key"]] on [i["bantime"]] during round ID [i["round_id"]].
[global_ban]
[expires]"}
+<<<<<<< HEAD
log_suspicious_login("Failed Login: [ckey] [computer_id] [address] - Banned (#[i["id"]]) [text2num(i["global_ban"]) ? "globally" : "locally"]") //SKYRAT EDIT CHANGE - MULTISERVER
+=======
+ log_suspicious_login("Failed Login: [ckey] [computer_id] [address] - Banned (#[i["id"]])")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
return list("reason"="Banned","desc"="[desc]")
if (admin)
if (GLOB.directory[ckey])
diff --git a/code/modules/admin/admin_fax_panel.dm b/code/modules/admin/admin_fax_panel.dm
index 8874b6f38eb..1e66592b43b 100644
--- a/code/modules/admin/admin_fax_panel.dm
+++ b/code/modules/admin/admin_fax_panel.dm
@@ -20,6 +20,11 @@ ADMIN_VERB(fax_panel, R_ADMIN, "Fax Panel", "View and respond to faxes sent to C
/datum/fax_panel_interface/New()
//Get all faxes, and save them to our list.
for(var/obj/machinery/fax/fax as anything in SSmachines.get_machines_by_type_and_subtypes(/obj/machinery/fax))
+<<<<<<< HEAD
+=======
+ if(istype(fax, /obj/machinery/fax/admin))
+ continue
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
available_faxes += WEAKREF(fax)
//Get all stamps
diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm
index 0f7d7a3f39b..96e7bbc989f 100644
--- a/code/modules/admin/admin_verbs.dm
+++ b/code/modules/admin/admin_verbs.dm
@@ -484,12 +484,23 @@ ADMIN_VERB(populate_world, R_DEBUG, "Populate World", "Populate the world with t
testing("Spawned test mob at [get_area_name(tile, TRUE)] ([tile.x],[tile.y],[tile.z])")
ADMIN_VERB(toggle_ai_interact, R_ADMIN, "Toggle Admin AI Interact", "Allows you to interact with most machines as an AI would as a ghost.", ADMIN_CATEGORY_GAME)
+<<<<<<< HEAD
user.AI_Interact = !user.AI_Interact
if(user.mob && isAdminGhostAI(user.mob))
user.mob.has_unlimited_silicon_privilege = user.AI_Interact
log_admin("[key_name(user)] has [user.AI_Interact ? "activated" : "deactivated"] Admin AI Interact")
message_admins("[key_name_admin(user)] has [user.AI_Interact ? "activated" : "deactivated"] their AI interaction")
+=======
+ var/doesnt_have_silicon_access = !HAS_TRAIT_FROM(user, TRAIT_AI_ACCESS, ADMIN_TRAIT)
+ if(doesnt_have_silicon_access)
+ ADD_TRAIT(user, TRAIT_AI_ACCESS, ADMIN_TRAIT)
+ else
+ REMOVE_TRAIT(user, TRAIT_AI_ACCESS, ADMIN_TRAIT)
+
+ log_admin("[key_name(user)] has [doesnt_have_silicon_access ? "activated" : "deactivated"] Admin AI Interact")
+ message_admins("[key_name_admin(user)] has [doesnt_have_silicon_access ? "activated" : "deactivated"] their AI interaction")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
ADMIN_VERB(debug_statpanel, R_DEBUG, "Debug Stat Panel", "Toggles local debug of the stat panel", ADMIN_CATEGORY_DEBUG)
user.stat_panel.send_message("create_debug")
diff --git a/code/modules/admin/create_mob.dm b/code/modules/admin/create_mob.dm
index 77d1546eeb7..05f473a6dfa 100644
--- a/code/modules/admin/create_mob.dm
+++ b/code/modules/admin/create_mob.dm
@@ -28,10 +28,13 @@
human.dna.species.randomize_active_underwear_only(human)
// Needs to be called towards the end to update all the UIs just set above
human.dna.initialize_dna(newblood_type = random_blood_type(), create_mutation_blocks = randomize_mutations, randomize_features = TRUE)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - CUSTOMIZATION
human.dna.species.mutant_bodyparts = human.dna.mutant_bodyparts.Copy()
human.dna.species.body_markings = human.dna.body_markings.Copy()
// SKYRAT EDIT ADDITION END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
// Snowflake for Ethereals
human.updatehealth()
human.updateappearance(mutcolor_update = TRUE)
diff --git a/code/modules/admin/fun_balloon.dm b/code/modules/admin/fun_balloon.dm
index 04300582160..8d780570115 100644
--- a/code/modules/admin/fun_balloon.dm
+++ b/code/modules/admin/fun_balloon.dm
@@ -64,7 +64,11 @@
return UI_INTERACTIVE
return ..()
+<<<<<<< HEAD
/obj/effect/fun_balloon/sentience/ui_act(action, list/params)
+=======
+/obj/effect/fun_balloon/sentience/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -94,6 +98,7 @@
for(var/mob/living/possessable in range(effect_range, get_turf(src)))
if (!possessable.ckey && possessable.stat == CONSCIOUS) // Only assign ghosts to living, non-occupied mobs!
bodies += possessable
+<<<<<<< HEAD
var/list/candidates = SSpolling.poll_ghosts_for_targets(
question = "Would you like to be [span_notice(group_name)]?",
@@ -105,6 +110,20 @@
alert_pic = src,
role_name_text = "sentience fun balloon",
)
+=======
+
+ var/list/candidates = SSpolling.poll_ghosts_for_targets(
+ question = "Would you like to be [span_notice(group_name)]?",
+ role = ROLE_SENTIENCE,
+ check_jobban = ROLE_SENTIENCE,
+ poll_time = 10 SECONDS,
+ checked_targets = bodies,
+ ignore_category = POLL_IGNORE_SHUTTLE_DENIZENS,
+ alert_pic = src,
+ role_name_text = "sentience fun balloon",
+ )
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
while(LAZYLEN(candidates) && LAZYLEN(bodies))
var/mob/dead/observer/C = pick_n_take(candidates)
var/mob/living/body = pick_n_take(bodies)
diff --git a/code/modules/admin/greyscale_modify_menu.dm b/code/modules/admin/greyscale_modify_menu.dm
index 89ad2fc8dd2..ecf264237b5 100644
--- a/code/modules/admin/greyscale_modify_menu.dm
+++ b/code/modules/admin/greyscale_modify_menu.dm
@@ -120,7 +120,11 @@
data["sprites"] = sprite_data
return data
+<<<<<<< HEAD
/datum/greyscale_modify_menu/ui_act(action, params)
+=======
+/datum/greyscale_modify_menu/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
@@ -305,7 +309,10 @@ This is highly likely to cause massive amounts of lag as every object in the gam
CHECK_TICK
var/image/layer = image(step["step"])
var/image/result = image(step["result"])
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN - Bringing back the GAGS coloring menu
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
steps += list(
list(
"layer"=icon2html(layer, user, dir=sprite_dir, sourceonly=TRUE),
@@ -313,7 +320,10 @@ This is highly likely to cause massive amounts of lag as every object in the gam
"config_name"=step["config_name"]
)
)
+<<<<<<< HEAD
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sprite_data["time_spent"] = TICK_DELTA_TO_MS(time_spent)
sprite_data["finished"] = icon2html(finished, user, dir=sprite_dir, sourceonly=TRUE)
diff --git a/code/modules/admin/skill_panel.dm b/code/modules/admin/skill_panel.dm
index ec80768276d..b1ba4d10910 100644
--- a/code/modules/admin/skill_panel.dm
+++ b/code/modules/admin/skill_panel.dm
@@ -35,7 +35,7 @@
var/exp_percent = exp / SKILL_EXP_LIST[SKILL_LEVEL_LEGENDARY]
.["skills"] += list(list("playername" = targetmind.current, "path" = type, "name" = S.name, "desc" = S.desc, "lvlnum" = lvl_num, "lvl" = lvl_name, "exp" = exp, "exp_prog" = xp_req_to_level - xp_prog_to_level, "exp_req" = xp_req_to_level, "exp_percent" = exp_percent, "max_exp" = SKILL_EXP_LIST[length(SKILL_EXP_LIST)]))
-/datum/skill_panel/ui_act(action, params)
+/datum/skill_panel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
. = ..()
if(.)
return
diff --git a/code/modules/admin/sql_ban_system.dm b/code/modules/admin/sql_ban_system.dm
index 4f1e84b4cf2..6db027fae8a 100644
--- a/code/modules/admin/sql_ban_system.dm
+++ b/code/modules/admin/sql_ban_system.dm
@@ -49,6 +49,7 @@
"player_ckey" = player_ckey,
"must_apply_to_admins" = !!(GLOB.admin_datums[player_ckey] || GLOB.deadmins[player_ckey]),
)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - MULTISERVER
var/ssqlname = CONFIG_GET(string/serversqlname)
var/server_check
@@ -69,6 +70,21 @@
sql_roles = ":role"
var/datum/db_query/query_check_ban = SSdbcore.NewQuery(/* SKYRAT EDIT CHANGE - MULTISERVER */{"
+=======
+
+ var/sql_roles
+ if(islist(roles))
+ var/list/sql_roles_list = list()
+ for (var/i in 1 to roles.len)
+ values["role[i]"] = roles[i]
+ sql_roles_list += ":role[i]"
+ sql_roles = sql_roles_list.Join(", ")
+ else
+ values["role"] = roles
+ sql_roles = ":role"
+
+ var/datum/db_query/query_check_ban = SSdbcore.NewQuery({"
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
SELECT 1
FROM [format_table_name("ban")]
WHERE
@@ -76,7 +92,10 @@
role IN ([sql_roles]) AND
unbanned_datetime IS NULL AND
(expiration_time IS NULL OR expiration_time > NOW())
+<<<<<<< HEAD
AND [server_check]
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
AND (NOT :must_apply_to_admins OR applies_to_admins = 1)
"}, values)
@@ -176,6 +195,7 @@
var/is_admin = FALSE
if(GLOB.admin_datums[ckey] || GLOB.deadmins[ckey])
is_admin = TRUE
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - MULTISERVER
var/ssqlname = CONFIG_GET(string/serversqlname)
var/server_check
@@ -186,6 +206,10 @@
// SKYRAT EDIT ADDITION END - MULTISERVER
var/datum/db_query/query_build_ban_cache = SSdbcore.NewQuery(
"SELECT role, applies_to_admins FROM [format_table_name("ban")] WHERE ckey = :ckey AND unbanned_datetime IS NULL AND (expiration_time IS NULL OR expiration_time > NOW()) AND [server_check]", //skyrat edit
+=======
+ var/datum/db_query/query_build_ban_cache = SSdbcore.NewQuery(
+ "SELECT role, applies_to_admins FROM [format_table_name("ban")] WHERE ckey = :ckey AND unbanned_datetime IS NULL AND (expiration_time IS NULL OR expiration_time > NOW())",
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
list("ckey" = ckey)
)
var/query_successful = query_build_ban_cache.warn_execute()
@@ -206,11 +230,19 @@
player_client.ban_cache = ban_cache
return ban_cache
+<<<<<<< HEAD
/datum/admins/proc/ban_panel(player_key, player_ip, player_cid, role, duration = 1440, applies_to_admins, reason, edit_id, page, admin_key, global_ban = TRUE) // SKYRAT EDIT CHANGE - MULTISERVER
if (duration == BAN_PANEL_PERMANENT)
duration = null
+=======
+
+/datum/admins/proc/ban_panel(player_key, player_ip, player_cid, role, duration = 1440, applies_to_admins, reason, edit_id, page, admin_key)
+ if (duration == BAN_PANEL_PERMANENT)
+ duration = null
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/panel_height = 620
if(edit_id)
panel_height = 240
@@ -431,6 +463,7 @@
ROLE_SYNDICATE,
ROLE_TRAITOR,
ROLE_WIZARD,
+<<<<<<< HEAD
ROLE_BORER, // SKYRAT EDIT ADDITION
ROLE_ASSAULT_OPERATIVE, // SKYRAT EDIT ADDITION
ROLE_VOIDWALKER,
@@ -447,6 +480,10 @@
BAN_OPFOR,
BAN_LOOC, // SKYRAT EDIT ADDITION - LOOC muting again
), // SKYRAT EDIT ADDITION - EXTRA_BANS
+=======
+ ROLE_VOIDWALKER,
+ ),
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
)
for(var/department in long_job_lists)
output += "[tgui_fancy ? " " : ""][department] "
@@ -594,7 +631,11 @@
to_chat(usr, span_danger("Ban not [edit_id ? "edited" : "created"] because the following errors were present:\n[error_state.Join("\n")]"), confidential = TRUE)
return
if(edit_id)
+<<<<<<< HEAD
edit_ban(edit_id, player_key, ip_check, player_ip, cid_check, player_cid, use_last_connection, applies_to_admins, duration, interval, reason, global_ban, mirror_edit, old_key, old_ip, old_cid, old_applies, page, admin_key, changes, roles_to_ban[1] == "Server") // SKYRAT EDIT CHANGE - MULTISERVER
+=======
+ edit_ban(edit_id, player_key, ip_check, player_ip, cid_check, player_cid, use_last_connection, applies_to_admins, duration, interval, reason, mirror_edit, old_key, old_ip, old_cid, old_applies, page, admin_key, changes, roles_to_ban[1] == "Server")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else
create_ban(player_key, ip_check, player_ip, cid_check, player_cid, use_last_connection, applies_to_admins, duration, interval, severity, reason, global_ban, roles_to_ban) // SKYRAT EDIT CHANGE - MULTISERVER
@@ -683,7 +724,11 @@
if(!SSdbcore.MassInsert(format_table_name("ban"), sql_ban, warn = TRUE, special_columns = special_columns))
return
var/target = ban_target_string(player_key, player_ip, player_cid)
+<<<<<<< HEAD
var/msg = "has created a [global_ban ? "global" : "local"] [isnull(duration) ? "permanent" : "temporary [time_message]"] [applies_to_admins ? "admin " : ""][is_server_ban ? "server ban" : "role ban from [roles_to_ban.len] roles"] for [target]." // SKYRAT EDIT CHANGE - MULTISERVER
+=======
+ var/msg = "has created a [isnull(duration) ? "permanent" : "temporary [time_message]"] [applies_to_admins ? "admin " : ""][is_server_ban ? "server ban" : "role ban from [roles_to_ban.len] roles"] for [target]."
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
log_admin_private("[kn] [msg][is_server_ban ? "" : " Roles: [roles_to_ban.Join(", ")]"] Reason: [reason]")
message_admins("[kna] [msg][is_server_ban ? "" : " Roles: [roles_to_ban.Join("\n")]"]\nReason: [reason]")
if(applies_to_admins)
@@ -696,6 +741,7 @@
notify_all_banned_players(player_ckey, player_ip, player_cid, player_ban_notification, other_ban_notification, is_server_ban, applies_to_admins)
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION BEGIN - EXTRA_BANS
if(BAN_PACIFICATION in roles_to_ban)
var/client/C = GLOB.directory[player_ckey]
@@ -705,6 +751,9 @@
//var/datum/admin_help/linked_ahelp_ticket = admin_ticket_log(player_ckey, "[kna] [msg]") // SKYRAT EDIT ORIGINAL
var/datum/admin_help/linked_ahelp_ticket = admin_ticket_log(player_ckey, "[kna] [msg]", FALSE) // SKYRAT EDIT -- Player ticket viewing
+=======
+ var/datum/admin_help/linked_ahelp_ticket = admin_ticket_log(player_ckey, "[kna] [msg]")
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(is_server_ban && linked_ahelp_ticket)
linked_ahelp_ticket.Resolve()
@@ -939,7 +988,11 @@
notify_all_banned_players(ckey(player_key), player_ip, player_cid, banned_player_message, banned_other_message, kick_banned_players, applies_to_admins)
unban_panel(player_key, admin_key, player_ip, player_cid, page)
+<<<<<<< HEAD
/datum/admins/proc/edit_ban(ban_id, player_key, ip_check, player_ip, cid_check, player_cid, use_last_connection, applies_to_admins, duration, interval, reason, global_ban, mirror_edit, old_key, old_ip, old_cid, old_applies, admin_key, page, list/changes, is_server_ban) // SKYRAT EDIT CHANGE - MULTISERVER
+=======
+/datum/admins/proc/edit_ban(ban_id, player_key, ip_check, player_ip, cid_check, player_cid, use_last_connection, applies_to_admins, duration, interval, reason, mirror_edit, old_key, old_ip, old_cid, old_applies, admin_key, page, list/changes, is_server_ban)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!check_rights(R_BAN))
return
if(!SSdbcore.Connect())
diff --git a/code/modules/admin/sql_message_system.dm b/code/modules/admin/sql_message_system.dm
index 400c4e05d8c..8774bae4d19 100644
--- a/code/modules/admin/sql_message_system.dm
+++ b/code/modules/admin/sql_message_system.dm
@@ -79,7 +79,10 @@
"target_ckey" = target_ckey,
"admin_ckey" = admin_ckey,
"text" = text,
+<<<<<<< HEAD
"server_name" = CONFIG_GET(string/serversqlname), // SKYRAT EDIT ADDITION - MULTISERVER
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
"server" = server,
"internet_address" = world.internet_address || "0",
"port" = "[world.port]",
@@ -433,10 +436,17 @@
var/text = query_get_type_messages.item[5]
var/timestamp = query_get_type_messages.item[6]
var/server = query_get_type_messages.item[7]
+<<<<<<< HEAD
var/editor_key = query_get_type_messages.item[9] // SKYRAT EDIT CHANGE BEGIN - MULTISERVER
var/expire_timestamp = query_get_type_messages.item[10]
var/playtime = query_get_type_messages.item[11]
var/round_id = query_get_type_messages.item[12] // SKYRAT EDIT CHANGE END - MULTISERVER
+=======
+ var/editor_key = query_get_type_messages.item[8]
+ var/expire_timestamp = query_get_type_messages.item[9]
+ var/playtime = query_get_type_messages.item[10]
+ var/round_id = query_get_type_messages.item[11]
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
output += "
"
if(type == "watchlist entry")
output += "[t_key] | "
@@ -497,6 +507,7 @@
var/text = query_get_messages.item[5]
var/timestamp = query_get_messages.item[6]
var/server = query_get_messages.item[7]
+<<<<<<< HEAD
var/editor_key = query_get_messages.item[9] // SKYRAT EDIT CHANGE BEGIN - MULTISERVER
var/age = text2num(query_get_messages.item[10])
target_key = query_get_messages.item[11]
@@ -504,6 +515,15 @@
var/severity = query_get_messages.item[13]
var/playtime = query_get_messages.item[14]
var/round_id = query_get_messages.item[15] // SKYRAT EDIT CHANGE END - MULTISERVER
+=======
+ var/editor_key = query_get_messages.item[8]
+ var/age = text2num(query_get_messages.item[9])
+ target_key = query_get_messages.item[10]
+ var/expire_timestamp = query_get_messages.item[11]
+ var/severity = query_get_messages.item[12]
+ var/playtime = query_get_messages.item[13]
+ var/round_id = query_get_messages.item[14]
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
var/alphatext = ""
var/nsd = CONFIG_GET(number/note_stale_days)
var/nfd = CONFIG_GET(number/note_fresh_days)
diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm
index 42d51b0b349..4cbf4e23226 100644
--- a/code/modules/admin/topic.dm
+++ b/code/modules/admin/topic.dm
@@ -48,6 +48,7 @@
return
cmd_show_exp_panel(M.client)
+<<<<<<< HEAD
// SKYRAT EDIT BEGIN -- ONE CLICK ANTAG
else if(href_list["makeAntag"])
@@ -83,6 +84,8 @@
else message_admins("[key_name_admin(usr)] FAILED to create '[href_list["makeAntag"]]' with a parameter of '[opt]'.")
// SKYRAT EDIT END -- ONE CLICK ANTAG
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if(href_list["editrightsbrowser"])
edit_admin_permissions(0)
@@ -591,8 +594,11 @@
sparks.attach(M.loc)
sparks.start()
M.forceMove(pick(GLOB.prisonwarp))
+<<<<<<< HEAD
/// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
to_chat(M, span_adminnotice("You have been sent to Prison!"), confidential = TRUE)
log_admin("[key_name(usr)] has sent [key_name(M)] to Prison!")
@@ -1764,10 +1770,15 @@
if(!paper_to_show)
return
paper_to_show.ui_interact(usr)
+<<<<<<< HEAD
+=======
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if (href_list["print_fax"])
if(!check_rights(R_ADMIN))
return
+<<<<<<< HEAD
for(var/obj/machinery/fax/FAX as anything in SSmachines.get_machines_by_type_and_subtypes(/obj/machinery/fax))
if(!is_centcom_level(FAX.z))
continue
@@ -1782,6 +1793,14 @@
message_admins("An OPFOR candidate could not be selected.")
// SKYRAT EDIT ADDITION END
+=======
+ for(var/obj/machinery/fax/admin/FAX as anything in SSmachines.get_machines_by_type_and_subtypes(/obj/machinery/fax/admin))
+ if(FAX.fax_id != href_list["destination"])
+ continue
+ FAX.receive(locate(href_list["print_fax"]), href_list["sender_name"])
+
+
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
else if(href_list["play_internet"])
if(!check_rights(R_SOUND))
return
diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2.dm b/code/modules/admin/verbs/SDQL2/SDQL_2.dm
index 36db4fa8bc4..4ee2b79f044 100644
--- a/code/modules/admin/verbs/SDQL2/SDQL_2.dm
+++ b/code/modules/admin/verbs/SDQL2/SDQL_2.dm
@@ -64,7 +64,7 @@
"SELECT /mob/living IN (@[/area/service/bar MAP contents])[1]"
What if some dumbass admin spawned a bajillion spiders and you need to kill them all?
- Oh yeah you'd rather not delete all the spiders in maintenace. Only that one room the spiders were
+ Oh yeah you'd rather not delete all the spiders in maintenance. Only that one room the spiders were
spawned in.
"DELETE /mob/living/carbon/superior_animal/giant_spider WHERE loc.loc == marked"
@@ -109,7 +109,7 @@
By the way, queries are slow and take a while. Be patient.
They don't hang the entire server though.
- With great power comes great responsability.
+ With great power comes great responsibility.
Here's a slightly more formal quick reference.
diff --git a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm
index bc74347475a..1305e5a660d 100644
--- a/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm
+++ b/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm
@@ -51,6 +51,9 @@
/proc/_get_step(Ref, Dir)
return get_step(Ref, Dir)
+/proc/_hascall(object, procname)
+ return hascall(object, procname)
+
/proc/_hearers(Depth = world.view, Center = usr)
return hearers(Depth, Center)
diff --git a/code/modules/admin/verbs/admin.dm b/code/modules/admin/verbs/admin.dm
index 3aaab5bae58..94f5c16235a 100644
--- a/code/modules/admin/verbs/admin.dm
+++ b/code/modules/admin/verbs/admin.dm
@@ -181,11 +181,14 @@ ADMIN_VERB(drop_everything, R_ADMIN, "Drop Everything", ADMIN_VERB_NO_DESCRIPTIO
if(MUTE_DEADCHAT)
mute_string = "deadchat and DSAY"
feedback_string = "Deadchat"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - LOOC muting again.
if(MUTE_LOOC)
mute_string = "LOOC"
feedback_string = "LOOC"
// SKYRAT EDIT ADDITION END - LOOC muting again.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(MUTE_INTERNET_REQUEST)
mute_string = "internet sound requests"
feedback_string = "Internet Sound Requests"
diff --git a/code/modules/admin/verbs/admin_newscaster.dm b/code/modules/admin/verbs/admin_newscaster.dm
index 0439cfa8811..a3dcf2e3be7 100644
--- a/code/modules/admin/verbs/admin_newscaster.dm
+++ b/code/modules/admin/verbs/admin_newscaster.dm
@@ -134,7 +134,11 @@ ADMIN_VERB(access_news_network, R_ADMIN, "Access Newscaster Network", "Allows yo
data["wanted"] = wanted_info
return data
+<<<<<<< HEAD
/datum/newspanel/ui_act(action, params)
+=======
+/datum/newspanel/ui_act(action, list/params, datum/tgui/ui, datum/ui_state/state)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
. = ..()
if(.)
return
diff --git a/code/modules/admin/verbs/adminevents.dm b/code/modules/admin/verbs/adminevents.dm
index a9d285815ad..848cab19138 100644
--- a/code/modules/admin/verbs/adminevents.dm
+++ b/code/modules/admin/verbs/adminevents.dm
@@ -168,7 +168,11 @@ ADMIN_VERB(disable_shuttle, R_ADMIN, "Disable Shuttle", "Those fuckers aren't ge
priority_announce(
text = "Emergency Shuttle uplink failure, shuttle disabled until further notice.",
title = "Uplink Failure",
+<<<<<<< HEAD
sound = ANNOUNCER_SHUTTLE, // SKYRAT EDIT CHANGE - Announcer Sounds - ORIGINAL: sound = 'sound/misc/announce_dig.ogg',
+=======
+ sound = 'sound/misc/announce_dig.ogg',
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sender_override = "Emergency Shuttle Uplink Alert",
color_override = "grey",
)
@@ -194,7 +198,11 @@ ADMIN_VERB(enable_shuttle, R_ADMIN, "Enable Shuttle", "Those fuckers ARE getting
priority_announce(
text = "Emergency Shuttle uplink reestablished, shuttle enabled.",
title = "Uplink Restored",
+<<<<<<< HEAD
sound = ANNOUNCER_SHUTTLE, // SKYRAT EDIT CHANGE - Announcer Sounds - ORIGINAL: sound = 'sound/misc/announce_dig.ogg',
+=======
+ sound = 'sound/misc/announce_dig.ogg',
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
sender_override = "Emergency Shuttle Uplink Alert",
color_override = "green",
)
@@ -218,9 +226,21 @@ ADMIN_VERB(hostile_environment, R_ADMIN, "Hostile Environment", "Disable the shu
SSshuttle.hostile_environments.Cut()
SSshuttle.checkHostileEnvironment()
+<<<<<<< HEAD
ADMIN_VERB(toggle_nuke, R_DEBUG|R_ADMIN, "Toggle Nuke", "Arm or disarm a nuke.", ADMIN_CATEGORY_EVENTS, obj/machinery/nuclearbomb/nuke in world)
if(!nuke.timing)
var/newtime = input(user, "Set activation timer.", "Activate Nuke", "[nuke.timer_set]") as num|null
+=======
+ADMIN_VERB(toggle_nuke, R_DEBUG|R_ADMIN, "Toggle Nuke", "Arm or disarm a nuke.", ADMIN_CATEGORY_EVENTS)
+ var/list/nukes = list()
+ for (var/obj/machinery/nuclearbomb/bomb in world)
+ nukes += bomb
+ var/obj/machinery/nuclearbomb/nuke = tgui_input_list(user, "", "Toggle Nuke", nukes)
+ if (isnull(nuke))
+ return
+ if(!nuke.timing)
+ var/newtime = tgui_input_number(user, "Set activation timer.", "Activate Nuke", nuke.timer_set)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(!newtime)
return
nuke.timer_set = newtime
diff --git a/code/modules/admin/verbs/adminfun.dm b/code/modules/admin/verbs/adminfun.dm
index 8bc7a611b35..f3690df8c85 100644
--- a/code/modules/admin/verbs/adminfun.dm
+++ b/code/modules/admin/verbs/adminfun.dm
@@ -154,7 +154,11 @@ ADMIN_VERB(polymorph_all, R_ADMIN, "Polymorph All", "Applies the effects of the
message_admins("Mass polymorph started by [who_did_it] is complete.")
ADMIN_VERB_AND_CONTEXT_MENU(admin_smite, R_ADMIN|R_FUN, "Smite", "Smite a player with divine power.", ADMIN_CATEGORY_FUN, mob/living/target in world)
+<<<<<<< HEAD
var/punishment = input(user, "Choose a punishment", "DIVINE SMITING") as null|anything in GLOB.smites
+=======
+ var/punishment = tgui_input_list(user, "Choose a punishment", "DIVINE SMITING", GLOB.smites)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(QDELETED(target) || !punishment)
return
diff --git a/code/modules/admin/verbs/admingame.dm b/code/modules/admin/verbs/admingame.dm
index d537b9ee898..55a2c30aa79 100644
--- a/code/modules/admin/verbs/admingame.dm
+++ b/code/modules/admin/verbs/admingame.dm
@@ -26,6 +26,7 @@ ADMIN_VERB_ONLY_CONTEXT_MENU(show_player_panel, R_ADMIN, "Show Player Panel", mo
if(player.client)
body += " \[First Seen: [player.client.player_join_date]\]\[Byond account registered on: [player.client.account_join_date]\]"
+<<<<<<< HEAD
// SKYRAT EDIT ADDITION START - Player Ranks
var/list/player_ranks = list()
@@ -40,6 +41,8 @@ ADMIN_VERB_ONLY_CONTEXT_MENU(show_player_panel, R_ADMIN, "Show Player Panel", mo
body += "Player Ranks: [length(player_ranks) ? player_ranks.Join(", ") : "None"]"
// SKYRAT EDIT END
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
body += "CentCom Galactic Ban DB: "
if(CONFIG_GET(string/centcom_ban_db))
body += "Search "
@@ -101,10 +104,13 @@ ADMIN_VERB_ONLY_CONTEXT_MENU(show_player_panel, R_ADMIN, "Show Player Panel", mo
body += "OOC | "
body += "PRAY | "
body += "ADMINHELP | "
+<<<<<<< HEAD
//Skyrat Addition Begin - LOOC muting again.
body += "DEADCHAT | "
body += "LOOC \]"
//Skyrat Addition End - LOOC muting again.
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
body += "WEBREQ | "
body += "DEADCHAT \]"
body += "(toggle all )"
@@ -295,7 +301,11 @@ ADMIN_VERB(respawn_character, R_ADMIN, "Respawn Character", "Respawn a player th
if(!record_found && (new_character.mind.assigned_role.job_flags & JOB_CREW_MEMBER))
//Power to the user!
if(tgui_alert(new_character,"Warning: No data core entry detected. Would you like to announce the arrival of this character by adding them to various databases, such as medical records?",,list("No","Yes")) == "Yes")
+<<<<<<< HEAD
GLOB.manifest.inject(new_character, src) // SKYRAT EDIT CHANGE - ALTERNATIVE_JOB_TITLES - Original: GLOB.manifest.inject(new_character)
+=======
+ GLOB.manifest.inject(new_character)
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
if(tgui_alert(new_character,"Would you like an active AI to announce this character?",,list("No","Yes")) == "Yes")
announce_arrival(new_character, new_character.mind.assigned_role.title)
@@ -446,6 +456,9 @@ ADMIN_VERB(lag_switch_panel, R_ADMIN, "Show Lag Switches", "Display the controls
dat += "Disable examine icons: [SSlag_switch.measures[DISABLE_USR_ICON2HTML] ? "On" : "Off"] - trait applies to examiner "
dat += "Disable parallax: [SSlag_switch.measures[DISABLE_PARALLAX] ? "On" : "Off"] - trait applies to character "
dat += "Disable footsteps: [SSlag_switch.measures[DISABLE_FOOTSTEPS] ? "On" : "Off"] - trait applies to character "
+<<<<<<< HEAD
dat += "Disable character creator: [SSlag_switch.measures[DISABLE_CREATOR] ? "On" : "Off"] - trait applies to all " // SKYRAT EDIT ADDITION
+=======
+>>>>>>> 4b4ae0958fe6b5d511ee6e24a5087599f61d70a3
dat += "